summaryrefslogtreecommitdiff
path: root/include/svtools/ctrlbox.hxx
blob: e58f3ede418e6cab93257eb1025edcaefc7c8269 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
/* -*- 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 .
 */

#pragma once

#include <svtools/svtdllapi.h>
#include <editeng/borderline.hxx>
#include <vcl/idle.hxx>
#include <vcl/metric.hxx>
#include <vcl/weld.hxx>

#include <memory>

namespace weld { class CustomWeld; }

class BitmapEx;
class BorderWidthImpl;
class FontList;
class VclSimpleEvent;
class VirtualDevice;

/** Utility class storing the border line width, style and colors. The widths
    are defined in Twips.
  */
class ImpLineListData
{
private:
    BorderWidthImpl const m_aWidthImpl;

    Color  ( * m_pColor1Fn )( Color );
    Color  ( * m_pColor2Fn )( Color );
    Color  ( * m_pColorDistFn )( Color, Color );

    tools::Long    m_nMinWidth;
    SvxBorderLineStyle m_nStyle;

public:
    ImpLineListData( BorderWidthImpl aWidthImpl,
           SvxBorderLineStyle nStyle, tools::Long nMinWidth, Color ( *pColor1Fn )( Color ),
           Color ( *pColor2Fn )( Color ), Color ( *pColorDistFn )( Color, Color ) ) :
        m_aWidthImpl( aWidthImpl ),
        m_pColor1Fn( pColor1Fn ),
        m_pColor2Fn( pColor2Fn ),
        m_pColorDistFn( pColorDistFn ),
        m_nMinWidth( nMinWidth ),
        m_nStyle( nStyle )
    {
    }

    /** Returns the computed width of the line 1 in twips. */
    tools::Long GetLine1ForWidth( tools::Long nWidth ) { return m_aWidthImpl.GetLine1( nWidth ); }

    /** Returns the computed width of the line 2 in twips. */
    tools::Long GetLine2ForWidth( tools::Long nWidth ) { return m_aWidthImpl.GetLine2( nWidth ); }

    /** Returns the computed width of the gap in twips. */
    tools::Long GetDistForWidth( tools::Long nWidth ) { return m_aWidthImpl.GetGap( nWidth ); }

    Color GetColorLine1( const Color& rMain )
    {
        return ( *m_pColor1Fn )( rMain );
    }

    Color GetColorLine2( const Color& rMain )
    {
        return ( *m_pColor2Fn )( rMain );
    }

    Color GetColorDist( const Color& rMain, const Color& rDefault )
    {
        return ( *m_pColorDistFn )( rMain, rDefault );
    }

    /** Returns the minimum width in twips */
    tools::Long   GetMinWidth( ) const { return m_nMinWidth;}
    SvxBorderLineStyle GetStyle( ) const { return m_nStyle;}
};

enum class SvxBorderLineStyle : sal_Int16;

typedef ::std::vector< FontMetric         > ImplFontList;

/*************************************************************************

class LineListBox

Description

Allows selection of line styles and sizes. Note that before first insert,
units and window size need to be set. Supported units are typographic point
(pt) and millimeters (mm). For SourceUnit, pt, mm and twips are supported.
All scalar numbers in 1/100 of the corresponding unit.

Line1 is the outer, Line2 the inner line, Distance is the distance between
these two lines. If Line2 == 0, only Line1 will be shown. Defaults for
source and target unit are FieldUnit::POINT.

SetColor() sets the line color.

Remarks

Contrary to a simple ListBox, user-specific data are not supported.
If UpdateMode is disabled, no data should be read, no selections
should be set, and the return code shall be ignore, as in these are
not defined in this mode. Also the bit WinBit WB_SORT may not be set.

--------------------------------------------------------------------------

class FontNameBox

Description

Allows selection of fonts. The ListBox will be filled using Fill parameter,
which is pointer to an FontList object.

Calling EnableWYSIWYG() enables rendering the font name in the currently
selected font.

See also

FontList; FontStyleBox; FontSizeBox; FontNameMenu

--------------------------------------------------------------------------

class FontStyleBox

Description

Allows select of FontStyle's. The parameter Fill points to a list
of available font styles for the font.

Reproduced styles are always added - this could change in future, as
potentially not all applications [Draw,Equation,FontWork] can properly
handle synthetic fonts. On filling, the previous name will be retained
if possible.

For DontKnow, the FontStyleBox should be filled with OUString(),
so it will contain a list with the default attributes. The currently
shown style probably needs to be reset by the application.

See also

FontList; FontNameBox; FontSizeBox;

--------------------------------------------------------------------------

class FontSizeBox

Description

Allows selection of font sizes. The values are retrieved via GetValue()
and set via SetValue(). The Fill parameter fills the ListBox with the
available sizes for the passed font.

All sizes are in 1/10 typographic point (pt).

The passed FontList must be retained until the next fill call.

Additionally it supports a relative mod, which allows entering
percentage values. This, eg., can be useful for template dialogs.
This mode can only be enabled, but not disabled again.

For DontKnow the FontSizeBox should be filled FontMetric(), so it will
contain a list with the standard sizes. Th currently shown size
probably needs to be reset by the application.

See also

FontList; FontNameBox; FontStyleBox; FontSizeMenu

*************************************************************************/

inline Color sameColor( Color rMain )
{
    return rMain;
}

inline Color sameDistColor( Color /*rMain*/, Color rDefault )
{
    return rDefault;
}

class ValueSet;

class SVT_DLLPUBLIC SvtLineListBox
{
public:
    typedef Color (*ColorFunc)(Color);
    typedef Color (*ColorDistFunc)(Color, Color);

    SvtLineListBox(std::unique_ptr<weld::MenuButton> pControl);
    ~SvtLineListBox();

    static OUString GetLineStyleName(SvxBorderLineStyle eStyle);

    /** Set the width in Twips */
    void SetWidth(tools::Long nWidth)
    {
        m_nWidth = nWidth;
        UpdateEntries();
        UpdatePreview();
    }

    tools::Long GetWidth() const { return m_nWidth; }

    /** Insert a listbox entry with all widths in Twips. */
    void            InsertEntry(const BorderWidthImpl& rWidthImpl,
                        SvxBorderLineStyle nStyle, tools::Long nMinWidth = 0,
                        ColorFunc pColor1Fn = &sameColor,
                        ColorFunc pColor2Fn = &sameColor,
                        ColorDistFunc pColorDistFn = &sameDistColor);

    void            SelectEntry( SvxBorderLineStyle nStyle );
    SvxBorderLineStyle GetSelectEntryStyle() const;

    void            SetSourceUnit( FieldUnit eNewUnit ) { eSourceUnit = eNewUnit; }

    void            SetColor( const Color& rColor )
    {
        aColor = rColor;
        UpdateEntries();
        UpdatePreview();
    }

    const Color&    GetColor() const { return aColor; }

    void            SetSelectHdl(const Link<SvtLineListBox&,void>& rLink) { maSelectHdl = rLink; }

    void            set_sensitive(bool bSensitive) { m_xControl->set_sensitive(bSensitive); }

private:

    SVT_DLLPRIVATE void         ImpGetLine( tools::Long nLine1, tools::Long nLine2, tools::Long nDistance,
                                    Color nColor1, Color nColor2, Color nColorDist,
                                    SvxBorderLineStyle nStyle, BitmapEx& rBmp );

    void            UpdatePaintLineColor();       // returns sal_True if maPaintCol has changed
    DECL_LINK(ValueSelectHdl, ValueSet*, void);
    DECL_LINK(FocusHdl, weld::Widget&, void);
    DECL_LINK(ToggleHdl, weld::Toggleable&, void);
    DECL_LINK(NoneHdl, weld::Button&, void);

    void            UpdateEntries();
    sal_Int32       GetStylePos(sal_Int32 nListPos);

    const Color&    GetPaintColor() const
    {
        return maPaintCol;
    }
    Color   GetColorLine1( sal_Int32  nPos );
    Color   GetColorLine2( sal_Int32  nPos );
    Color   GetColorDist( sal_Int32  nPos );

    void UpdatePreview();

                    SvtLineListBox( const SvtLineListBox& ) = delete;
    SvtLineListBox&    operator =( const SvtLineListBox& ) = delete;

    std::unique_ptr<weld::MenuButton> m_xControl;
    std::unique_ptr<weld::Builder> m_xBuilder;
    std::unique_ptr<weld::Widget> m_xTopLevel;
    std::unique_ptr<weld::Button> m_xNoneButton;
    std::unique_ptr<ValueSet> m_xLineSet;
    std::unique_ptr<weld::CustomWeld> m_xLineSetWin;

    std::vector<std::unique_ptr<ImpLineListData>> m_vLineList;
    tools::Long            m_nWidth;
    ScopedVclPtr<VirtualDevice>   aVirDev;
    Color           aColor;
    Color           maPaintCol;
    FieldUnit       eSourceUnit;
    Link<SvtLineListBox&,void> maSelectHdl;
};

class SVT_DLLPUBLIC SvtCalendarBox
{
public:
    SvtCalendarBox(std::unique_ptr<weld::MenuButton> pControl, bool bUseLabel = true);
    ~SvtCalendarBox();

    weld::MenuButton& get_button() { return *m_xControl; }

    void set_date(const Date& rDate);
    Date get_date() const { return m_xCalendar->get_date(); }

    void set_label(const OUString& rLabel) { m_xControl->set_label(rLabel); }
    OUString get_label() const { return m_xControl->get_label(); }

    void set_sensitive(bool bSensitive) { m_xControl->set_sensitive(bSensitive); }
    bool get_sensitive() const { return m_xControl->get_sensitive(); }
    void set_visible(bool bSensitive) { m_xControl->set_visible(bSensitive); }
    void show() { set_visible(true); }
    void grab_focus() { m_xControl->grab_focus(); }

    void connect_activated(const Link<SvtCalendarBox&, void>& rActivatedHdl) { m_aActivatedHdl = rActivatedHdl; }
    void connect_selected(const Link<SvtCalendarBox&, void>& rSelectHdl) { m_aSelectHdl = rSelectHdl; }

    void connect_focus_in(const Link<weld::Widget&, void>& rLink) { m_xControl->connect_focus_in(rLink); }
    void connect_focus_out(const Link<weld::Widget&, void>& rLink) { m_xControl->connect_focus_out(rLink); }
private:
    DECL_LINK(SelectHdl, weld::Calendar&, void);
    DECL_LINK(ActivateHdl, weld::Calendar&, void);

    bool m_bUseLabel;

    std::unique_ptr<weld::MenuButton> m_xControl;
    std::unique_ptr<weld::Builder> m_xBuilder;
    std::unique_ptr<weld::Widget> m_xTopLevel;
    std::unique_ptr<weld::Calendar> m_xCalendar;

    Link<SvtCalendarBox&, void> m_aActivatedHdl;
    Link<SvtCalendarBox&, void> m_aSelectHdl;

    void set_label_from_date();
};

class SVT_DLLPUBLIC FontNameBox
{
private:
    std::unique_ptr<weld::ComboBox> m_xComboBox;
    std::unique_ptr<ImplFontList> mpFontList;
    size_t          mnPreviewProgress;
    bool            mbWYSIWYG;
    OUString        maFontMRUEntriesFile;
    Idle            maUpdateIdle;

    SVT_DLLPRIVATE void         ImplDestroyFontList();

    DECL_LINK(CustomRenderHdl, weld::ComboBox::render_args, void);
    DECL_LINK(CustomGetSizeHdl, OutputDevice&, Size);
    DECL_LINK(SettingsChangedHdl, VclSimpleEvent&, void);
    DECL_LINK(UpdateHdl, Timer*, void);

    void            LoadMRUEntries( const OUString& aFontMRUEntriesFile );
    void            SaveMRUEntries( const OUString& aFontMRUEntriesFile ) const;

    OutputDevice&   CachePreview(size_t nIndex, Point* pTopLeft);

public:
    FontNameBox(std::unique_ptr<weld::ComboBox> p);
    ~FontNameBox();

    void            Fill( const FontList* pList );

    void            EnableWYSIWYG(bool bEnable);
    bool            IsWYSIWYGEnabled() const { return mbWYSIWYG; }

    void connect_changed(const Link<weld::ComboBox&, void>& rLink) { m_xComboBox->connect_changed(rLink); }
    void connect_focus_in(const Link<weld::Widget&, void>& rLink) { m_xComboBox->connect_focus_in(rLink); }
    void connect_focus_out(const Link<weld::Widget&, void>& rLink) { m_xComboBox->connect_focus_out(rLink); }
    void connect_key_press(const Link<const KeyEvent&, bool>& rLink) { m_xComboBox->connect_key_press(rLink); }
    int get_active() const { return m_xComboBox->get_active(); }
    OUString get_active_text() const { return m_xComboBox->get_active_text(); }
    void set_active_or_entry_text(const OUString& rText);
    int get_count() const { return m_xComboBox->get_count(); }
    OUString get_text(int nIndex) const { return m_xComboBox->get_text(nIndex); }
    void set_sensitive(bool bSensitive) { m_xComboBox->set_sensitive(bSensitive); }
    void save_value() { m_xComboBox->save_value(); }
    OUString const& get_saved_value() const { return m_xComboBox->get_saved_value(); }
    void select_entry_region(int nStartPos, int nEndPos) { m_xComboBox->select_entry_region(nStartPos, nEndPos); }
    bool get_entry_selection_bounds(int& rStartPos, int& rEndPos) { return m_xComboBox->get_entry_selection_bounds(rStartPos, rEndPos); }
    void clear() { m_xComboBox->clear(); }
    void grab_focus() { m_xComboBox->grab_focus(); }
    bool has_focus() const { return m_xComboBox->has_focus(); }
    void connect_entry_activate(const Link<weld::ComboBox&, bool>& rLink) { m_xComboBox->connect_entry_activate(rLink); }
    void connect_get_property_tree(const Link<tools::JsonWriter&, void>& rLink) { m_xComboBox->connect_get_property_tree(rLink); }
    void set_entry_width_chars(int nWidth) { m_xComboBox->set_entry_width_chars(nWidth); }
    void set_size_request(int nWidth, int nHeight) { m_xComboBox->set_size_request(nWidth, nHeight); }
    int get_max_mru_count() const { return m_xComboBox->get_max_mru_count(); }
    void set_max_mru_count(int nCount) { m_xComboBox->set_max_mru_count(nCount); }

    // font size is in points, not pixels, e.g. see Window::[G]etPointFont
    void set_entry_font(const vcl::Font& rFont) { m_xComboBox->set_entry_font(rFont); }
    vcl::Font get_entry_font() { return m_xComboBox->get_entry_font(); }

    void set_tooltip_text(const OUString& rTip) { m_xComboBox->set_tooltip_text(rTip); }

private:
    void            InitFontMRUEntriesFile();

                    FontNameBox( const FontNameBox& ) = delete;
    FontNameBox&    operator =( const FontNameBox& ) = delete;
};

class SVT_DLLPUBLIC FontStyleBox
{
    std::unique_ptr<weld::ComboBox> m_xComboBox;
public:
    FontStyleBox(std::unique_ptr<weld::ComboBox> p);

    void Fill(const OUString& rName, const FontList* pList);

    void connect_changed(const Link<weld::ComboBox&, void>& rLink) { m_xComboBox->connect_changed(rLink); }
    OUString get_active_text() const { return m_xComboBox->get_active_text(); }
    void set_active_text(const OUString& rText) { m_xComboBox->set_active_text(rText); }
    void append_text(const OUString& rStr) { m_xComboBox->append_text(rStr); }
    void set_sensitive(bool bSensitive) { m_xComboBox->set_sensitive(bSensitive); }
    void save_value() { m_xComboBox->save_value(); }
    OUString const& get_saved_value() const { return m_xComboBox->get_saved_value(); }
    int get_count() const { return m_xComboBox->get_count(); }
    int find_text(const OUString& rStr) const { return m_xComboBox->find_text(rStr); }
private:
    FontStyleBox(const FontStyleBox& ) = delete;
    FontStyleBox& operator=(const FontStyleBox&) = delete;
};

class SVT_DLLPUBLIC FontSizeBox
{
    FontMetric      aFontMetric;
    const FontList* pFontList;
    int             nSavedValue;
    int             nMin;
    int             nMax;
    FieldUnit       eUnit;
    sal_uInt16      nDecimalDigits;
    sal_uInt16      nRelMin;
    sal_uInt16      nRelMax;
    sal_uInt16      nRelStep;
    short           nPtRelMin;
    short           nPtRelMax;
    short           nPtRelStep;
    bool            bRelativeMode:1,
                    bRelative:1,
                    bPtRelative:1,
                    bStdSize:1;
    Link<weld::ComboBox&, void> m_aChangeHdl;
    Link<weld::Widget&, void> m_aFocusOutHdl;
    std::unique_ptr<weld::ComboBox> m_xComboBox;

    sal_uInt16 GetDecimalDigits() const { return nDecimalDigits; }
    void SetDecimalDigits(sal_uInt16 nDigits) { nDecimalDigits = nDigits; }
    FieldUnit GetUnit() const { return eUnit; }
    void SetUnit(FieldUnit _eUnit) { eUnit = _eUnit; }
    void SetRange(int nNewMin, int nNewMax) { nMin = nNewMin; nMax = nNewMax; }
    void SetValue(int nNewValue, FieldUnit eInUnit);

    void InsertValue(int i);

    OUString format_number(int nValue) const;

    DECL_LINK(ModifyHdl, weld::ComboBox&, void);
    DECL_LINK(ReformatHdl, weld::Widget&, void);
public:
    FontSizeBox(std::unique_ptr<weld::ComboBox> p);

    void Fill(const FontMetric* pFontMetric, const FontList* pList);

    void EnableRelativeMode(sal_uInt16 nMin, sal_uInt16 nMax, sal_uInt16 nStep = 5);
    void EnablePtRelativeMode(short nMin, short nMax, short nStep = 10);
    bool IsRelativeMode() const { return bRelativeMode; }
    void SetRelative( bool bRelative );
    bool IsRelative() const { return bRelative; }
    void SetPtRelative( bool bPtRel )
    {
        bPtRelative = bPtRel;
        SetRelative(true);
    }
    bool IsPtRelative() const { return bPtRelative; }

    void connect_changed(const Link<weld::ComboBox&, void>& rLink) { m_aChangeHdl = rLink; }
    void connect_focus_out(const Link<weld::Widget&, void>& rLink) { m_aFocusOutHdl = rLink; }
    void connect_key_press(const Link<const KeyEvent&, bool>& rLink) { m_xComboBox->connect_key_press(rLink); }
    OUString get_active_text() const { return m_xComboBox->get_active_text(); }
    void set_active_or_entry_text(const OUString& rText);
    void set_sensitive(bool bSensitive) { m_xComboBox->set_sensitive(bSensitive); }
    int get_active() const { return m_xComboBox->get_active(); }
    int get_value() const;
    void set_value(int nValue);
    void save_value() { nSavedValue = get_value(); }
    int get_saved_value() const { return nSavedValue; }
    bool get_value_changed_from_saved() const { return get_value() != get_saved_value(); }
    int get_count() const { return m_xComboBox->get_count(); }
    OUString get_text(int i) const { return m_xComboBox->get_text(i); }
    void grab_focus() { m_xComboBox->grab_focus(); }
    bool has_focus() const { return m_xComboBox->has_focus(); }
    void connect_entry_activate(const Link<weld::ComboBox&, bool>& rLink) { m_xComboBox->connect_entry_activate(rLink); }
    void disable_entry_completion() { m_xComboBox->set_entry_completion(false, false); }
    void connect_get_property_tree(const Link<tools::JsonWriter&, void>& rLink) { m_xComboBox->connect_get_property_tree(rLink); }

private:
    FontSizeBox(const FontSizeBox&) = delete;
    FontSizeBox& operator=(const FontSizeBox&) = delete;
};

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
width='100%'> -rw-r--r--source/bo/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/bo/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/bo/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/bo/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/bo/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/bo/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/bo/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/bo/helpcontent2/source/text/swriter.po14
-rw-r--r--source/bo/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/bo/helpcontent2/source/text/swriter/guide.po412
-rw-r--r--source/bo/sc/messages.po20
-rw-r--r--source/bo/sfx2/messages.po157
-rw-r--r--source/bo/starmath/messages.po823
-rw-r--r--source/bo/svtools/messages.po568
-rw-r--r--source/bo/svx/messages.po9
-rw-r--r--source/bo/sw/messages.po132
-rw-r--r--source/br/sc/messages.po20
-rw-r--r--source/br/sfx2/messages.po159
-rw-r--r--source/br/starmath/messages.po823
-rw-r--r--source/br/svtools/messages.po568
-rw-r--r--source/br/svx/messages.po8
-rw-r--r--source/br/sw/messages.po132
-rw-r--r--source/brx/sc/messages.po20
-rw-r--r--source/brx/sfx2/messages.po156
-rw-r--r--source/brx/starmath/messages.po823
-rw-r--r--source/brx/svtools/messages.po568
-rw-r--r--source/brx/svx/messages.po9
-rw-r--r--source/brx/sw/messages.po132
-rw-r--r--source/bs/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/bs/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/bs/helpcontent2/source/text/shared/00.po57
-rw-r--r--source/bs/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/bs/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/bs/helpcontent2/source/text/shared/optionen.po14
-rw-r--r--source/bs/helpcontent2/source/text/simpress/02.po18
-rw-r--r--source/bs/helpcontent2/source/text/swriter.po10
-rw-r--r--source/bs/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/bs/helpcontent2/source/text/swriter/guide.po404
-rw-r--r--source/bs/sc/messages.po20
-rw-r--r--source/bs/sfx2/messages.po158
-rw-r--r--source/bs/starmath/messages.po823
-rw-r--r--source/bs/svtools/messages.po568
-rw-r--r--source/bs/svx/messages.po9
-rw-r--r--source/bs/sw/messages.po132
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/01.po62
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter.po14
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/ca-valencia/sc/messages.po20
-rw-r--r--source/ca-valencia/sfx2/messages.po156
-rw-r--r--source/ca-valencia/starmath/messages.po823
-rw-r--r--source/ca-valencia/svtools/messages.po568
-rw-r--r--source/ca-valencia/svx/messages.po8
-rw-r--r--source/ca-valencia/sw/messages.po132
-rw-r--r--source/ca/basctl/messages.po8
-rw-r--r--source/ca/cui/messages.po34
-rw-r--r--source/ca/filter/messages.po16
-rw-r--r--source/ca/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/ca/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/ca/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/ca/helpcontent2/source/text/shared/01.po69
-rw-r--r--source/ca/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/ca/helpcontent2/source/text/shared/optionen.po24
-rw-r--r--source/ca/helpcontent2/source/text/simpress/01.po7
-rw-r--r--source/ca/helpcontent2/source/text/simpress/02.po28
-rw-r--r--source/ca/helpcontent2/source/text/swriter.po14
-rw-r--r--source/ca/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/ca/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/ca/officecfg/registry/data/org/openoffice/Office/UI.po52
-rw-r--r--source/ca/sc/messages.po24
-rw-r--r--source/ca/sd/messages.po50
-rw-r--r--source/ca/sfx2/messages.po183
-rw-r--r--source/ca/starmath/messages.po873
-rw-r--r--source/ca/svtools/messages.po578
-rw-r--r--source/ca/svx/messages.po8
-rw-r--r--source/ca/sw/messages.po152
-rw-r--r--source/ckb/sc/messages.po20
-rw-r--r--source/ckb/sfx2/messages.po156
-rw-r--r--source/ckb/starmath/messages.po823
-rw-r--r--source/ckb/svtools/messages.po568
-rw-r--r--source/ckb/svx/messages.po8
-rw-r--r--source/ckb/sw/messages.po134
-rw-r--r--source/cs/cui/messages.po12
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared.po192
-rw-r--r--source/cs/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/cs/helpcontent2/source/text/scalc/01.po19
-rw-r--r--source/cs/helpcontent2/source/text/sdraw.po68
-rw-r--r--source/cs/helpcontent2/source/text/shared/00.po69
-rw-r--r--source/cs/helpcontent2/source/text/shared/01.po68
-rw-r--r--source/cs/helpcontent2/source/text/shared/02.po38
-rw-r--r--source/cs/helpcontent2/source/text/shared/guide.po10
-rw-r--r--source/cs/helpcontent2/source/text/shared/optionen.po24
-rw-r--r--source/cs/helpcontent2/source/text/simpress/02.po30
-rw-r--r--source/cs/helpcontent2/source/text/swriter.po16
-rw-r--r--source/cs/helpcontent2/source/text/swriter/00.po12
-rw-r--r--source/cs/helpcontent2/source/text/swriter/01.po479
-rw-r--r--source/cs/helpcontent2/source/text/swriter/guide.po444
-rw-r--r--source/cs/helpcontent2/source/text/swriter/menu.po8
-rw-r--r--source/cs/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/cs/sc/messages.po36
-rw-r--r--source/cs/sfx2/messages.po156
-rw-r--r--source/cs/starmath/messages.po871
-rw-r--r--source/cs/svtools/messages.po568
-rw-r--r--source/cs/svx/messages.po10
-rw-r--r--source/cs/sw/messages.po154
-rw-r--r--source/cy/cui/messages.po12
-rw-r--r--source/cy/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/cy/sc/messages.po34
-rw-r--r--source/cy/sfx2/messages.po156
-rw-r--r--source/cy/starmath/messages.po869
-rw-r--r--source/cy/svtools/messages.po568
-rw-r--r--source/cy/svx/messages.po8
-rw-r--r--source/cy/sw/messages.po152
-rw-r--r--source/da/avmedia/messages.po8
-rw-r--r--source/da/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/da/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/da/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/da/helpcontent2/source/text/shared/01.po62
-rw-r--r--source/da/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/da/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/da/helpcontent2/source/text/simpress/02.po28
-rw-r--r--source/da/helpcontent2/source/text/swriter.po14
-rw-r--r--source/da/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/da/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/da/sc/messages.po20
-rw-r--r--source/da/sfx2/messages.po156
-rw-r--r--source/da/starmath/messages.po823
-rw-r--r--source/da/svtools/messages.po568
-rw-r--r--source/da/svx/messages.po8
-rw-r--r--source/da/sw/messages.po132
-rw-r--r--source/da/wizards/messages.po74
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/de/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/de/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po62
-rw-r--r--source/de/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/de/helpcontent2/source/text/simpress/02.po28
-rw-r--r--source/de/helpcontent2/source/text/swriter.po14
-rw-r--r--source/de/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/de/sc/messages.po20
-rw-r--r--source/de/sfx2/messages.po156
-rw-r--r--source/de/starmath/messages.po823
-rw-r--r--source/de/svtools/messages.po568
-rw-r--r--source/de/svx/messages.po8
-rw-r--r--source/de/sw/messages.po132
-rw-r--r--source/dgo/sc/messages.po20
-rw-r--r--source/dgo/sfx2/messages.po157
-rw-r--r--source/dgo/starmath/messages.po823
-rw-r--r--source/dgo/svtools/messages.po568
-rw-r--r--source/dgo/svx/messages.po9
-rw-r--r--source/dgo/sw/messages.po132
-rw-r--r--source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/dsb/sc/messages.po20
-rw-r--r--source/dsb/sfx2/messages.po156
-rw-r--r--source/dsb/starmath/messages.po869
-rw-r--r--source/dsb/svtools/messages.po568
-rw-r--r--source/dsb/svx/messages.po8
-rw-r--r--source/dsb/sw/messages.po132
-rw-r--r--source/dz/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/dz/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/dz/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/dz/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/dz/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/dz/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/dz/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/dz/helpcontent2/source/text/swriter.po14
-rw-r--r--source/dz/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/dz/helpcontent2/source/text/swriter/guide.po412
-rw-r--r--source/dz/sc/messages.po20
-rw-r--r--source/dz/sfx2/messages.po157
-rw-r--r--source/dz/starmath/messages.po823
-rw-r--r--source/dz/svtools/messages.po568
-rw-r--r--source/dz/svx/messages.po9
-rw-r--r--source/dz/sw/messages.po132
-rw-r--r--source/el/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/el/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/el/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/el/helpcontent2/source/text/shared/01.po62
-rw-r--r--source/el/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/el/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/el/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/el/helpcontent2/source/text/swriter.po14
-rw-r--r--source/el/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/el/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/el/sc/messages.po20
-rw-r--r--source/el/sfx2/messages.po156
-rw-r--r--source/el/starmath/messages.po823
-rw-r--r--source/el/svtools/messages.po568
-rw-r--r--source/el/svx/messages.po8
-rw-r--r--source/el/sw/messages.po132
-rw-r--r--source/en-GB/cui/messages.po51
-rw-r--r--source/en-GB/dbaccess/messages.po6
-rw-r--r--source/en-GB/dictionaries/ko_KR.po12
-rw-r--r--source/en-GB/filter/messages.po22
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/en-GB/helpcontent2/source/text/sdatabase.po46
-rw-r--r--source/en-GB/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po62
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/02.po28
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter.po14
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/en-GB/sc/messages.po20
-rw-r--r--source/en-GB/sd/messages.po25
-rw-r--r--source/en-GB/sfx2/messages.po156
-rw-r--r--source/en-GB/starmath/messages.po823
-rw-r--r--source/en-GB/svtools/messages.po568
-rw-r--r--source/en-GB/svx/messages.po8
-rw-r--r--source/en-GB/sw/messages.po166
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/en-ZA/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter.po14
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/en-ZA/sc/messages.po20
-rw-r--r--source/en-ZA/sfx2/messages.po157
-rw-r--r--source/en-ZA/starmath/messages.po823
-rw-r--r--source/en-ZA/svtools/messages.po568
-rw-r--r--source/en-ZA/svx/messages.po9
-rw-r--r--source/en-ZA/sw/messages.po132
-rw-r--r--source/eo/cui/messages.po542
-rw-r--r--source/eo/filter/messages.po68
-rw-r--r--source/eo/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/eo/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/eo/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/eo/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/eo/helpcontent2/source/text/shared/02.po22
-rw-r--r--source/eo/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/eo/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/eo/helpcontent2/source/text/swriter.po14
-rw-r--r--source/eo/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/eo/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/eo/instsetoo_native/inc_openoffice/windows/msi_languages.po6
-rw-r--r--source/eo/sc/messages.po20
-rw-r--r--source/eo/sfx2/messages.po156
-rw-r--r--source/eo/starmath/messages.po823
-rw-r--r--source/eo/svtools/messages.po568
-rw-r--r--source/eo/svx/messages.po14
-rw-r--r--source/eo/sw/messages.po152
-rw-r--r--source/es/cui/messages.po20
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/es/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--source/es/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po62
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po30
-rw-r--r--source/es/helpcontent2/source/text/simpress/02.po28
-rw-r--r--source/es/helpcontent2/source/text/swriter.po14
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/es/sc/messages.po24
-rw-r--r--source/es/sd/messages.po6
-rw-r--r--source/es/sfx2/messages.po156
-rw-r--r--source/es/starmath/messages.po865
-rw-r--r--source/es/svtools/messages.po568
-rw-r--r--source/es/svx/messages.po8
-rw-r--r--source/es/sw/messages.po136
-rw-r--r--source/et/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/et/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/et/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/et/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/et/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/et/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/et/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/et/helpcontent2/source/text/swriter.po14
-rw-r--r--source/et/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/et/helpcontent2/source/text/swriter/guide.po426
-rw-r--r--source/et/sc/messages.po24
-rw-r--r--source/et/sfx2/messages.po156
-rw-r--r--source/et/starmath/messages.po823
-rw-r--r--source/et/svtools/messages.po568
-rw-r--r--source/et/svx/messages.po8
-rw-r--r--source/et/sw/messages.po132
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/eu/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/eu/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po62
-rw-r--r--source/eu/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/eu/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/eu/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/eu/helpcontent2/source/text/swriter.po14
-rw-r--r--source/eu/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/eu/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/eu/sc/messages.po26
-rw-r--r--source/eu/sfx2/messages.po156
-rw-r--r--source/eu/starmath/messages.po823
-rw-r--r--source/eu/svtools/messages.po568
-rw-r--r--source/eu/svx/messages.po8
-rw-r--r--source/eu/sw/messages.po132
-rw-r--r--source/fa/sc/messages.po20
-rw-r--r--source/fa/sfx2/messages.po157
-rw-r--r--source/fa/starmath/messages.po823
-rw-r--r--source/fa/svtools/messages.po568
-rw-r--r--source/fa/svx/messages.po9
-rw-r--r--source/fa/sw/messages.po132
-rw-r--r--source/fi/cui/messages.po33
-rw-r--r--source/fi/helpcontent2/source/auxiliary.po4
-rw-r--r--source/fi/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/fi/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/fi/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/fi/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/fi/helpcontent2/source/text/shared/05.po22
-rw-r--r--source/fi/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/fi/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/fi/helpcontent2/source/text/swriter.po16
-rw-r--r--source/fi/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/fi/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/fi/sc/messages.po20
-rw-r--r--source/fi/sfx2/messages.po156
-rw-r--r--source/fi/starmath/messages.po823
-rw-r--r--source/fi/svtools/messages.po568
-rw-r--r--source/fi/svx/messages.po8
-rw-r--r--source/fi/sw/messages.po132
-rw-r--r--source/fr/cui/messages.po92
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/guide.po4
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/python.po16
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/fr/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po17
-rw-r--r--source/fr/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/fr/helpcontent2/source/text/sdraw.po66
-rw-r--r--source/fr/helpcontent2/source/text/sdraw/00.po8
-rw-r--r--source/fr/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/fr/helpcontent2/source/text/shared/01.po66
-rw-r--r--source/fr/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/fr/helpcontent2/source/text/shared/guide.po38
-rw-r--r--source/fr/helpcontent2/source/text/shared/optionen.po40
-rw-r--r--source/fr/helpcontent2/source/text/simpress/02.po30
-rw-r--r--source/fr/helpcontent2/source/text/swriter.po14
-rw-r--r--source/fr/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/fr/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/fr/helpcontent2/source/text/swriter/librelogo.po44
-rw-r--r--source/fr/helpcontent2/source/text/swriter/menu.po30
-rw-r--r--source/fr/sc/messages.po20
-rw-r--r--source/fr/sfx2/messages.po156
-rw-r--r--source/fr/starmath/messages.po823
-rw-r--r--source/fr/svtools/messages.po568
-rw-r--r--source/fr/svx/messages.po8
-rw-r--r--source/fr/sw/messages.po132
-rw-r--r--source/fr/wizards/source/resources.po6
-rw-r--r--source/fur/sc/messages.po20
-rw-r--r--source/fur/sfx2/messages.po156
-rw-r--r--source/fur/starmath/messages.po823
-rw-r--r--source/fur/svtools/messages.po568
-rw-r--r--source/fur/svx/messages.po6
-rw-r--r--source/fur/sw/messages.po132
-rw-r--r--source/fy/cui/messages.po52
-rw-r--r--source/fy/dbaccess/messages.po80
-rw-r--r--source/fy/desktop/messages.po6
-rw-r--r--source/fy/extensions/messages.po67
-rw-r--r--source/fy/officecfg/registry/data/org/openoffice/Office.po14
-rw-r--r--source/fy/officecfg/registry/data/org/openoffice/Office/UI.po62
-rw-r--r--source/fy/sc/messages.po42
-rw-r--r--source/fy/sfx2/messages.po156
-rw-r--r--source/fy/starmath/messages.po823
-rw-r--r--source/fy/svtools/messages.po568
-rw-r--r--source/fy/svx/messages.po12
-rw-r--r--source/fy/sw/messages.po928
-rw-r--r--source/fy/xmlsecurity/messages.po58
-rw-r--r--source/ga/sc/messages.po20
-rw-r--r--source/ga/sfx2/messages.po156
-rw-r--r--source/ga/starmath/messages.po823
-rw-r--r--source/ga/svtools/messages.po568
-rw-r--r--source/ga/svx/messages.po8
-rw-r--r--source/ga/sw/messages.po132
-rw-r--r--source/gd/sc/messages.po20
-rw-r--r--source/gd/sfx2/messages.po156
-rw-r--r--source/gd/starmath/messages.po823
-rw-r--r--source/gd/svtools/messages.po568
-rw-r--r--source/gd/svx/messages.po8
-rw-r--r--source/gd/sw/messages.po132
-rw-r--r--source/gl/cui/messages.po14
-rw-r--r--source/gl/filter/messages.po8
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/gl/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/gl/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/gl/helpcontent2/source/text/shared/01.po96
-rw-r--r--source/gl/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/gl/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/gl/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/gl/helpcontent2/source/text/swriter.po14
-rw-r--r--source/gl/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/gl/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/gl/librelogo/source/pythonpath.po4
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/gl/sc/messages.po36
-rw-r--r--source/gl/sfx2/messages.po156
-rw-r--r--source/gl/starmath/messages.po879
-rw-r--r--source/gl/svtools/messages.po568
-rw-r--r--source/gl/svx/messages.po12
-rw-r--r--source/gl/sw/messages.po160
-rw-r--r--source/gu/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/gu/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/gu/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/gu/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/gu/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/gu/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/gu/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/gu/helpcontent2/source/text/swriter.po14
-rw-r--r--source/gu/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/gu/helpcontent2/source/text/swriter/guide.po410
-rw-r--r--source/gu/sc/messages.po20
-rw-r--r--source/gu/sfx2/messages.po158
-rw-r--r--source/gu/starmath/messages.po823
-rw-r--r--source/gu/svtools/messages.po568
-rw-r--r--source/gu/svx/messages.po9
-rw-r--r--source/gu/sw/messages.po132
-rw-r--r--source/gug/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/gug/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--source/gug/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/gug/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/gug/helpcontent2/source/text/shared/01.po62
-rw-r--r--source/gug/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/gug/helpcontent2/source/text/shared/optionen.po30
-rw-r--r--source/gug/helpcontent2/source/text/simpress/02.po28
-rw-r--r--source/gug/helpcontent2/source/text/swriter.po14
-rw-r--r--source/gug/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/gug/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/gug/sc/messages.po20
-rw-r--r--source/gug/sfx2/messages.po159
-rw-r--r--source/gug/starmath/messages.po823
-rw-r--r--source/gug/svtools/messages.po568
-rw-r--r--source/gug/svx/messages.po8
-rw-r--r--source/gug/sw/messages.po132
-rw-r--r--source/he/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/he/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/he/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/he/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/he/helpcontent2/source/text/shared/02.po18
-rw-r--r--source/he/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/he/helpcontent2/source/text/simpress/02.po18
-rw-r--r--source/he/helpcontent2/source/text/swriter.po10
-rw-r--r--source/he/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/he/helpcontent2/source/text/swriter/guide.po412
-rw-r--r--source/he/sc/messages.po20
-rw-r--r--source/he/sfx2/messages.po156
-rw-r--r--source/he/starmath/messages.po823
-rw-r--r--source/he/svtools/messages.po568
-rw-r--r--source/he/svx/messages.po9
-rw-r--r--source/he/sw/messages.po132
-rw-r--r--source/hi/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/hi/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/hi/helpcontent2/source/text/shared/00.po57
-rw-r--r--source/hi/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/hi/helpcontent2/source/text/shared/02.po18
-rw-r--r--source/hi/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/hi/helpcontent2/source/text/simpress/02.po18
-rw-r--r--source/hi/helpcontent2/source/text/swriter.po10
-rw-r--r--source/hi/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/hi/helpcontent2/source/text/swriter/guide.po400
-rw-r--r--source/hi/sc/messages.po20
-rw-r--r--source/hi/sfx2/messages.po157
-rw-r--r--source/hi/starmath/messages.po823
-rw-r--r--source/hi/svtools/messages.po568
-rw-r--r--source/hi/svx/messages.po9
-rw-r--r--source/hi/sw/messages.po132
-rw-r--r--source/hr/chart2/messages.po16
-rw-r--r--source/hr/cui/messages.po30
-rw-r--r--source/hr/extensions/messages.po12
-rw-r--r--source/hr/extras/source/autocorr/emoji.po8
-rw-r--r--source/hr/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/hr/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/hr/helpcontent2/source/text/shared/00.po57
-rw-r--r--source/hr/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/hr/helpcontent2/source/text/shared/02.po22
-rw-r--r--source/hr/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/hr/helpcontent2/source/text/simpress/02.po24
-rw-r--r--source/hr/helpcontent2/source/text/swriter.po14
-rw-r--r--source/hr/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/hr/helpcontent2/source/text/swriter/guide.po404
-rw-r--r--source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po8
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po52
-rw-r--r--source/hr/sc/messages.po80
-rw-r--r--source/hr/sd/messages.po40
-rw-r--r--source/hr/sfx2/messages.po156
-rw-r--r--source/hr/starmath/messages.po857
-rw-r--r--source/hr/svtools/messages.po582
-rw-r--r--source/hr/svx/messages.po12
-rw-r--r--source/hr/sw/messages.po136
-rw-r--r--source/hr/xmlsecurity/messages.po8
-rw-r--r--source/hsb/chart2/messages.po24
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/hsb/sc/messages.po24
-rw-r--r--source/hsb/sfx2/messages.po156
-rw-r--r--source/hsb/starmath/messages.po869
-rw-r--r--source/hsb/svtools/messages.po568
-rw-r--r--source/hsb/svx/messages.po8
-rw-r--r--source/hsb/sw/messages.po132
-rw-r--r--source/hu/cui/messages.po152
-rw-r--r--source/hu/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/hu/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/hu/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/hu/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/hu/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/hu/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/hu/helpcontent2/source/text/swriter.po14
-rw-r--r--source/hu/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/hu/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/hu/sc/messages.po20
-rw-r--r--source/hu/sfx2/messages.po156
-rw-r--r--source/hu/starmath/messages.po823
-rw-r--r--source/hu/svtools/messages.po568
-rw-r--r--source/hu/svx/messages.po8
-rw-r--r--source/hu/sw/messages.po132
-rw-r--r--source/id/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/id/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/id/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/id/helpcontent2/source/text/shared/01.po62
-rw-r--r--source/id/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/id/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/id/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/id/helpcontent2/source/text/swriter.po14
-rw-r--r--source/id/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/id/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/id/sc/messages.po24
-rw-r--r--source/id/sfx2/messages.po156
-rw-r--r--source/id/starmath/messages.po823
-rw-r--r--source/id/svtools/messages.po568
-rw-r--r--source/id/svx/messages.po8
-rw-r--r--source/id/sw/messages.po132
-rw-r--r--source/is/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/is/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/is/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/is/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/is/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/is/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/is/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/is/helpcontent2/source/text/swriter.po14
-rw-r--r--source/is/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/is/helpcontent2/source/text/swriter/guide.po404
-rw-r--r--source/is/sc/messages.po20
-rw-r--r--source/is/sfx2/messages.po156
-rw-r--r--source/is/starmath/messages.po823
-rw-r--r--source/is/svtools/messages.po568
-rw-r--r--source/is/svx/messages.po8
-rw-r--r--source/is/sw/messages.po136
-rw-r--r--source/it/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/it/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/it/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po62
-rw-r--r--source/it/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/it/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/it/helpcontent2/source/text/shared/optionen.po24
-rw-r--r--source/it/helpcontent2/source/text/simpress/02.po28
-rw-r--r--source/it/helpcontent2/source/text/swriter.po14
-rw-r--r--source/it/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/it/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/it/sc/messages.po20
-rw-r--r--source/it/sfx2/messages.po156
-rw-r--r--source/it/starmath/messages.po823
-rw-r--r--source/it/svtools/messages.po568
-rw-r--r--source/it/svx/messages.po8
-rw-r--r--source/it/sw/messages.po132
-rw-r--r--source/ja/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/ja/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/ja/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/ja/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/ja/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/ja/helpcontent2/source/text/simpress/02.po28
-rw-r--r--source/ja/helpcontent2/source/text/swriter.po14
-rw-r--r--source/ja/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/ja/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/ja/sc/messages.po20
-rw-r--r--source/ja/sfx2/messages.po156
-rw-r--r--source/ja/starmath/messages.po823
-rw-r--r--source/ja/svtools/messages.po568
-rw-r--r--source/ja/svx/messages.po8
-rw-r--r--source/ja/sw/messages.po132
-rw-r--r--source/jv/sc/messages.po20
-rw-r--r--source/jv/sfx2/messages.po156
-rw-r--r--source/jv/starmath/messages.po823
-rw-r--r--source/jv/svtools/messages.po568
-rw-r--r--source/jv/svx/messages.po9
-rw-r--r--source/jv/sw/messages.po132
-rw-r--r--source/ka/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/ka/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/ka/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/ka/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/ka/helpcontent2/source/text/shared/02.po22
-rw-r--r--source/ka/helpcontent2/source/text/shared/optionen.po14
-rw-r--r--source/ka/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/ka/helpcontent2/source/text/swriter.po14
-rw-r--r--source/ka/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/ka/helpcontent2/source/text/swriter/guide.po402
-rw-r--r--source/ka/sc/messages.po20
-rw-r--r--source/ka/sfx2/messages.po157
-rw-r--r--source/ka/starmath/messages.po823
-rw-r--r--source/ka/svtools/messages.po568
-rw-r--r--source/ka/svx/messages.po9
-rw-r--r--source/ka/sw/messages.po132
-rw-r--r--source/kab/sc/messages.po20
-rw-r--r--source/kab/sfx2/messages.po156
-rw-r--r--source/kab/starmath/messages.po823
-rw-r--r--source/kab/svtools/messages.po568
-rw-r--r--source/kab/svx/messages.po8
-rw-r--r--source/kab/sw/messages.po132
-rw-r--r--source/kk/sc/messages.po20
-rw-r--r--source/kk/sfx2/messages.po156
-rw-r--r--source/kk/starmath/messages.po823
-rw-r--r--source/kk/svtools/messages.po568
-rw-r--r--source/kk/svx/messages.po8
-rw-r--r--source/kk/sw/messages.po134
-rw-r--r--source/kl/sc/messages.po20
-rw-r--r--source/kl/sfx2/messages.po156
-rw-r--r--source/kl/starmath/messages.po823
-rw-r--r--source/kl/svtools/messages.po568
-rw-r--r--source/kl/svx/messages.po6
-rw-r--r--source/kl/sw/messages.po132
-rw-r--r--source/km/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/km/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/km/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/km/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/km/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/km/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/km/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/km/helpcontent2/source/text/swriter.po14
-rw-r--r--source/km/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/km/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/km/sc/messages.po20
-rw-r--r--source/km/sfx2/messages.po158
-rw-r--r--source/km/starmath/messages.po823
-rw-r--r--source/km/svtools/messages.po568
-rw-r--r--source/km/svx/messages.po8
-rw-r--r--source/km/sw/messages.po132
-rw-r--r--source/kmr-Latn/sc/messages.po20
-rw-r--r--source/kmr-Latn/sfx2/messages.po157
-rw-r--r--source/kmr-Latn/starmath/messages.po823
-rw-r--r--source/kmr-Latn/svtools/messages.po568
-rw-r--r--source/kmr-Latn/svx/messages.po9
-rw-r--r--source/kmr-Latn/sw/messages.po132
-rw-r--r--source/kn/sc/messages.po20
-rw-r--r--source/kn/sfx2/messages.po158
-rw-r--r--source/kn/starmath/messages.po823
-rw-r--r--source/kn/svtools/messages.po568
-rw-r--r--source/kn/svx/messages.po9
-rw-r--r--source/kn/sw/messages.po132
-rw-r--r--source/ko/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/ko/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/ko/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/ko/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/ko/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/ko/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/ko/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/ko/helpcontent2/source/text/swriter.po14
-rw-r--r--source/ko/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/ko/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/ko/sc/messages.po20
-rw-r--r--source/ko/sfx2/messages.po156
-rw-r--r--source/ko/starmath/messages.po823
-rw-r--r--source/ko/svtools/messages.po568
-rw-r--r--source/ko/svx/messages.po8
-rw-r--r--source/ko/sw/messages.po138
-rw-r--r--source/kok/sc/messages.po20
-rw-r--r--source/kok/sfx2/messages.po156
-rw-r--r--source/kok/starmath/messages.po823
-rw-r--r--source/kok/svtools/messages.po568
-rw-r--r--source/kok/svx/messages.po9
-rw-r--r--source/kok/sw/messages.po132
-rw-r--r--source/ks/sc/messages.po20
-rw-r--r--source/ks/sfx2/messages.po156
-rw-r--r--source/ks/starmath/messages.po823
-rw-r--r--source/ks/svtools/messages.po568
-rw-r--r--source/ks/svx/messages.po9
-rw-r--r--source/ks/sw/messages.po132
-rw-r--r--source/ky/sc/messages.po20
-rw-r--r--source/ky/sfx2/messages.po156
-rw-r--r--source/ky/starmath/messages.po823
-rw-r--r--source/ky/svtools/messages.po568
-rw-r--r--source/ky/svx/messages.po6
-rw-r--r--source/ky/sw/messages.po132
-rw-r--r--source/lb/sc/messages.po20
-rw-r--r--source/lb/sfx2/messages.po156
-rw-r--r--source/lb/starmath/messages.po823
-rw-r--r--source/lb/svtools/messages.po568
-rw-r--r--source/lb/svx/messages.po9
-rw-r--r--source/lb/sw/messages.po132
-rw-r--r--source/lo/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/lo/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/lo/helpcontent2/source/text/shared/00.po57
-rw-r--r--source/lo/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/lo/helpcontent2/source/text/shared/02.po18
-rw-r--r--source/lo/helpcontent2/source/text/shared/optionen.po14
-rw-r--r--source/lo/helpcontent2/source/text/simpress/02.po18
-rw-r--r--source/lo/helpcontent2/source/text/swriter.po10
-rw-r--r--source/lo/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/lo/helpcontent2/source/text/swriter/guide.po400
-rw-r--r--source/lo/sc/messages.po20
-rw-r--r--source/lo/sfx2/messages.po156
-rw-r--r--source/lo/starmath/messages.po823
-rw-r--r--source/lo/svtools/messages.po568
-rw-r--r--source/lo/svx/messages.po9
-rw-r--r--source/lo/sw/messages.po132
-rw-r--r--source/lt/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/lt/helpcontent2/source/text/scalc/01.po587
-rw-r--r--source/lt/helpcontent2/source/text/sdatabase.po31
-rw-r--r--source/lt/helpcontent2/source/text/sdraw.po64
-rw-r--r--source/lt/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/lt/helpcontent2/source/text/shared/01.po62
-rw-r--r--source/lt/helpcontent2/source/text/shared/02.po22
-rw-r--r--source/lt/helpcontent2/source/text/shared/explorer/database.po136
-rw-r--r--source/lt/helpcontent2/source/text/shared/guide.po133
-rw-r--r--source/lt/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/lt/helpcontent2/source/text/simpress/02.po28
-rw-r--r--source/lt/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/lt/helpcontent2/source/text/smath.po6
-rw-r--r--source/lt/helpcontent2/source/text/smath/01.po6
-rw-r--r--source/lt/helpcontent2/source/text/swriter.po14
-rw-r--r--source/lt/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/lt/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/lt/sc/messages.po20
-rw-r--r--source/lt/sfx2/messages.po156
-rw-r--r--source/lt/starmath/messages.po823
-rw-r--r--source/lt/svtools/messages.po568
-rw-r--r--source/lt/svx/messages.po8
-rw-r--r--source/lt/sw/messages.po132
-rw-r--r--source/lv/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/lv/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/lv/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/lv/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/lv/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/lv/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/lv/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/lv/helpcontent2/source/text/swriter.po10
-rw-r--r--source/lv/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/lv/helpcontent2/source/text/swriter/guide.po404
-rw-r--r--source/lv/sc/messages.po20
-rw-r--r--source/lv/sfx2/messages.po156
-rw-r--r--source/lv/starmath/messages.po823
-rw-r--r--source/lv/svtools/messages.po568
-rw-r--r--source/lv/svx/messages.po8
-rw-r--r--source/lv/sw/messages.po134
-rw-r--r--source/mai/sc/messages.po20
-rw-r--r--source/mai/sfx2/messages.po156
-rw-r--r--source/mai/starmath/messages.po823
-rw-r--r--source/mai/svtools/messages.po568
-rw-r--r--source/mai/svx/messages.po9
-rw-r--r--source/mai/sw/messages.po132
-rw-r--r--source/mk/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/mk/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/mk/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po55
-rw-r--r--source/mk/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/mk/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/mk/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/mk/helpcontent2/source/text/swriter.po14
-rw-r--r--source/mk/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/mk/helpcontent2/source/text/swriter/guide.po420
-rw-r--r--source/mk/sc/messages.po20
-rw-r--r--source/mk/sfx2/messages.po156
-rw-r--r--source/mk/starmath/messages.po823
-rw-r--r--source/mk/svtools/messages.po568
-rw-r--r--source/mk/svx/messages.po9
-rw-r--r--source/mk/sw/messages.po132
-rw-r--r--source/ml/sc/messages.po20
-rw-r--r--source/ml/sfx2/messages.po158
-rw-r--r--source/ml/starmath/messages.po823
-rw-r--r--source/ml/svtools/messages.po568
-rw-r--r--source/ml/svx/messages.po9
-rw-r--r--source/ml/sw/messages.po132
-rw-r--r--source/mn/sc/messages.po20
-rw-r--r--source/mn/sfx2/messages.po156
-rw-r--r--source/mn/starmath/messages.po823
-rw-r--r--source/mn/svtools/messages.po568
-rw-r--r--source/mn/svx/messages.po9
-rw-r--r--source/mn/sw/messages.po132
-rw-r--r--source/mni/sc/messages.po20
-rw-r--r--source/mni/sfx2/messages.po157
-rw-r--r--source/mni/starmath/messages.po823
-rw-r--r--source/mni/svtools/messages.po568
-rw-r--r--source/mni/svx/messages.po9
-rw-r--r--source/mni/sw/messages.po132
-rw-r--r--source/mr/sc/messages.po20
-rw-r--r--source/mr/sfx2/messages.po158
-rw-r--r--source/mr/starmath/messages.po823
-rw-r--r--source/mr/svtools/messages.po568
-rw-r--r--source/mr/svx/messages.po9
-rw-r--r--source/mr/sw/messages.po132
-rw-r--r--source/my/sc/messages.po20
-rw-r--r--source/my/sfx2/messages.po157
-rw-r--r--source/my/starmath/messages.po823
-rw-r--r--source/my/svtools/messages.po568
-rw-r--r--source/my/svx/messages.po9
-rw-r--r--source/my/sw/messages.po132
-rw-r--r--source/nb/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/nb/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/nb/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/nb/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/nb/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/nb/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/nb/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/nb/helpcontent2/source/text/swriter.po14
-rw-r--r--source/nb/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/nb/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/nb/sc/messages.po20
-rw-r--r--source/nb/sfx2/messages.po156
-rw-r--r--source/nb/starmath/messages.po823
-rw-r--r--source/nb/svtools/messages.po568
-rw-r--r--source/nb/svx/messages.po8
-rw-r--r--source/nb/sw/messages.po132
-rw-r--r--source/ne/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/ne/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/ne/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/ne/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/ne/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/ne/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/ne/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/ne/helpcontent2/source/text/swriter.po14
-rw-r--r--source/ne/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/ne/helpcontent2/source/text/swriter/guide.po420
-rw-r--r--source/ne/sc/messages.po20
-rw-r--r--source/ne/sfx2/messages.po157
-rw-r--r--source/ne/starmath/messages.po823
-rw-r--r--source/ne/svtools/messages.po568
-rw-r--r--source/ne/svx/messages.po9
-rw-r--r--source/ne/sw/messages.po132
-rw-r--r--source/nl/cui/messages.po12
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/nl/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/nl/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po62
-rw-r--r--source/nl/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/nl/helpcontent2/source/text/simpress/02.po28
-rw-r--r--source/nl/helpcontent2/source/text/swriter.po14
-rw-r--r--source/nl/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/nl/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/nl/sc/messages.po38
-rw-r--r--source/nl/sfx2/messages.po156
-rw-r--r--source/nl/starmath/messages.po873
-rw-r--r--source/nl/svtools/messages.po568
-rw-r--r--source/nl/svx/messages.po10
-rw-r--r--source/nl/sw/messages.po154
-rw-r--r--source/nn/basctl/messages.po10
-rw-r--r--source/nn/chart2/messages.po16
-rw-r--r--source/nn/cui/messages.po10
-rw-r--r--source/nn/dictionaries/ko_KR.po12
-rw-r--r--source/nn/filter/messages.po22
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared.po66
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po19
-rw-r--r--source/nn/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--source/nn/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/nn/helpcontent2/source/text/shared/00.po63
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po62
-rw-r--r--source/nn/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/nn/helpcontent2/source/text/shared/explorer/database.po4
-rw-r--r--source/nn/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/nn/helpcontent2/source/text/simpress/02.po28
-rw-r--r--source/nn/helpcontent2/source/text/swriter.po16
-rw-r--r--source/nn/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/nn/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/nn/sc/messages.po20
-rw-r--r--source/nn/sfx2/messages.po160
-rw-r--r--source/nn/starmath/messages.po827
-rw-r--r--source/nn/svtools/messages.po568
-rw-r--r--source/nn/svx/messages.po8
-rw-r--r--source/nn/sw/messages.po136
-rw-r--r--source/nn/vcl/messages.po6
-rw-r--r--source/nr/sc/messages.po20
-rw-r--r--source/nr/sfx2/messages.po156
-rw-r--r--source/nr/starmath/messages.po823
-rw-r--r--source/nr/svtools/messages.po568
-rw-r--r--source/nr/svx/messages.po9
-rw-r--r--source/nr/sw/messages.po132
-rw-r--r--source/nso/sc/messages.po20
-rw-r--r--source/nso/sfx2/messages.po156
-rw-r--r--source/nso/starmath/messages.po823
-rw-r--r--source/nso/svtools/messages.po568
-rw-r--r--source/nso/svx/messages.po9
-rw-r--r--source/nso/sw/messages.po132
-rw-r--r--source/oc/sc/messages.po20
-rw-r--r--source/oc/sfx2/messages.po156
-rw-r--r--source/oc/starmath/messages.po823
-rw-r--r--source/oc/svtools/messages.po568
-rw-r--r--source/oc/svx/messages.po8
-rw-r--r--source/oc/sw/messages.po132
-rw-r--r--source/om/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/om/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/om/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/om/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/om/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/om/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/om/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/om/helpcontent2/source/text/swriter.po14
-rw-r--r--source/om/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/om/helpcontent2/source/text/swriter/guide.po422
-rw-r--r--source/om/sc/messages.po20
-rw-r--r--source/om/sfx2/messages.po157
-rw-r--r--source/om/starmath/messages.po823
-rw-r--r--source/om/svtools/messages.po568
-rw-r--r--source/om/svx/messages.po9
-rw-r--r--source/om/sw/messages.po132
-rw-r--r--source/or/sc/messages.po20
-rw-r--r--source/or/sfx2/messages.po158
-rw-r--r--source/or/starmath/messages.po823
-rw-r--r--source/or/svtools/messages.po568
-rw-r--r--source/or/svx/messages.po9
-rw-r--r--source/or/sw/messages.po132
-rw-r--r--source/pa-IN/sc/messages.po20
-rw-r--r--source/pa-IN/sfx2/messages.po157
-rw-r--r--source/pa-IN/starmath/messages.po823
-rw-r--r--source/pa-IN/svtools/messages.po568
-rw-r--r--source/pa-IN/svx/messages.po9
-rw-r--r--source/pa-IN/sw/messages.po132
-rw-r--r--source/pl/cui/messages.po14
-rw-r--r--source/pl/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/pl/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/pl/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/pl/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/pl/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/pl/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/pl/helpcontent2/source/text/swriter.po14
-rw-r--r--source/pl/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/pl/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/pl/sc/messages.po36
-rw-r--r--source/pl/sfx2/messages.po156
-rw-r--r--source/pl/starmath/messages.po871
-rw-r--r--source/pl/svtools/messages.po568
-rw-r--r--source/pl/svx/messages.po12
-rw-r--r--source/pl/sw/messages.po152
-rw-r--r--source/pt-BR/cui/messages.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/01.po17
-rw-r--r--source/pt-BR/helpcontent2/source/text/sdraw.po64
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/00.po127
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/01.po62
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/02.po36
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/guide.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/optionen.po24
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter.po14
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/00.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/guide.po436
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/menu.po10
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/pt-BR/sc/messages.po36
-rw-r--r--source/pt-BR/sfx2/messages.po156
-rw-r--r--source/pt-BR/starmath/messages.po899
-rw-r--r--source/pt-BR/svtools/messages.po568
-rw-r--r--source/pt-BR/svx/messages.po10
-rw-r--r--source/pt-BR/sw/messages.po176
-rw-r--r--source/pt/cui/messages.po12
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/pt/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po62
-rw-r--r--source/pt/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/pt/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/pt/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/pt/helpcontent2/source/text/swriter.po14
-rw-r--r--source/pt/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/pt/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/pt/sc/messages.po34
-rw-r--r--source/pt/sfx2/messages.po156
-rw-r--r--source/pt/starmath/messages.po869
-rw-r--r--source/pt/svtools/messages.po568
-rw-r--r--source/pt/svx/messages.po8
-rw-r--r--source/pt/sw/messages.po154
-rw-r--r--source/ro/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/ro/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/ro/helpcontent2/source/text/shared/00.po57
-rw-r--r--source/ro/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/ro/helpcontent2/source/text/shared/02.po18
-rw-r--r--source/ro/helpcontent2/source/text/shared/optionen.po14
-rw-r--r--source/ro/helpcontent2/source/text/simpress/02.po18
-rw-r--r--source/ro/helpcontent2/source/text/swriter.po10
-rw-r--r--source/ro/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/ro/helpcontent2/source/text/swriter/guide.po400
-rw-r--r--source/ro/sc/messages.po20
-rw-r--r--source/ro/sfx2/messages.po156
-rw-r--r--source/ro/starmath/messages.po823
-rw-r--r--source/ro/svtools/messages.po568
-rw-r--r--source/ro/svx/messages.po8
-rw-r--r--source/ro/sw/messages.po132
-rw-r--r--source/ru/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/ru/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/ru/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/ru/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/ru/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/ru/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/ru/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/ru/helpcontent2/source/text/swriter.po14
-rw-r--r--source/ru/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/ru/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/ru/sc/messages.po20
-rw-r--r--source/ru/sfx2/messages.po156
-rw-r--r--source/ru/starmath/messages.po823
-rw-r--r--source/ru/svtools/messages.po568
-rw-r--r--source/ru/svx/messages.po8
-rw-r--r--source/ru/sw/messages.po132
-rw-r--r--source/rw/sc/messages.po20
-rw-r--r--source/rw/sfx2/messages.po156
-rw-r--r--source/rw/starmath/messages.po823
-rw-r--r--source/rw/svtools/messages.po568
-rw-r--r--source/rw/svx/messages.po9
-rw-r--r--source/rw/sw/messages.po132
-rw-r--r--source/sa-IN/sc/messages.po20
-rw-r--r--source/sa-IN/sfx2/messages.po157
-rw-r--r--source/sa-IN/starmath/messages.po823
-rw-r--r--source/sa-IN/svtools/messages.po568
-rw-r--r--source/sa-IN/svx/messages.po9
-rw-r--r--source/sa-IN/sw/messages.po132
-rw-r--r--source/sah/sc/messages.po20
-rw-r--r--source/sah/sfx2/messages.po156
-rw-r--r--source/sah/starmath/messages.po823
-rw-r--r--source/sah/svtools/messages.po568
-rw-r--r--source/sah/svx/messages.po6
-rw-r--r--source/sah/sw/messages.po132
-rw-r--r--source/sat/sc/messages.po20
-rw-r--r--source/sat/sfx2/messages.po158
-rw-r--r--source/sat/starmath/messages.po823
-rw-r--r--source/sat/svtools/messages.po568
-rw-r--r--source/sat/svx/messages.po9
-rw-r--r--source/sat/sw/messages.po132
-rw-r--r--source/sd/sc/messages.po20
-rw-r--r--source/sd/sfx2/messages.po156
-rw-r--r--source/sd/starmath/messages.po823
-rw-r--r--source/sd/svtools/messages.po568
-rw-r--r--source/sd/svx/messages.po9
-rw-r--r--source/sd/sw/messages.po132
-rw-r--r--source/si/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/si/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/si/helpcontent2/source/text/shared/00.po57
-rw-r--r--source/si/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/si/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/si/helpcontent2/source/text/shared/optionen.po14
-rw-r--r--source/si/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/si/helpcontent2/source/text/swriter.po14
-rw-r--r--source/si/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/si/helpcontent2/source/text/swriter/guide.po404
-rw-r--r--source/si/sc/messages.po20
-rw-r--r--source/si/sfx2/messages.po157
-rw-r--r--source/si/starmath/messages.po823
-rw-r--r--source/si/svtools/messages.po568
-rw-r--r--source/si/svx/messages.po9
-rw-r--r--source/si/sw/messages.po132
-rw-r--r--source/sid/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/sid/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/sid/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/sid/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/sid/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/sid/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/sid/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/sid/helpcontent2/source/text/swriter.po14
-rw-r--r--source/sid/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/sid/helpcontent2/source/text/swriter/guide.po424
-rw-r--r--source/sid/sc/messages.po20
-rw-r--r--source/sid/sfx2/messages.po158
-rw-r--r--source/sid/starmath/messages.po823
-rw-r--r--source/sid/svtools/messages.po568
-rw-r--r--source/sid/svx/messages.po9
-rw-r--r--source/sid/sw/messages.po132
-rw-r--r--source/sk/cui/messages.po32
-rw-r--r--source/sk/extensions/messages.po15
-rw-r--r--source/sk/filter/messages.po28
-rw-r--r--source/sk/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/sk/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/sk/helpcontent2/source/text/shared/00.po57
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/sk/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/sk/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/sk/helpcontent2/source/text/simpress/02.po28
-rw-r--r--source/sk/helpcontent2/source/text/swriter.po14
-rw-r--r--source/sk/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/sk/helpcontent2/source/text/swriter/guide.po416
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office.po4
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office/UI.po38
-rw-r--r--source/sk/readlicense_oo/docs.po10
-rw-r--r--source/sk/sc/messages.po78
-rw-r--r--source/sk/sd/messages.po10
-rw-r--r--source/sk/sfx2/messages.po156
-rw-r--r--source/sk/starmath/messages.po881
-rw-r--r--source/sk/svtools/messages.po576
-rw-r--r--source/sk/svx/messages.po44
-rw-r--r--source/sk/sw/messages.po232
-rw-r--r--source/sk/vcl/messages.po10
-rw-r--r--source/sq/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/sq/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/sq/helpcontent2/source/text/shared/00.po57
-rw-r--r--source/sq/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/sq/helpcontent2/source/text/shared/02.po18
-rw-r--r--source/sq/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/sq/helpcontent2/source/text/simpress/02.po18
-rw-r--r--source/sq/helpcontent2/source/text/swriter.po10
-rw-r--r--source/sq/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/sq/helpcontent2/source/text/swriter/guide.po404
-rw-r--r--source/sq/sc/messages.po20
-rw-r--r--source/sq/sfx2/messages.po158
-rw-r--r--source/sq/starmath/messages.po823
-rw-r--r--source/sq/svtools/messages.po568
-rw-r--r--source/sq/svx/messages.po9
-rw-r--r--source/sq/sw/messages.po132
-rw-r--r--source/sr-Latn/sc/messages.po20
-rw-r--r--source/sr-Latn/sfx2/messages.po157
-rw-r--r--source/sr-Latn/starmath/messages.po823
-rw-r--r--source/sr-Latn/svtools/messages.po568
-rw-r--r--source/sr-Latn/svx/messages.po9
-rw-r--r--source/sr-Latn/sw/messages.po132
-rw-r--r--source/sr/sc/messages.po20
-rw-r--r--source/sr/sfx2/messages.po157
-rw-r--r--source/sr/starmath/messages.po823
-rw-r--r--source/sr/svtools/messages.po568
-rw-r--r--source/sr/svx/messages.po9
-rw-r--r--source/sr/sw/messages.po132
-rw-r--r--source/ss/sc/messages.po20
-rw-r--r--source/ss/sfx2/messages.po156
-rw-r--r--source/ss/starmath/messages.po823
-rw-r--r--source/ss/svtools/messages.po568
-rw-r--r--source/ss/svx/messages.po9
-rw-r--r--source/ss/sw/messages.po132
-rw-r--r--source/st/sc/messages.po20
-rw-r--r--source/st/sfx2/messages.po156
-rw-r--r--source/st/starmath/messages.po823
-rw-r--r--source/st/svtools/messages.po568
-rw-r--r--source/st/svx/messages.po9
-rw-r--r--source/st/sw/messages.po132
-rw-r--r--source/sv/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/sv/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/sv/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/sv/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/sv/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/sv/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/sv/helpcontent2/source/text/swriter.po14
-rw-r--r--source/sv/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/sv/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/sv/sc/messages.po24
-rw-r--r--source/sv/sfx2/messages.po156
-rw-r--r--source/sv/starmath/messages.po823
-rw-r--r--source/sv/svtools/messages.po568
-rw-r--r--source/sv/svx/messages.po8
-rw-r--r--source/sv/sw/messages.po132
-rw-r--r--source/sw-TZ/sc/messages.po20
-rw-r--r--source/sw-TZ/sfx2/messages.po156
-rw-r--r--source/sw-TZ/starmath/messages.po823
-rw-r--r--source/sw-TZ/svtools/messages.po568
-rw-r--r--source/sw-TZ/svx/messages.po9
-rw-r--r--source/sw-TZ/sw/messages.po132
-rw-r--r--source/szl/sc/messages.po20
-rw-r--r--source/szl/sfx2/messages.po156
-rw-r--r--source/szl/starmath/messages.po823
-rw-r--r--source/szl/svtools/messages.po568
-rw-r--r--source/szl/svx/messages.po8
-rw-r--r--source/szl/sw/messages.po134
-rw-r--r--source/ta/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/ta/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/ta/helpcontent2/source/text/shared/00.po57
-rw-r--r--source/ta/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/ta/helpcontent2/source/text/shared/02.po22
-rw-r--r--source/ta/helpcontent2/source/text/shared/optionen.po14
-rw-r--r--source/ta/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/ta/helpcontent2/source/text/swriter.po14
-rw-r--r--source/ta/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/ta/helpcontent2/source/text/swriter/guide.po404
-rw-r--r--source/ta/sc/messages.po20
-rw-r--r--source/ta/sfx2/messages.po159
-rw-r--r--source/ta/starmath/messages.po823
-rw-r--r--source/ta/svtools/messages.po568
-rw-r--r--source/ta/svx/messages.po9
-rw-r--r--source/ta/sw/messages.po132
-rw-r--r--source/te/sc/messages.po20
-rw-r--r--source/te/sfx2/messages.po158
-rw-r--r--source/te/starmath/messages.po823
-rw-r--r--source/te/svtools/messages.po568
-rw-r--r--source/te/svx/messages.po9
-rw-r--r--source/te/sw/messages.po132
-rw-r--r--source/tg/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/tg/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/tg/helpcontent2/source/text/shared/00.po57
-rw-r--r--source/tg/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/tg/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/tg/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/tg/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/tg/helpcontent2/source/text/swriter.po14
-rw-r--r--source/tg/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/tg/helpcontent2/source/text/swriter/guide.po404
-rw-r--r--source/tg/sc/messages.po20
-rw-r--r--source/tg/sfx2/messages.po156
-rw-r--r--source/tg/starmath/messages.po823
-rw-r--r--source/tg/svtools/messages.po568
-rw-r--r--source/tg/svx/messages.po9
-rw-r--r--source/tg/sw/messages.po132
-rw-r--r--source/th/sc/messages.po20
-rw-r--r--source/th/sfx2/messages.po158
-rw-r--r--source/th/starmath/messages.po823
-rw-r--r--source/th/svtools/messages.po568
-rw-r--r--source/th/svx/messages.po9
-rw-r--r--source/th/sw/messages.po132
-rw-r--r--source/ti/sc/messages.po20
-rw-r--r--source/ti/sfx2/messages.po156
-rw-r--r--source/ti/starmath/messages.po823
-rw-r--r--source/ti/svtools/messages.po568
-rw-r--r--source/ti/svx/messages.po6
-rw-r--r--source/ti/sw/messages.po132
-rw-r--r--source/tn/sc/messages.po20
-rw-r--r--source/tn/sfx2/messages.po156
-rw-r--r--source/tn/starmath/messages.po823
-rw-r--r--source/tn/svtools/messages.po568
-rw-r--r--source/tn/svx/messages.po9
-rw-r--r--source/tn/sw/messages.po132
-rw-r--r--source/tr/cui/messages.po28
-rw-r--r--source/tr/dbaccess/messages.po8
-rw-r--r--source/tr/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/tr/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/tr/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/tr/helpcontent2/source/text/shared/01.po62
-rw-r--r--source/tr/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/tr/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/tr/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/tr/helpcontent2/source/text/swriter.po14
-rw-r--r--source/tr/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/tr/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/tr/sc/messages.po36
-rw-r--r--source/tr/sfx2/messages.po156
-rw-r--r--source/tr/starmath/messages.po831
-rw-r--r--source/tr/svtools/messages.po568
-rw-r--r--source/tr/svx/messages.po8
-rw-r--r--source/tr/sw/messages.po132
-rw-r--r--source/ts/sc/messages.po20
-rw-r--r--source/ts/sfx2/messages.po156
-rw-r--r--source/ts/starmath/messages.po823
-rw-r--r--source/ts/svtools/messages.po568
-rw-r--r--source/ts/svx/messages.po9
-rw-r--r--source/ts/sw/messages.po132
-rw-r--r--source/tt/sc/messages.po20
-rw-r--r--source/tt/sfx2/messages.po156
-rw-r--r--source/tt/starmath/messages.po823
-rw-r--r--source/tt/svtools/messages.po568
-rw-r--r--source/tt/svx/messages.po9
-rw-r--r--source/tt/sw/messages.po132
-rw-r--r--source/ug/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/ug/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/ug/helpcontent2/source/text/shared/00.po57
-rw-r--r--source/ug/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/ug/helpcontent2/source/text/shared/02.po22
-rw-r--r--source/ug/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/ug/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/ug/helpcontent2/source/text/swriter.po14
-rw-r--r--source/ug/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/ug/helpcontent2/source/text/swriter/guide.po404
-rw-r--r--source/ug/sc/messages.po20
-rw-r--r--source/ug/sfx2/messages.po158
-rw-r--r--source/ug/starmath/messages.po823
-rw-r--r--source/ug/svtools/messages.po568
-rw-r--r--source/ug/svx/messages.po9
-rw-r--r--source/ug/sw/messages.po132
-rw-r--r--source/uk/cui/messages.po42
-rw-r--r--source/uk/filter/messages.po12
-rw-r--r--source/uk/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/uk/helpcontent2/source/text/sdraw.po64
-rw-r--r--source/uk/helpcontent2/source/text/sdraw/00.po14
-rw-r--r--source/uk/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po62
-rw-r--r--source/uk/helpcontent2/source/text/shared/02.po32
-rw-r--r--source/uk/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/uk/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/uk/helpcontent2/source/text/simpress/01.po38
-rw-r--r--source/uk/helpcontent2/source/text/simpress/02.po30
-rw-r--r--source/uk/helpcontent2/source/text/swriter.po14
-rw-r--r--source/uk/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/uk/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/uk/helpcontent2/source/text/swriter/menu.po8
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po32
-rw-r--r--source/uk/sc/messages.po26
-rw-r--r--source/uk/sfx2/messages.po156
-rw-r--r--source/uk/starmath/messages.po823
-rw-r--r--source/uk/svtools/messages.po568
-rw-r--r--source/uk/svx/messages.po58
-rw-r--r--source/uk/sw/messages.po164
-rw-r--r--source/ur/sc/messages.po20
-rw-r--r--source/ur/sfx2/messages.po156
-rw-r--r--source/ur/starmath/messages.po823
-rw-r--r--source/ur/svtools/messages.po568
-rw-r--r--source/ur/svx/messages.po9
-rw-r--r--source/ur/sw/messages.po132
-rw-r--r--source/uz/sc/messages.po20
-rw-r--r--source/uz/sfx2/messages.po157
-rw-r--r--source/uz/starmath/messages.po823
-rw-r--r--source/uz/svtools/messages.po568
-rw-r--r--source/uz/svx/messages.po9
-rw-r--r--source/uz/sw/messages.po132
-rw-r--r--source/ve/sc/messages.po20
-rw-r--r--source/ve/sfx2/messages.po156
-rw-r--r--source/ve/starmath/messages.po823
-rw-r--r--source/ve/svtools/messages.po568
-rw-r--r--source/ve/svx/messages.po9
-rw-r--r--source/ve/sw/messages.po132
-rw-r--r--source/vec/sc/messages.po20
-rw-r--r--source/vec/sfx2/messages.po156
-rw-r--r--source/vec/starmath/messages.po823
-rw-r--r--source/vec/svtools/messages.po568
-rw-r--r--source/vec/svx/messages.po8
-rw-r--r--source/vec/sw/messages.po134
-rw-r--r--source/vi/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/vi/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/vi/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/vi/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/vi/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/vi/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/vi/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/vi/helpcontent2/source/text/swriter.po14
-rw-r--r--source/vi/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/vi/helpcontent2/source/text/swriter/guide.po422
-rw-r--r--source/vi/sc/messages.po20
-rw-r--r--source/vi/sfx2/messages.po157
-rw-r--r--source/vi/starmath/messages.po823
-rw-r--r--source/vi/svtools/messages.po568
-rw-r--r--source/vi/svx/messages.po9
-rw-r--r--source/vi/sw/messages.po132
-rw-r--r--source/xh/sc/messages.po20
-rw-r--r--source/xh/sfx2/messages.po156
-rw-r--r--source/xh/starmath/messages.po823
-rw-r--r--source/xh/svtools/messages.po568
-rw-r--r--source/xh/svx/messages.po9
-rw-r--r--source/xh/sw/messages.po132
-rw-r--r--source/zh-CN/basic/messages.po12
-rw-r--r--source/zh-CN/cui/messages.po46
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/01.po62
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter.po14
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po34
-rw-r--r--source/zh-CN/sc/messages.po48
-rw-r--r--source/zh-CN/sfx2/messages.po156
-rw-r--r--source/zh-CN/starmath/messages.po857
-rw-r--r--source/zh-CN/svtools/messages.po568
-rw-r--r--source/zh-CN/svx/messages.po38
-rw-r--r--source/zh-CN/sw/messages.po146
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/01.po11
-rw-r--r--source/zh-TW/helpcontent2/source/text/sdraw.po56
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/00.po59
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/01.po48
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/zh-TW/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter.po14
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/01.po471
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/guide.po430
-rw-r--r--source/zh-TW/sc/messages.po20
-rw-r--r--source/zh-TW/sfx2/messages.po156
-rw-r--r--source/zh-TW/starmath/messages.po823
-rw-r--r--source/zh-TW/svtools/messages.po568
-rw-r--r--source/zh-TW/svx/messages.po8
-rw-r--r--source/zh-TW/sw/messages.po132
-rw-r--r--source/zu/sc/messages.po20
-rw-r--r--source/zu/sfx2/messages.po157
-rw-r--r--source/zu/starmath/messages.po823
-rw-r--r--source/zu/svtools/messages.po568
-rw-r--r--source/zu/svx/messages.po9
-rw-r--r--source/zu/sw/messages.po132
1523 files changed, 182451 insertions, 114197 deletions
diff --git a/source/ab/sc/messages.po b/source/ab/sc/messages.po
index 062d493c09f..44c9496be83 100644
--- a/source/ab/sc/messages.po
+++ b/source/ab/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28600,38 +28600,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr ""
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr ""
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr ""
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr ""
diff --git a/source/ab/sfx2/messages.po b/source/ab/sfx2/messages.po
index 3383c8c0704..6e6bbaebba6 100644
--- a/source/ab/sfx2/messages.po
+++ b/source/ab/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-10-21 19:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1581,286 +1581,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr ""
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr ""
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Еиҭа апараметрқәа"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Иарктәуп аварахьтәи апанель"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr ""
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr ""
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr ""
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Иарктәуп аварахьтәи апанель"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Иқәгатәуп"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4095,6 +4059,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Ианыхтәуп..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/ab/starmath/messages.po b/source/ab/starmath/messages.po
index 1967efd8555..124aedf5d22 100644
--- a/source/ab/starmath/messages.po
+++ b/source/ab/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2019-06-25 09:42+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -424,2071 +424,2204 @@ msgid "or"
msgstr "ма"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Адырга +"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Адырга -"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Адырга +-"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Адырга -+"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Алогикатә АКӘӠАМ"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Аицҵара +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Аигырхара -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Ашьҭыхра (акәаҧ)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Ашьҭыхра (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Ашьҭыхра (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Ашара (/)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Ашара (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Ашара (аихша)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Акәаԥ аҵәаӷәагьежь аҟны"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Минус аҵәаӷәагьежь аҟны"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Плиус аҵәаӷәагьежь аҟны"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Атензортә шьҭыхлыҵ"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Алогикатә И"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Алогикатә МА"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Иаҟароуп"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Иаҟараӡам"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Еиҵоуп аасҭа"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Еиҳауп аасҭа"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Еиҵоуп ма иаҟароуп"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Еиҳауп ма иаҟароуп"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Еиҵоуп ма иаҟароуп"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Еиҳауп ма иаҟароуп"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Кыр еиҵоуп"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Кыр еиҳауп"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Иконгурентуп"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Инықәырԥшны иаҟароуп"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Иашьашәалоуп"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Иашьашәалоуп ма иаҟароуп"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Ипропорционалуп"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Иортогоналны"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Ипараллелны"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr ""
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Иашьашәалоуп (арымарахь)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Иашьашәалоуп (арыӷьарахь)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Иаҵанакуеит аҟны"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Иаҵанакӡом аҟны"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Иаҵанакуеит"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Аидҵара"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Аихысырҭа"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Аигырхалыҵ"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr ""
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr ""
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr ""
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr ""
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr ""
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr ""
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr ""
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr ""
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Абсолиуттә ҵакы"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Афакториал"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Аквадраттә дац"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr ""
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Аекспоненциалтә функциа"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Аекспоненциалтә функциа"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Анатуралтә логарифм"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Алогарифм"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Асинус"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Акосинус"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Атангенс"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Акотангенс"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Арксинус"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Арккосинус"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Арктангенс"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Арккотангенс"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Агиперболатә синус"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Агиперболатә косинус"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Агиперболатә тангенс"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Агиперболатә котангенс"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Агиперболатә ареа-синус"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Агиперболатә ареа-косинус"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Агиперболатә ареа-тангенс"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Агиперболатә ареа-котангенс"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Аицҵалыҵ"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Аицҵалыҵ ҵаҟатәи аиндекс"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Аицҵалыҵ хыхьтәи аиндекс"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Аицҵалыҵ аиндексқәа"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Ашьҭыхлыҵ"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Ашьҭыхлыҵ ҵаҟатәи аиндекс"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Ашьҭыхлыҵ хыхьтәи аиндекс"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Ашьҭыхлыҵ аиндексқәа"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Коашьҭыхлыҵ"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Коашьҭыхлыҵ ҵаҟатәи аиндекс"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Коашьҭыхлыҵ хыхьтәи аиндекс"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Коашьҭыхлыҵ аиндексқәа"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
#, fuzzy
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Ацәаҳәа(қәа)"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
#, fuzzy
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Аицҵалыҵ ҵаҟатәи аиндекс"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
#, fuzzy
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Аицҵалыҵ хыхьтәи аиндекс"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
#, fuzzy
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Аицҵалыҵ аиндексқәа"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Иҟоуп"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Иҟаӡам"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Иаарҧштәуп зегьы"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Аинтеграл"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Аинтеграл ҵаҟатәи аиндекс"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Аинтеграл хыхьтәи аиндекс"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Аинтеграл аиндексқәа"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Иҩбоу аинтеграл"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Иҩбоу аинтеграл ҵаҟатәи аиндекс"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Иҩбоу аинтеграл хыхьтәи аиндекс"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Иҩбоу аинтеграл аиндексқәа"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Ихԥоу аинтеграл"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Ихԥоу аинтеграл ҵаҟатәи аиндекс"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Ихԥоу аинтеграл хыхьтәи аиндекс"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Ихԥоу аинтеграл аиндексқәа"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Аҵәаӷәархәаратә интеграл"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Аҵәаӷәархәаратә интеграл ҵаҟатәи аиндекс"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Аҵәаӷәархәаратә интеграл хыхьтәи аиндекс"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Аҵәаӷәархәаратә интеграл аиндексқәа"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Иҩбоу аҵәаӷәахәахәатә интеграл"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Иҩбоу аҵәаӷәархәаратә интеграл ҵаҟатәи аиндекс"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Иҩбоу аҵәаӷәархәаратә интеграл хыхьтәи аиндекс"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Иҩбоу аҵәаӷәархәаратә интеграл аиндексқәа"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Ихԥоу аҵәаӷәахәахәатә интеграл"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Ихԥоу аҵәаӷәархәаратә интеграл ҵаҟатәи аиндекс"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Ихԥоу аҵәаӷәархәаратә интеграл хыхьтәи аиндекс"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Ихԥоу аҵәаӷәархәаратә интеграл аиндексқәа"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Акут"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Аҵәаӷәа хыхьла"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr ""
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Иаарҳәу ациркумфлекс"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Агьежь"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Акәаҧ"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Аҩкәаҧ"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Акәаҧрацәа"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Гравис"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Циркумфлекс"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Тильда"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Авектортә хыц"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Аҵаӷәа ҵаҟала"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Аҵәаӷәа хыхьла"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Иҵәаӷәоу"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Иҵәцоу"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Ижәпоу ашрифт"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Ихынаау ашрифт"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Иҧсахтәуп ашәагаа"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Иҧсахтәуп ашрифт"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Еиқәаҵәоу аҧштәы"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr ""
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr ""
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Иҟаҧшьу аҧштәы"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Араӡын ԥштәы"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr ""
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Аҩежь ԥштәы"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr ""
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Ахыц гьежьқәа"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Аквадраттә хыцқәа"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr ""
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
#, fuzzy
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Ахыцқәа"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Акәакьтә хыцқәа"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr ""
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Иаабац аҵәаӷәақәа"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Иҩбоу аҵәаӷәақәа"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Аоператор ахыцқәа"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Ахыц гьежьқәа (амасштабра зуа)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Аквадраттә хыцқәа (амасштабра зуа)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Иҩбоу аквадраттә хыцқәа (амасштабра зуа)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Афигуратә хыцқәа (амасштабра зуа)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Акәакьтә хыцқәа (амасштабра зуа)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Иаабац аҵәаӷәақәа (амасштабра зуа)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Иҩбоу аҵәаӷәақәа (амасштабра зуа)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Аоператор ахыцқәа (амасштабра зуа)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Иԥшаауп"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Афигуратә хыцқәа хыхьла (амасштабра зуа)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Афигуратә хыцқәа ҵаҟала (амасштабра зуа)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Ҵаҟатәи аиндекс арымарахь"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Ахыцырк"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Ҵаҟатәи аиндекс арымарахь"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Хыхьтәи аиндекс арымарахь"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Ҵаҟатәи аиндекс ҵаҟала"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Хыхьтәи аиндекс хыхьла"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Икьаҿу абжьажь"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Иҭацәуп"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Ацәаҳәа ҿыц"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr ""
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr ""
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr ""
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Еиҟаратәтәуп арымарахь ала"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Еиҟаратәтәуп ацентр ала"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Еиҟаратәтәуп арыӷьарахь ала"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Алеф"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Иҭацәу арацәа"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Амаҭәартә хәҭа"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Еижьагоу ахәҭа"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Ҵыхәаԥҵәарада"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Ихатәу адифференциал"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Набла"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Вейерштрасс аеллиптикатә символ"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Акәаԥқәа агәҭаны"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Акәаԥқәа хыхь"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Акәаԥқәа ҵаҟа"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Акәаԥқәа ҵаҟала"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Акәаԥқәа вертикалны"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Аидҳәалара"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Ашара (/)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Ишоит"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Ишаӡом"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr ""
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr ""
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr ""
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Анатуралтә хыԥхьаӡарақәа рырацәа"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Ахыҧхьаӡара еибгақәа рырацәа"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Арационалтә хыԥхьаӡарақәа рырацәа"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Иҵабыргу ахыԥхьаӡарақәа рырацәа"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Акомплекстә хыԥхьаӡарақәа рырацәа"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Иҭбаау циркумфлекс"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Иауу тильда"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Иауу авектортә хыц"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr ""
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr ""
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Ахыц армарахь"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Ахыц арӷьарахь"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Ахыц аҩада"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Ахыц алада"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Абжьажь ада"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Иаԥхьанеиуеит"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Иаԥхьанеиуеит ма иаҟароуп"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Иаԥхьанеиуеит ма еквивалентуп"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Иашьҭанеиуеит"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Иашьҭанеиуеит ма иаҟароуп"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Иашьҭанеиуеит ма еквивалентуп"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Иаԥхьанеиӡом"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Иашьҭанеиӡом"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Аунартәи/Абинартәи операторқәа"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Аизыҟазаашьақәа"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Арацәа азы аоперациақәа"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Афункциақәа"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Аоператорқәа"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Атрибутқәа"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Ахыцқәа"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Аформатқәа"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Егьырҭқәа"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Аҿырҧштәқәа"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Истандарту"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Акурсив"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Ажәпа"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "аиқәаҵәа"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr ""
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "аиаҵәа"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "аҟаҧшь"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr ""
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "алаиматә"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "араӡынтә"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
#, fuzzy
msgctxt "STR_TEAL"
msgid "teal"
msgstr "ачаи"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "аҩежь"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "иубарҭам"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "акегль"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "агарнитура"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "арымарахь"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "ацентр ала"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "арыгьарахь"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Акомандақәа"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Аформула"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Адокумент аиқәырхара..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION аформула"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "АГХА : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Ҳаззыҧшымыз асимвол"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Иззыԥшымыз атокен"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Иазыԥшуп «{»"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Иазыԥшуп «}»"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Иазыԥшуп «(»"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Иазыҧшуп «)»"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Арӷьарахьи армарахьи асимволқәа еиқәшәаӡом"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Иазыԥшуп «fixed», «sans» ма «serif»"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "Иззыԥшымыз атокен «size» ашьҭахь"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Ҩынтәны аиҟаратәра азин ыҟам"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Иазыԥшуп «#»"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Иаҭахуп аԥштәы"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Иазыԥшуп «Арӷьарахь»"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Иаҵанакуа"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Ахы"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Аформула атеқст"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Аҿыкәырша "
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Ашәагаа"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Ахалагаратә шәагаа"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Адаҟьа ашәагаа иақәыршәаны"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "Амасштаб"
diff --git a/source/ab/svtools/messages.po b/source/ab/svtools/messages.po
index fe43e037c52..053c4a82886 100644
--- a/source/ab/svtools/messages.po
+++ b/source/ab/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,483 +17,483 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Иаҟәыхтәуп: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr ""
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Атеқст амацара"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr ""
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr ""
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Асервер Star аформат"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Аобиеқт Star аформат"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
#, fuzzy
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Ихархәатәуп аобиеқт"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr ""
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr ""
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr ""
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr ""
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr ""
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr ""
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr ""
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr ""
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarChart аобиеқт"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 аобиеқт"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr ""
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarChart 5.0 аобиеқт"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc аобиеқт"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarChart 4.0 аобиеқт"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarChart 5.0 аобиеқт"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart аобиеқт"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 аобиеқт"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 аобиеқт"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage аобиеқт"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 аобиеқт"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 аобиеқт"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath аобиеқт"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 аобиеқт"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 аобиеқт"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr ""
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr ""
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word аобиеқт"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr ""
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr ""
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr ""
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx адокумент"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 аобиеқт"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr ""
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer аобиеқт"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web аобиеқт"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Еилоу адокумент "
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw аобиеқт"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress аобиеқт"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc аобиеқт"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart аобиеқт"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math аобиеқт"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows аметафаил"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr ""
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Ахалагаратә дырқәа ртаблица"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr ""
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 адиалог"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Аимадара"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr ""
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr ""
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr ""
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr ""
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr ""
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr ""
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr ""
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr ""
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr ""
@@ -501,1238 +501,1238 @@ msgstr ""
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Инормалтәу"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Акодркра"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Ажәар"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr ""
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr ""
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr ""
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr ""
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr ""
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr ""
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr ""
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Ажәар"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr ""
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr ""
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr ""
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr ""
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr ""
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr ""
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr ""
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Ипоу"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr ""
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr ""
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Акурсив"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Ажәпа"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr ""
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Аиқәаҵәа"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr ""
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Ашәҟәы"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr ""
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr ""
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr ""
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr ""
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr ""
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr ""
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr ""
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr ""
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Иацҵатәуп"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr ""
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr ""
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr ""
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr ""
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr ""
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr ""
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr ""
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Афаил ашәагаа %1 KB."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Post"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Апорт"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Ааҭгылара"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Аныхра ахырҧоуп"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr ""
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Азыҧшра"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Акьыҧхьра"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Агха"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Ианыхтәуп адаҟьа"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr ""
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Аенергиа аекономиа арежим"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr ""
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
#, fuzzy
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "Адокументқәа ыҟыӡам"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<мап>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Аиҿкаара"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Аҟәша"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Ахьӡ"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Ажәла"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Амҩа ахьӡ"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Атәыла"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr ""
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Ақалақь"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
#, fuzzy
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Ахы"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Аҭыҧ"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr ""
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Аинициалқәа"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr ""
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr ""
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr ""
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Азгәаҭа"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr ""
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr ""
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr ""
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr ""
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Акод"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr ""
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr ""
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Апеиджер"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Амобилтә"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr ""
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Амзар"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr ""
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr ""
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Иалхтәуп JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr ""
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr ""
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr ""
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Асахьа"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Аконфигурациатә фаил"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr ""
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Адырқәа рбаза атаблица"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Асистематә фаил"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr ""
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Аилыркаага афаил"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML адокумент"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Архив афаил"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Ажурнал"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr ""
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr ""
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr ""
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Атқстә фаил"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Аимадара"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr ""
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr ""
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel ашаблон"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Апакеттә фаил"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Афаил"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Аҭаӡ"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Атеқстә документ"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Аелектронтә таблица"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Апрезентациа"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Асахьа"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML адокумент"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Еилоу адокумент"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Аформула"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Адырқәа рбаза"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 аелектронтә таблица ашаблон"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 асахьа ашаблон"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 апрезентациа ашаблон"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 атеқсттә документ ашаблон"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr ""
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr ""
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr ""
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr ""
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr ""
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint ашаблон"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr ""
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 аформула"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 адиаграмма"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 асахьа"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 аелектронтә таблица"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 апрезентациа"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org атеқсттә документ"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 еилоу адокумент"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr ""
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument адырқәа рбаза"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument асахьа"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument аформула"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument еилоу адокумент"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument апрезентациа"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocumentа аелектронтә таблица"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument атеқсттә документ"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument аелектронтә таблица ашаблон"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument асахьа ашаблон"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument апрезентациа ашаблон"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument атеқсттә документ ашаблон"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME арҭбаара"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/ab/svx/messages.po b/source/ab/svx/messages.po
index 13839ea443d..24064293072 100644
--- a/source/ab/svx/messages.po
+++ b/source/ab/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16352,11 +16352,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "Акомментариқәа"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/ab/sw/messages.po b/source/ab/sw/messages.po
index 6e72ca2c086..e6036f7de7c 100644
--- a/source/ab/sw/messages.po
+++ b/source/ab/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-31 11:36+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Abkhazian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/ab/>\n"
@@ -17621,87 +17621,93 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Азеиҧшқәа"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
#, fuzzy
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "Ахқәа"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr ""
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr ""
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr ""
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Апараметрқәа"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20267,292 +20273,292 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr ""
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr ""
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr ""
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr ""
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr ""
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Адокумент"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr ""
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
#, fuzzy
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Иҧсахтәуп"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Ирҿыцтәуп"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Ибжьаргылатәуп"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
#, fuzzy
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Аҩада"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
#, fuzzy
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Алада"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/af/cui/messages.po b/source/af/cui/messages.po
index e04b8d787c7..2a7c1e12d4c 100644
--- a/source/af/cui/messages.po
+++ b/source/af/cui/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-04 20:46+0000\n"
+"PO-Revision-Date: 2020-11-17 20:35+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/af/>\n"
"Language: af\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1560976497.000000\n"
#. GyY9M
@@ -3403,7 +3403,7 @@ msgstr "As u nie 'n gepasmaakte selstyl in \"Calc\" kan uitvee nie, kontroleer a
#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Nodig om 'n reeks te voltooi? Kies die selreeks en klik op \"Blad→Vul selle→Vul reeks\" en kies uit: Lineêr, Groei, Datum en Outovul."
#. BiSJM
#. local help missing
@@ -3476,7 +3476,7 @@ msgstr "U kan nuwe XSLT- en XML-filters ontwikkel."
#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General."
-msgstr ""
+msgstr "Druk <Shift>+<F1> om enige beskikbare aanvullende wenke in dialoogblokkies te sien, mits \"Aanvullende wenke\" nie geaktiveer is in \"Hulpprogram→Opsies→%PRODUCTNAME→Algemeen\"."
#. hsZPg
#: cui/inc/tipoftheday.hrc:274
@@ -5632,7 +5632,7 @@ msgstr "Gebr_uikergedefinieer:"
#: cui/uiconfig/ui/borderpage.ui:98
msgctxt "borderpage|userdefft"
msgid "Click edge or corner to cycle through three states: set, unchanged, remove."
-msgstr ""
+msgstr "Klik op rand of hoek om te wissel tussen drie toestande: stel, onveranderd, verwyder."
#. sRXeg
#: cui/uiconfig/ui/borderpage.ui:111
@@ -5734,7 +5734,7 @@ msgstr "Afstan_d:"
#: cui/uiconfig/ui/borderpage.ui:547
msgctxt "borderpage|distanceft"
msgid "Width of shadow"
-msgstr ""
+msgstr "Wydte van skaduwee"
#. gEF6E
#: cui/uiconfig/ui/borderpage.ui:572
diff --git a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po b/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
index 5126ff2d3a7..fad61e0a1b9 100644
--- a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/af/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-04 20:47+0000\n"
+"PO-Revision-Date: 2020-11-17 20:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/af/>\n"
"Language: af\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1560976865.000000\n"
#. W5ukN
@@ -13574,7 +13574,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Regular Triangle"
-msgstr ""
+msgstr "Gelyksydige Driehoek"
#. BUJ28
#: Effects.xcu
@@ -29886,7 +29886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show ~Tracked Changes"
-msgstr ""
+msgstr "Vertoon ~ Bygehoude Wysigings"
#. sMgCx
#: WriterCommands.xcu
diff --git a/source/af/sc/messages.po b/source/af/sc/messages.po
index a8e1015a769..10c1435d708 100644
--- a/source/af/sc/messages.po
+++ b/source/af/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-07 06:36+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/af/>\n"
"Language: af\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1560976792.000000\n"
#. kBovX
@@ -1469,7 +1469,7 @@ msgstr "Dif-invoer"
#: sc/inc/globstr.hrc:272
msgctxt "STR_STYLENAME_STANDARD"
msgid "Default"
-msgstr ""
+msgstr "Verstek"
#. TG9pD
#: sc/inc/globstr.hrc:273
@@ -14683,7 +14683,7 @@ msgstr "Die resultaat van die funksie as toets WAAR lewer."
#: sc/inc/scfuncs.hrc:3606
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Compares expression against list of value/result pairs, and returns result for first value that matches the expression. If expression does not match any value, a default result is returned, if it is placed as final item in parameter list without a value."
-msgstr ""
+msgstr "Vergelyk die uitdrukking met 'n lys van waarde / resultaat-pare, en lewer die resultaat vir die eerste ooreenstemmende waarde se resultaat. As uitdrukking met geen waarde ooreenstem nie, word 'n verstek-resultaat teruggestuur mits dit as 'n finale item sonder 'n waarde in die parameterlys verskyn."
#. PneN8
#: sc/inc/scfuncs.hrc:3607
@@ -14695,7 +14695,7 @@ msgstr "Uitdrukking"
#: sc/inc/scfuncs.hrc:3608
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Value to be compared against value1…valueN (N ≤ 127)"
-msgstr ""
+msgstr "Waarde wat vergelyk word met waarde1...waardeN (N ≤ 127)"
#. 9wcvj
#: sc/inc/scfuncs.hrc:3609
@@ -14707,7 +14707,7 @@ msgstr "Waarde"
#: sc/inc/scfuncs.hrc:3610
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Value to compare against expression. If no result is given, then value is returned as default result."
-msgstr ""
+msgstr "Waarde om te vergelyk met uitdrukking. As geen resultaat gegee word nie, word die waarde as verstek-resultaat teruggestuur."
#. dsARv
#: sc/inc/scfuncs.hrc:3611
@@ -25214,13 +25214,13 @@ msgstr "Aksent 3"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2653
msgctxt "notebookbar_groupedbar_full|Header1"
msgid "Heading 1"
-msgstr ""
+msgstr "Opskrif 1"
#. 6Ej4G
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2661
msgctxt "notebookbar_groupedbar_full|Header2"
msgid "Heading 2"
-msgstr ""
+msgstr "Opskrif 2"
#. sqE94
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2675
@@ -28624,38 +28624,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr "'n Waarskuwing word getoon wanneer selle vanaf die knipbord in 'n nie-leë selreeks geplak word."
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr "Druk Enter om die knipbord te plak en uit te vee"
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Gebruik drukker afmetings vir teks formattering"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "Die drukkerafmetings word gebruik vir die druk sowel as om die vertoning op die skerm te formateer."
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Merk seleksie van kolom- / ry-opskrifte"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr "Bepaal of kolom- en ryopskrifte in geselekteerde kolomme en rye gemerk word."
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Opdateer verwysings wanneer selle gesorteer word"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Invoer-Instellings"
diff --git a/source/af/sfx2/messages.po b/source/af/sfx2/messages.po
index d37d8c49f65..76133d5a82f 100644
--- a/source/af/sfx2/messages.po
+++ b/source/af/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-10-29 14:35+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/af/>\n"
@@ -1655,286 +1655,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Sluit Paneel."
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Vasmeer"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Losmaak"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Meer Opsies"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Sluit Sybalk"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Sybalk Instellings"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Aanpassing"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Herstel Verstekwaardes"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Sluit Sybalk"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Byekorf"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blou Kromme"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Bloudruk Planne"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Helder Blou"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Klassieke Rooi"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Woudvoël"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspirasie"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Ligte"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Weelde Groen"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Middernag Blou"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natuur Illustrasie"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Potlood"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klavier"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Voortgaan"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Sonsondergang"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Tradisioneel"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Helder"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Samevatting"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Verstek"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderne"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderne sakebrief sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderne sakebrief sans-serif"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Visetekaartjie met logo"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Eenvoudig"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Verwyder"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Alles uitwis"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Wagwoordlengte"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Die wagwoord wat u ingevoer het, veroorsaak probleme met versoenbaarheid. Voer 'n wagwoord, wat korter as 52 grepe is of langer is as 55 grepe."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-Klik, om die skakel: %{link} te open"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Kliek om die skakel: %{link} te open"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(gebruik deur: %STYLELIST)"
@@ -4165,6 +4129,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Skrap..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/af/starmath/messages.po b/source/af/starmath/messages.po
index a7b29dbe54b..57943b4452e 100644
--- a/source/af/starmath/messages.po
+++ b/source/af/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-08-30 17:35+0000\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/af/>\n"
"Language: af\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "of"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+ Teken"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "- Teken"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+- Teken"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "-+ Teken"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Boolese NIE"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Optel +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Aftrek -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Vermenigvuldiging (punt)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Vermenigvuldiging (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Vermenigvuldiging (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Deling (solidus)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Deling (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Deling (breuk)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
-msgstr ""
+msgstr "Breuk"
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Punt Deling"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Dot Vermenigvuldiging"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Omsirkelde Minus"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Omsirkelde Plus"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Tensor Produk"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Boolese EN"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Boolese OF"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Is gelyk"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Is nie gelyk"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Is minder as"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Is groter as"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Is minder as of gelyk aan"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Is groter as of gelyk aan"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Is minder as of gelyk aan"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Is groter as of gelyk aan"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Is heelwat Kleiner"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Is heelwat groter as"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Is gedefineerd as"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Is kongruent aan"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Is ongeveer gelyk"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Is soortgelyk aan"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Is soortgelyk of gelyk aan"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Is proporsioneel aan"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Is ortogonaal aan"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Is parallel aan"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Na"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Ooreenstemmende Afbeelding"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Stem Ooreen met (Regs)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Is in"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Is nie in"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Besit"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Vereniging"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Snyding"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Verskil"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
-msgstr ""
+msgstr "Kwosiëntstel"
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Substel"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Substel of gelyk aan"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Superstel"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Superstel of gelyk aan"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Nie substel"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Nie substel of gelyk aan"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Nie superstel"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Nie superstel of gelyk aan"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr "Algemeen oor funksie"
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Absolute waarde"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Faktoriaal"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Vierkantswortel"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N-de wortel"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Eksponensiële funksie"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Eksponensiële funksie"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Natuurlike logaritme"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logaritme"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sinus"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Kosinus"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangens"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Kotangens"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Boogsinus"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Boogkosinus"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Boogtangens"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Boogkotangens"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Hiperboliese sinus"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Hiperboliese kosinus"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Hiperboliese tangens"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Hiperboliese kotangens"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Areahiperboliese sinus"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Areahiperboliese kosinus"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Areahiperboliese tangens"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Areahiperboliese kotangens"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr "Algemeen oor operatore"
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr "Algemeen operator Voetskrif Onder"
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr "Algemeen operator Boskrif Bo"
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr "Algemeen operator Bo/Voet-skrif"
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Som"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Som van onderste Grense"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Som van Boonste Grense"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Som van Sup/Sub Grense"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Produk"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Produk van Onderste Grense"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Produk van Bogrense"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Produk van Onder en Bo Grense"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Ko-produk"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Koproduk van onderste Grense"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Koproduk van Bo Grense"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Koproduk van Sup/Sub Grense"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Lemmetjies"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Limiet Inferior"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Limiet Superior"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Limiet van Sup/Sub Grense"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Limiet Inferior"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Limiet Inferior van Onder Grense"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Limiet Inferior van Bo Grense"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Limiet Inferior Sup/Sub Grense"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Limiet Superior"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Limiet Superior van Onder Grense"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Limiet Superior van Bo Grense"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Limiet Superior van Sup/Sub Grense"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Daar bestaan"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Daar bestaan nie"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Vir alle"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integraal"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Integraal van Onder Grense"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Integraal van Bogrense"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integraal Sup/Sub Grense"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Dubbele integraal"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Dubbel Integraal van Onder Grense"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Dubbel Integraal van Boonste Grense"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Dubbel Integraal Sup/Sub Grense"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Driedubbele integraal"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Trippel Integraal van onder Grense"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Trippel Integraal van Bo Grense"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Trippel Integraal van Onder en Bo Grense"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Kurwe-integraal"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Kurwe Integraal van Onder Grense"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Kurwe Integraal van Bo Grense"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Kurwe Integraal van Sup/Sub Grense"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Dubbelkurwe-integraal"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Dubbel Lyn Integraal met Onder-Grens"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Dubbel Lyn Integraal met Bo-Grens"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Dubbel Lyn Integraal met Bo- Onder-Grens"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Driedubbelekurwe-integraal"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Trippel Lyn Integraal met Onder-Grens"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Trippel Lyn Integraal met Bo-Grens"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Trippel Lyn Integraal met Onder-/Bo-Grens"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Akuutaksent"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Reël bo"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Brevis"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Omgekeerde sirkumfleks"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Sirkel"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Stippel"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Dubbele punt"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Driedubbele punt"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Gravisaksent"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Sirkumfleks"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Slangetjie"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Vektorpyl"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Harpoon"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Reël onder"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Reël oor"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Reël deur"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Deursigtig"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Vetskriffont"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Skuinsskriffont"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Herskaleer"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Verander font"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Tekenkleur Swart"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Tekenkleur Blou"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Tekenkleur Groen"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Tekenkleur Rooi"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
-msgstr ""
+msgstr "Kleur Aqua"
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
-msgstr ""
+msgstr "Kleur Fuchsia"
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Tekenkleur Grys"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Tekenkleur Lemmetjie Groen"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Tekenkleur Donkerrooi"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Tekenkleur Donkerblou"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Tekenkleur Olyf"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Tekenkleur Pers"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Tekenkleur Silwer"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Tekenkleur Turkoois"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Tekenkleur Geel"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "Kleur RGB"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
-msgstr ""
+msgstr "Kleur RGBA"
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
-msgstr ""
+msgstr "Kleur heksadesimaal"
+
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr "Kleur: Koraal"
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr "Kleur: Bloedrooi"
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr "Kleur: Nagblou"
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr "Kleur: Violet"
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr "Kleur: Oranje"
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr "Kleur: Oranjerooi"
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr "Kleur: Seegroen"
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr "Kleur: Indigo"
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr "Kleur: Skelpienk"
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr "Kleur: Laventel"
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr "Kleur: Sneeu"
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Groephakies"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Ronde hakies"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Vierkanthakies"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Dubbele vierkanthakies"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Krulhakies"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Hoekhakies"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Oprond Bogrens"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Afrond Drempel"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Enkelreëls"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Dubbelreëls"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Bewerkinghakies"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Ronde hakies (skaleerbaar)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Vierkanthakies (skaleerbaar)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Dubbele vierkanthakies (skaleerbaar)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Krulhakies (skaleerbaar)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Hoekhakies (skaleerbaar)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Oprond Grens (skaleerbaar)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Afrond Drempel (skaleerbaar)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Enkelreëls (skaleerbaar)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Dubbele reëls (skaleerbaar)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Bewerkinghakies (skaleerbaar)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Ge-evalueer Op"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Krulhakies bo (skaleerbaar)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Krulhakies onder (skaleerbaar)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
-msgstr ""
+msgstr "Evalueer"
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
-msgstr ""
+msgstr "Evalueer Voetskrif Onderaan"
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
-msgstr ""
+msgstr "Evalueer hoofdteks bo-aan"
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
-msgstr ""
+msgstr "Evalueer Hoofd/Voet-teks"
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Subskrif regs"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Mag"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Subskrif links"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Superskrif links"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Subskrif onder"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Superskrif bo"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Klein gaping"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Blanko"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Nuwe reël"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Vertikale stapel (2 elemente)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Vertikale stapel"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Matriksstapel"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Belyn links"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Belyn middel"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Regsbelyn"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Alef"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Leë stel"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Reële deel"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Skyndeel"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Oneindig"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Gedeeltelik"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
-msgstr "Laplace transform"
+msgstr "Laplace transformasie"
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
-msgstr "Fourier transform"
+msgstr "Fourier transformasie"
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass-p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Punte in die middel"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Punte tot bo"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Punte skuins na onder"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Punte onder"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Punte vertikaal"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Aaneenskakel"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Deling (solidus onderverdeling)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Terug Skuinsstreep"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Deel"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Deel nie"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Dubbelpyltjie links"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Dubbelpyltjie links en regs"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Dubbelpyltjie regs"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Natuurlikegetalle-stel"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Heelgetalstel"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Stel rasionale nommers"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Versameling reële getalle"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Stel komplekse nommers"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Groot sirkumfleks"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Groot tilde"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Groot vektorpyl"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Groot Harpoen"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h-balk"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda-balk"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Linkspyl"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Regspyl"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Oppyl"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Afpyl"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "geen vry spasie"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "van 'n laer rang"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "van 'n laer of gelyke rang"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "van 'n laer of ekwivalente rang"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "van 'n hoër rang"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "van 'n hoër of gelyke rang"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "van 'n hoër of ekwivalente rang"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "nie van 'n laer rang"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "nie van 'n hoër rang"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Unêre/Binêre operatore"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Relasies"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Versamelingbewerkings"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funksies"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operatore"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Attribute"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Hakies"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formate"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Andere"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Voorbeelde"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Sirkel-Omtrek"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Massa-energie ekwivalent"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Stelling van Pythagoras"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
-msgstr ""
+msgstr "Taylor reeks"
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Gauss Distribusie"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
-msgstr ""
+msgstr "Euler-Lagrange vergelyking"
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
-msgstr ""
+msgstr "Fundamentele stelling van infinitesimaalrekening"
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
-msgstr ""
+msgstr "Chaosvergelyking"
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
-msgstr ""
+msgstr "Euler se identiteit"
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
-msgstr ""
+msgstr "Newton se tweede wet"
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
-msgstr ""
+msgstr "Algemene relatiwiteit"
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
-msgstr ""
+msgstr "Spesiale relatiwiteit"
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standaard"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Skuinsdruk"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Vetdruk"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "swart"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blou"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "groen"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "rooi"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
-msgstr ""
+msgstr "aqua"
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
-msgstr ""
+msgstr "fuchsia"
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "grys"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "lemmetjie"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "maroen"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "vlootblou"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olyf"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "pers"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "silwer"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "Turkoois"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "geel"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr "koraal"
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr "bloedrooi"
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr "middernag"
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr "violet"
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr "oranje"
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr "oranjerooi"
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr "laventel"
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr "sneeu"
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr "seegroen"
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr "indigo"
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr "skelpienk"
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "RGB"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
-msgstr ""
+msgstr "rgba"
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
-msgstr ""
+msgstr "heksa"
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "Onsigbaar"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "Grootte"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "Font"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "links"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "Middel"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "regs"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Bevele"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formule"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Stoor tans dokument..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION-formule"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "FOUT : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Onverwagte karakter"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Onverwagte Simbool"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' verwag"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' verwag"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' verwag"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' verwag"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Links en regs simbole stem nie ooreen nie"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans', of 'serif' te wagte"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' gevolg deur 'n onverwagte Simbool"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Dubbele belyning is nie toegelaat nie"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Dubbele onder/boskrifte is nie toegelaat nie"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
-msgstr ""
+msgstr "Verwagte waarde"
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' verwag"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Kleur vereis"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'REGS' verwag"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Inhoud"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titel"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formuleteks"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Omranding"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Grootte"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Oo~rspronklike grootte"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~Pas by bladsy"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skalering"
diff --git a/source/af/svtools/messages.po b/source/af/svtools/messages.po
index 54ca82c881e..950e374b0b0 100644
--- a/source/af/svtools/messages.po
+++ b/source/af/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-04 20:47+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/af/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Ontdoen: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Herdoen: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Herhaal: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Ongeformateerde teks"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Ongformateerde teks (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bitmap-beeld (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface-metalêer (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rykteksformatering (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rykteksformatering (Ryk teks)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME-tekeningformaat"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView-biskaart/animasie (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Statusinligting uit Svx- interne skakel"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME-skakel (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape-boekmerk"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star-bedienerformaat"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star-objekformaat"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Minitoepassing-objek"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Inpropobjek"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0-objek"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0-objek"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0-objek"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0-objek"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0-objek"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0-objek"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0-objek"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw-objek"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0-objek"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0-objek"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0-objek"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc-objek"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0-objek"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0-objek"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart-objek"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0-objek"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0-objek"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage-objek"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0-objek"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0-objek"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath-objek"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0-objek"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0-objek"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint-objek"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Eenvoudige HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Formaat 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Formaat 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE-skakel)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word-objek"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet-objek"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office-dokumentobjek"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes-dokumentinligting"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx-dokument"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0-objek"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Grafika-objek"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer-objek"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web-objek"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer-meesterobjek"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw-objek"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress-objek"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc-objek"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart-objek"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math-objek"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows-metalêer"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Databron-objek"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Databrontabel"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL-navraag"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0-dialoog"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Skakel"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-formaat sonder opmerkings"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objek % kon nie ingevoeg word nie."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objek uit lêer % kon nie ingevoeg word nie."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Verdere objekte"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Onbekende brondokument"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Grepe"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KG"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MG"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GG"
@@ -501,1234 +501,1234 @@ msgstr "GG"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeries"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normaal"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Karakterstel"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Woordeboek"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinjin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Hale"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikaal"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhujin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Foonboek"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Foneties (alfanumeries eerste)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Foneties (alfanumeries laaste)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeries"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Woordeboek"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinjin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikaal"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Hale"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhujin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Foneties (alfanumeries eerste, gegroepeer volgens lettergrepe)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Foneties (alfanumeries eerste, gegroepeer volgens konsonante)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Foneties (alfanumeries laaste, gegroepeer volgens lettergrepe)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Foneties (alfanumeries laaste, gegroepeer volgens konsonante)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Lig"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Ligte skuinsdruk"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Gewoon"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Skuinsdruk"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Vetdruk"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Vet skuinsdruk"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Swart"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Swart skuinsdruk"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Boek"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Vet skuinsdruk"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Slank"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Slank vetdruk"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Slank vet kursief"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Slank vet skuinsdruk"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Slank kursief"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Slank skuinsdruk"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Ekstra lig kursief"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Ekstra lig kursief"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Skuinsdruk"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Semi-vetdruk"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Semi-vet skuinsdruk"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Die selfde font sal gebruik word vir die drukker en die skerm."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Hierdie is ’n drukfont. Die skermvoorkoms kan verskil."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Hierdie fontstyl sal nageboots word of die naaste ooreenstemmende styl sal gebruik word."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Hierdie font is nie geïnstalleer nie. Die naaste beskikbare font sal gebruik word."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Gaan na Begin"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Skuif links"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Skuif regs"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Skuif na einde"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Voeg by"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Horisontale liniaal"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Vertikale liniaal"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1-bis drempel"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1-bis-versagting"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4-bis-grysskaal"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4-bis-kleur"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8-bis-grysskaal"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8-bis-kleur"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24-bis- ware kleur"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Die beeld benodig omtrent %1 KG geheue."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Die beeld benodig omtrent %1 KG geheue; die lêergrootte is %2 KG."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Die lêergrootte is %1 KG."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "rekenaar"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "poort"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Ander CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Gereed"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Tydelik gestop"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Skrapping hangend"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Besig"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Inisialiseer tans"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Wagtend"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Warm tans op"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Verwerk tans"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Druk tans"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Vanlyn"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Fout"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Onbekende bediener"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Papierverstopping"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Nie genoeg papier nie"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Handmatige papierinvoer"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Papierprobleem"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "T/A aktief"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Afvoerrakkie vol"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Poeierink is min"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Geen poeierink"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Skrap bladsy"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Gebruikersoptrede nodig"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Onvoldoende geheue"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Deksel oop"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Kragspaarmodus"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Verstek drukker"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumente"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<geen>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Maatskappy"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Afdeling"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Naam"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Van"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Straat"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Land"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Poskode"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Stad"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titel"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posisie"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Adresvorm"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Voorletters"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Komplimentêre afsluiting"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel: tuis"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel: werk"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Faks"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-pos"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Gebruiker 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Gebruiker 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Gebruiker 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Gebruiker 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Provinsie"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel: kantoor"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Roeper"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Selfoon"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel: ander"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalender"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Nooi"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$ se $service$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME benodig 'n Java loop-omgewing (JRE) om hierdie taak uit te voer. Installeer en herbegin asseblief 'n JRE %PRODUCTNAME. %FAQLINK"
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME benodig 'n %BITNESS-bit Java loop-omgewing (JRE) om hierdie taak uit te voer. Installeer en herbegin asseblief 'n JRE %PRODUCTNAME. %FAQLINK"
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME benodig Oracle Java Ontwikkelingstelsel (JDK) om hierdie taak uit te voer. Installeer en herbegin asseblief %PRODUCTNAME. %FAQLINK"
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Die %PRODUCTNAME-opstelling is verander. Onder %PRODUCTNAME - Voorkeure - %PRODUCTNAME - Gevorderd, kies die Java-looptydomgewing wat u wil hê %PRODUCTNAME moet gebruik."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Die %PRODUCTNAME-opstelling is verander. Onder Nutsgoed - Opsies - %PRODUCTNAME - Gevorderd, kies die Java-looptydomgewing wat u wil hê %PRODUCTNAME moet gebruik."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME benodig ’n Java-looptydomgewing (JRE) om dié taak te verrig. Die gekose JRE werk nie. Kies asb. ’n ander weergawe of installeer ’n nuwe JRE en kies dit onder %PRODUCTNAME - Voorkeure - %PRODUCTNAME - Gevorderd."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME benodig ’n Java-looptydomgewing (JRE) om dié taak te verrig. Die gekose JRE werk nie. Kies asb. ’n ander weergawe of installeer ’n nuwe JRE en kies dit onder Nutsgoed - Opsies - %PRODUCTNAME - Gevorderd."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE vereis"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Kies JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE is defektief"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Bronkode"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Boekmerklêer"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafika"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Opstellinglêer"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Toepassing"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Databasistabel"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Stelsellêer"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word-dokument"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Hulplêer"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-dokument"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Argieflêer"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Log-lêer"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice-databasis"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0-meesterdokument"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice-beeld"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekslêer"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Skakel"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0-sjabloon"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel-dokument"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel-sjabloon"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batch-lêer"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Lêer"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Vouer"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Teksdokument"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Spreiblad"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Aanbieding"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Tekening"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-dokument"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Meesterdokument"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formule"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Databasis"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0-sigbladsjabloon"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0-tekening-sjabloon"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0-voorlegging-sjabloon"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0-teksdokument-sjabloon"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Plaaslike skyf"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Skyfaandrywer"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM-aandrywer"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Netwerkverbinding"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint-dokument"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint-sjabloon"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint-vertoning"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0-formule"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0-grafiek"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0-tekening"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0-sigblad"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0-voorlegging"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0-teksdokument"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0-meesterdokument"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML-dokument"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument-databasis"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument-tekening"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument-formule"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument-meesterdokument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument-voorlegging"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument-sigblad"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument-teks"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument-sigbladsjabloon"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument-tekeningsjabloon"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument-voorleggingsjabloon"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument-tekssjabloon"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME-uitbreiding"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell-speltoetser"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen-woordafbreker"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes-tesourus"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Lys van geïgnoreerde woorde"
diff --git a/source/af/svx/messages.po b/source/af/svx/messages.po
index 9b943d85b4b..5b008062f73 100644
--- a/source/af/svx/messages.po
+++ b/source/af/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-04 20:47+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/af/>\n"
"Language: af\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1560976220.000000\n"
#. 3GkZj
@@ -16332,11 +16332,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Vergelyk metatekens"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_Opmerkings"
+msgid "Comme_nts"
+msgstr "_Notas"
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/af/sw/messages.po b/source/af/sw/messages.po
index 01aa0f601b9..359469d98c9 100644
--- a/source/af/sw/messages.po
+++ b/source/af/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-04 20:47+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/af/>\n"
"Language: af\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1560976448.000000\n"
#. v3oJv
@@ -98,13 +98,13 @@ msgstr "Tabelle moet nie opskrifte bevat nie."
#: sw/inc/AccessibilityCheckStrings.hrc:29
msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
-msgstr ""
+msgstr "Hou die opskrifvlakke georden. Opskrifvlak % LEVEL_CURRENT% mag nie na %LEVEL_PREV% wees nie."
#. gkDzg
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr ""
+msgstr "Vermy \"fontworks\" in u dokumente. Maak seker dat u dit gebruik om 'n voorbeeld of 'n ander betekenislose teks te vertoon."
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -614,13 +614,13 @@ msgstr "Genommerde paragrawe"
#: sw/inc/inspectorproperties.hrc:31
msgctxt "RID_CHAR_DIRECTFORMAT"
msgid "Character Direct Formatting"
-msgstr ""
+msgstr "Karakter Direkte Formattering"
#. fYAUc
#: sw/inc/inspectorproperties.hrc:32
msgctxt "RID_PARA_DIRECTFORMAT"
msgid "Paragraph Direct Formatting"
-msgstr ""
+msgstr "Paragraaf Direkte Formatering"
#. YUbUQ
#. Format names
@@ -5750,19 +5750,19 @@ msgstr "Af"
#: sw/inc/strings.hrc:646
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Klik om inhoud se sigbaarheid te wissel"
#. 44jEc
#: sw/inc/strings.hrc:647
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
-msgstr ""
+msgstr "regsmuisklik om subvlakke in te sluit"
#. kDbnu
#: sw/inc/strings.hrc:648
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Klik om inhoud se sigbaarheid te wissel"
#. rkD8H
#: sw/inc/strings.hrc:649
@@ -17438,86 +17438,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr "Voer in die aantal rye wat u in die tabel wil hê."
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr "Waarskuwing: groot tabelle kan die werktempo en versoenbaarheid beïnvloed"
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Algemeen"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "Opskri_f"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr "Voeg in 'n opskrif-ry in die tabel."
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Herhaal o_pskrifrye op nuwe bladsye"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr "Herhaal die opskrif vir die tabel bo-aan volgende bladsye,as die tabel oor meer as een bladsy strek."
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Moenie t_abel verdeel oor bladsye nie"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr "Voorkom dat die tabel oor meer as een bladsy span."
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr "Kies die aantal rye wat u wil gebruik vir die opskrif."
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Op_skrifrye:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Opsies"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr "Vertoon 'n voorskou van die huidige seleksie."
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr "Selekteer 'n voorafgedefinieerde styl vir die nuwe tabel."
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Style"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr "Voeg 'n tabel in die dokument in. U kan ook op die pyltjie klik, trek om die aantal rye en kolomme in die tabel te kies en dan in die laaste sel te klik."
@@ -20031,289 +20037,289 @@ msgid "Text"
msgstr "Teks"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Wissel meesteraansig"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Wissel tussen die model aansig en die normale aansig wanneer die dokument oop is."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr "Gaan na bladsy"
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr "Voer in die bladsynommer en druk \"Enter\". Gebruik die pyle om vorentoe of agtertoe na 'n bladsy te beweeg."
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Aansig vir inhoudnavigering"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr "Wissel tussen die vertoon van alle kategorië in die Navigator en die geselekteerde kategorie."
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Kop"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr "Verskuif die merker na die kopteks, of van die kopteks na die dokument teks area."
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Voet"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr "Verskuif die merker na die voetteks, of van die voetteks na die dokument teks area."
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Ankerpunt ↔ Teks"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr "Spring van die voetnota teks en die voetnota anker."
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Definieer onthouplek"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Klik hier om 'n merker op die huidige wyserposisie in te stel. U kan tot vyf vlaggies so definieer. Om na 'n vlaggie te spring, klik op die Navigasiesimbool, dan op die Vlaggie-simbool in die navigasievenster en laastens op die vorige of volgende simbool."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Opskrifvlakke gewys"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr "Klik op hierdie ikoon en kies dan die aantal opskrifvlakke wat in die Navigator vertoon moet word."
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Lysboksie aan/af"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr "Vertoon of versteek die Navigator lys."
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Verhef vlak"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Verhoog die struktuurvlak van die geselekteerde opskrif en die ondergeskikte opskrifte met een vlak. Om die struktuurvlak van slegs die geselekteerde opskrif te verhoog, hou die Ctrl-sleutel ingedruk en klik dan op hierdie ikoon."
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Verlaag vlak"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Verlaag die struktuurvlak van die geselekteerde opskrif en die ondergeskikte opskrifte met een vlak. Om slegs die geselekteerde opskrif se struktuurvlak te verlaag, hou die Ctrl-sleutel ingedruk en klik dan op hierdie ikoon."
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Verhef hoofstuk"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Verskuif die geselekteerde opskrif, en die teks daaronder, een struktuurposisie opwaarts in die Navigator en in die dokument. Om slegs die geselekteerde opskrif te skuif en nie die geassosieerde teks, hou Ctrl ingedruk en klik dan op die simbool."
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Verlaag hoogstuk"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Verskuif die geselekteerde opskrif, en die teks daaronder, een struktuurposisie afwaarts in die Navigator en in die dokument. Om slegs die geselekteerde opskrif te skuif en nie die geassosieerde teks, hou Ctrl ingedruk en klik dan op die simbool."
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Sleepmodus"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr "Spesifiseer die trek-en-los-opsies vir die invoeging van elemente vanaf die Navigator in 'n dokument, byvoorbeeld as u dit as hiperskakels invoeg. Klik op hierdie ikoon en kies dan die opsie wat u wil hê."
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Dokument"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Aktiewe venster"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Wissel meesteraansig"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Wissel tussen die model aansig en die normale aansig wanneer die dokument oop is."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Redigeer"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr "Word gebruik om die komponent wat in die Navigator gekies is, te wysig. As die keuse 'n lêer is, word hierdie lêer oopgemaak vir redigering. As die keuse 'n Indeks is, word die \"Indeks\"-dialoog oopgemaak."
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Werk by"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Klik en kies die inhoud wat u wil wysig."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Voeg in"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Voeg in 'n lêer, 'n indeks of 'n nuwe dokument in die hoofdokument."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Stoor inhoud ook"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr "Stoor die inhoud van die gekoppelde lêers in die hoofdokument as 'n kopie. Dit verseker dat die huidige dokumentinhoud beskikbaar is, selfs al is daar nie toegang tot die gekoppelde lêers nie."
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Skuif op"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr "Skuif die seleksie een posisie op in die Navigator lys."
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Skuif af"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr "Skuif die seleksie een posisie af in die Navigator lys."
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Seleksie"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Indekse"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Skakels"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Alle"
@@ -23683,7 +23689,7 @@ msgstr "Selfde inhoud:"
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:95
msgctxt "pagefooterpanel|footertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Kantlyne:"
#. xepvQ
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:107
@@ -23773,7 +23779,7 @@ msgstr "Selfde inhoud:"
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:95
msgctxt "pageheaderpanel|headertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Kantlyne:"
#. PAGRJ
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:107
diff --git a/source/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po
index bd5a1711e5a..a3f0d619b28 100644
--- a/source/am/helpcontent2/source/text/scalc/01.po
+++ b/source/am/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2020-10-30 22:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/am/>\n"
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr "መደበኛ አገላለጽ መጠቀሚያ እና የታቀፉ ተግባሮች መግለጫ አጠቃቀም"
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sdraw.po b/source/am/helpcontent2/source/text/sdraw.po
index 815b7d4e5cf..034c9e7e061 100644
--- a/source/am/helpcontent2/source/text/sdraw.po
+++ b/source/am/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-05-16 18:48+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/00.po b/source/am/helpcontent2/source/text/shared/00.po
index 059db7a1772..8b8f8800766 100644
--- a/source/am/helpcontent2/source/text/shared/00.po
+++ b/source/am/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-17 21:27+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "ጥሩ ምሳሌ ለ ተዛማጅ ዳታቤዙ ሲይዝ ነው ደንበኛ: ግዢ: እና የ ፋክቱር ሰንጠረዥ: በ ፋክቱር ሰንጠረዥ ውስጥ ትክክለኛ ደንበኛ የለም: ወይንም የ ግዢ ዳታ: ነገር ግን ሰንጠረዡ ማመሳከሪያዎች ይዟል ከ ተዛማጅ አገናኝ ጋራ: ወይንም ተዛማጅ ከ ደንበኛ አንጻር እና የ ግዢ ሰንጠረዥ ሜዳዎች: (ለምሳሌ: የ ደንበኛ መለያ ሜዳ ከ ደንበኛ ሰንጠረዥ ውስጥ)."
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>በ እውነት-መመዝገቢያ: መግለጫ</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "በ እውነት-መመዝገቢያ"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index d3a05322822..0bd180c2539 100644
--- a/source/am/helpcontent2/source/text/shared/01.po
+++ b/source/am/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-03-18 16:16+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/am/>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr "ለ አንዳንድ የ ሰነድ አይነቶች: እርስዎ መምረጥ ይችላሉ እንደ brochure ለማተም"
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr ""
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr ""
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,14 +9376,14 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "በ ዋናው መመልከቻ እና በ መደበኛ መመልከቻ መካከል መቀያየሪያ"
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgstr ""
#. 3Lq2G
#: 02110000.xhp
@@ -9430,14 +9412,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr ""
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgstr ""
#. nRB3E
#: 02110000.xhp
@@ -9466,14 +9448,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">ይጫኑ እና ይምረጡ ማሻሻል የሚፈልጉትን ይዞታዎች</ahelp>"
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgstr ""
#. F4J5u
#: 02110000.xhp
@@ -9601,14 +9583,14 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "እርስዎ እንዲሁም ፋይሎች ወደ ዋናው ሰነድ ፋይል በ መጎተት ማስገባት ይችላሉ በ ዋናው መመልከቻ በ መቃኛ ውስጥ"
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgstr ""
#. ijR7M
#: 02110000.xhp
@@ -9709,14 +9691,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">የ ተገናኙ ፋይሎች ይዞታዎችን ኮፒ ማስቀመጫ በ ዋናው ሰነድ ውስጥ: ይህ ያረጋግጣል የ አሁኑ ይዞታዎች ዝግጁ እንደሆኑ የ ተገናኙ ፋይሎች ጋር መድረስ በማይቻል ጊዜ </ahelp>"
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgstr ""
#. ADEyJ
#: 02110000.xhp
@@ -9745,14 +9727,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">የ ተመረጠውን በ መቃኛው ዝርዝር ውስጥ አንድ ደረጃ ወደ ላይ ማንቀሳቀሻ </ahelp> እርስዎ እንዲሁም ከ ዝርዝር ውስጥ ማስገቢያዎችን በ መጎተት እና በ መጣል ማንቀሳቀስ ይችላሉ: እርስዎ የ ጽሁፍ ክፍል ወደ ሌላ የ ጽሁፍ ክፍል ካንቀሳቀሱ የ ጽሁፍ ክፍሎቹ ይዋሀዳሉ"
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgstr ""
#. GqEUL
#: 02110000.xhp
@@ -9781,14 +9763,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">የ ተመረጠውን በ መቃኛው ዝርዝር ውስጥ አንድ ደረጃ ወደ ላይ ማንቀሳቀሻ </ahelp> እርስዎ እንዲሁም ከ ዝርዝር ውስጥ ማስገቢያዎችን በ መጎተት እና በ መጣል ማንቀሳቀስ ይችላሉ: እርስዎ የ ጽሁፍ ክፍል ወደ ሌላ የ ጽሁፍ ክፍል ካንቀሳቀሱ የ ጽሁፍ ክፍሎቹ ይዋሀዳሉ"
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
-msgstr "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgstr ""
#. DLEGF
#: 02110000.xhp
diff --git a/source/am/helpcontent2/source/text/shared/02.po b/source/am/helpcontent2/source/text/shared/02.po
index a7e9d13955a..9691c208f48 100644
--- a/source/am/helpcontent2/source/text/shared/02.po
+++ b/source/am/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-02-05 07:21+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/am/>\n"
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">ማስረጊያውን መቀነሻ</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11059,14 +11059,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr ""
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">ማስረጊያ መጨመሪያ</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11131,14 +11131,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/am/helpcontent2/source/text/shared/optionen.po b/source/am/helpcontent2/source/text/shared/optionen.po
index ff6999c6e74..71dd8e298ea 100644
--- a/source/am/helpcontent2/source/text/shared/optionen.po
+++ b/source/am/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-12-10 01:08+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11860,32 +11860,32 @@ msgctxt ""
msgid "Snap"
msgstr "መቁረጫ"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "መስመሮች ላይ መቁረጫ"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "እርስዎ ይህን ማሰናጃ መግለጽ ይችላሉ በ መጠቀም <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph> መቁረጫ በ መቁረጫ መስመሮች ላይ </emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph> መቁረጫ በ መቁረጫ መስመሮች ላይ </emph></link></caseinline><defaultinline><emph> መቁረጫ በ መቁረጫ መስመሮች ላይ </emph></defaultinline></switchinline> ምልክት: ዝግጁ ነው በ <emph> ምርጫ </emph> መደርደሪያ በ ማቅረቢያ ወይንም በ መሳያ ሰነድ ውስጥ"
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr ""
#. eUCCJ
#: 01070300.xhp
diff --git a/source/am/helpcontent2/source/text/simpress/02.po b/source/am/helpcontent2/source/text/simpress/02.po
index da6b50eaece..a8feb5b977f 100644
--- a/source/am/helpcontent2/source/text/simpress/02.po
+++ b/source/am/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-09 15:05+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5695,41 +5695,41 @@ msgctxt ""
msgid "Exit all groups"
msgstr "ከሁሉም ቡድኖጭ መውጫ"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "መቁረጫ መስመሮች ላይ መቁረጫ"
+msgid "Snap to Snap Guides"
+msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">መቁረጫ መስመሮች ላይ መቁረጫ</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "መቁረጫ መስመሮች ላይ መቁረጫ"
+msgid "Snap to Snap Guides"
+msgstr ""
#. oXWsX
#: 13150000.xhp
diff --git a/source/am/helpcontent2/source/text/swriter.po b/source/am/helpcontent2/source/text/swriter.po
index ebdd87aee48..24352a70236 100644
--- a/source/am/helpcontent2/source/text/swriter.po
+++ b/source/am/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-07-07 17:13+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "ከ ግራ-ወደ-ቀኝ"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">ከግራ ወደ ቀኝ ምልክት</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "ከ ቀኝ-ወደ-ግራ"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">ከቀኝ ወደ ግራ ምልክት</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/am/helpcontent2/source/text/swriter/01.po b/source/am/helpcontent2/source/text/swriter/01.po
index aeb32999e41..1bd7be4e0ea 100644
--- a/source/am/helpcontent2/source/text/swriter/01.po
+++ b/source/am/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-12-09 17:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "መቃኛ"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">መክፈቻ የ <emph>የ ደብዳቤ ማዋሀጃ ተቀባዮች</emph> ንግግር</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/guide.po b/source/am/helpcontent2/source/text/swriter/guide.po
index 6afb320e925..fb88f5cfe78 100644
--- a/source/am/helpcontent2/source/text/swriter/guide.po
+++ b/source/am/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-12-09 17:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7792,50 +7792,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">አንቀጽ ማስረጊያ</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr "የ መለኪያ ክፍል ለ መቀየር: ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች </item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያዎች - ምርጫ </item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME መጻፊያ - ባጠቃላይ </item> እና ከዛ ይምረጡ አዲሱን የ መለኪያ ክፍል ማሰናጃ ቦታ ውስጥ"
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "እርስዎ ለ አሁኑ አንቀጽ ማስረጊያ መቀየር ይችላሉ: ወይንም ለ ሁሉም ለ ተመረጡት አንቀጾች ወይንም ለ አንቀጽ ዘዴ"
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "እርስዎ ለ አሁኑ አንቀጽ ማስረጊያ መቀየር ይችላሉ: ወይንም ለ ሁሉም ለ ተመረጡት አንቀጾች ወይንም ለ አንቀጽ ዘዴ"
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "ይምረጡ <item type=\"menuitem\"> አቀራረብ - አንቀጽ - ማስረጊያ & ክፍተት </item> ማስረጊያውን ለ መቀየር ለ አሁኑ አንቀጽ ወይንም ለሁሉም ለተመረጡት አንቀጾች: እንዲሁም ይችላሉ <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\"> ማስመሪያ በ መጠቀም ማስረጊያ ማሰናጃ </link>"
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "እርስዎ ይችላሉ የ <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\"> ማስረጊያ ማሰናጃ ማስመሪያ በ መጠቀም </link>: ማስመሪያውን ለማሳየት ይምረጡ <item type=\"menuitem\"> መመልከቻ - ማስመሪያ </item>:"
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "ይምረጡ <item type=\"menuitem\"> አቀራረብ - አንቀጽ - ማስረጊያ & ክፍተት </item> ማስረጊያውን ለ መቀየር ለ አሁኑ አንቀጽ ወይንም ለሁሉም ለተመረጡት አንቀጾች: እንዲሁም ይችላሉ <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\"> ማስመሪያ በ መጠቀም ማስረጊያ ማሰናጃ </link>"
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "እርስዎ ይችላሉ የ <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\"> ማስረጊያ ማሰናጃ ማስመሪያ በ መጠቀም </link>: ማስመሪያውን ለማሳየት ይምረጡ <item type=\"menuitem\"> መመልከቻ - ማስመሪያ </item>:"
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "በ ቀኝ-ይጫኑ አንቀጹን እና ይምረጡ <item type=\"menuitem\"> ማረሚያ የ አንቀጽ ዘዴ - ማስረጊያ & ክፍተት </item> ለ መቀየር ማስረጊያውን ለ ሁሉም አንቀጾች ተመሳሳይ የ አንቀጽ ዘዴ ያላቸውን"
+msgid "Positioning indents"
+msgstr ""
#. qUxKq
#: indenting.xhp
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "ማስረጊያዎች የሚሰሉት ከ ግራ እና ከ ቀኝ የ ገጽ ኅዳጎች አንፃር ነው: እርስዎ ከ ፈለጉ አንቀጽ እንዲስፋፋ ከ ፈለጉ ወደ ገጽ ኅዳግ ውስጥ: አሉታዊ ቁጥር ያስገቡ"
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr "የ መለኪያ ክፍል ለ መቀየር: ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች </item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያዎች - ምርጫ </item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME መጻፊያ - ባጠቃላይ </item> እና ከዛ ይምረጡ አዲሱን የ መለኪያ ክፍል ማሰናጃ ቦታ ውስጥ"
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "ማስረጊያዎች የ ተለያዩ ናቸው የ መጻያ አቅጣጫ በ ተመለከተ: ለምሳሌ: ይመልከቱ ከ <item type=\"menuitem\">ጽሁፍ በፊት </item>የ ማስረጊያ ዋጋ ከ ግራ-ወደ-ቀኝ ቋንቋዎች: የ ግራ ጠርዝ ለ አንቀጽ የሚሰርገው ከ ግራ ገጽ ኅዳግ አንፃር ነው: ከ ቀኝ-ወደ-ግራ ቋንቋዎች: የ ቀኝ ጠርዝ ለ አንቀጽ የሚሰርገው ከ ቀኝ ገጽ ኅዳግ አንፃር ነው:"
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "ለ ተንሳፋፊ ማስረጊያ አዎንታዊ ዋጋ ያስገቡ ከ <item type=\"menuitem\"> ጽሁፍ በፊት </item> እና አሉታዊ ዋጋ ያስገቡ ለ <item type=\"menuitem\"> መጀመሪያው መስመር </item>:"
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,14 +10294,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "በ ሰንጠረዥ ውስጥ ቁጥር መለያ ማብሪያ ወይንም ማጥፊያ"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>ቁጥሮች: ራሱ በራሱ መለያ በ ጽሁፍ ሰንጠረዥ ውስጥ</bookmark_value> <bookmark_value>ሰንጠረዥ: ቁጥር መለያ</bookmark_value> <bookmark_value>ቀኖች: አቀራረብ ራሱ በራሱ በ ሰንጠረዥ ውስጥ</bookmark_value> <bookmark_value>መለያ: ቁጥሮች</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10267,14 +10330,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "ከ እነዚህ አንዱን ይስሩ:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "በ ቀኝ-ይጫኑ በ ሰንጠረዥ ክፍል ውስጥ እና ይምረጡ <item type=\"menuitem\">ቁጥር ማስታወሻ </item> ይህ ገጽታ በሚበራ ጊዜ: ምልክት ማድረጊያ ይታያል ከ ፊት ለ ፊት በ <item type=\"menuitem\">ቁጥር ማስታወሻ</item> ትእዛዝ ውስጥ"
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr "ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች </caseinline><defaultinline> መሳሪያዎች - ምርጫዎች </defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME መጻፊያ - ሰንጠረዥ </item> እና ይምረጡ ወይንም ያጽዱ የ <item type=\"menuitem\"> ቁጥር መለያ </item> ሳጥን ውስጥ ምልክት ያድርጉ"
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12211,6 +12292,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "እርስዎ ሰነድ በሚፈጥሩ ጊዜ የሚያትሙት እንደ brochure የ ምስል አቀማመጥ ይጠቀሙ ለ ገጾች: መጻፊያ የ brochure እቅድ ይፈጽማል እርስዎ ሰነዱን በሚያትሙ ጊዜ"
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12256,50 +12355,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "የ እርስዎ ማተሚያ በ ድርብ የሚያትም ከሆነ: እና brochures ሁልጊዜ በ መሬት አቀማመጥ ዘዴ ለማተሚያ ስለሚጠቀም: እርስዎ መጠቀም አለብዎት የ \"ድርብ - አጭር ጠርዝ\" ማሰናጃ በ እርስዎ ማተሚያ ማሰናጃ ንግግር ውስጥ"
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
-msgstr "ይመለሱ ወደ <emph>ማተሚያ</emph> ንግግር እና ይጫኑ የ <emph>ገጽ እቅድ </emph> tab ገጽ ላይ"
+msgid "Return to <emph>Print</emph> dialog."
+msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
-msgstr "ይምረጡ <emph>Brochure</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
+msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "ለ ማተሚያ ራሱ በራሱ በ ሁለቱም ገጾች በኩል ለሚያትም: እርስዎ ይወስኑ እንዲያካትት \"ሁሉንም ገጾች\"."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "ይጫኑ <emph> እሺ </emph>"
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "የ %PRODUCTNAME ማተሚያ ገጾች በ ተሳሳተ ደንብ ከሆነ: ይክፈቱ የ <emph> ምርጫ </emph> tab ገጽ: ይምረጡ <emph> ማተሚያ በ ተቃራኒ ደንብ የ ገጽ ደንብ </emph>: እና ከዛ ሰነዱን እንደገና ያትሙ"
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">ፋይል - የ ህትመት ቅድመ እይታ</link>."
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,32 +12724,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">በርካታ ገጾችን በ አንድ ወረቀት ላይ ማተሚያ</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
-msgstr "በ <emph> ገጽ እቅድ </emph> tab ገጽ ውስጥ የ <item type=\"menuitem\"> ፋይል - ማተሚያ </item> ንግግር ውስጥ ምርጫ አለ በርካታ ገጾችን በ አንድ ወረቀት ውስጥ ለማተም"
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
+msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
-msgstr "ይምረጡ <emph> ፋይል - ማረሚያ </emph> እና ይጫኑ የ <emph> ገጽ እቅድ </emph> tab"
+msgid "Choose <menuitem>File - Print</menuitem>"
+msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "ከ እነዚህ አንዱን ይስሩ:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/am/sc/messages.po b/source/am/sc/messages.po
index 085399682df..eacea3dac68 100644
--- a/source/am/sc/messages.po
+++ b/source/am/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-06-05 20:56+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/am/>\n"
@@ -28626,38 +28626,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr "እርስዎ ክፍሎች ከ ቁራጭ ሰሌዳ ውስጥ ወደ ባዶ ያልሆነ የ ክፍል መጠን በሚለጥፉ ጊዜ: የ ማስጠንቀቂያ መግለጫ ማሳያ "
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "ለ ጽሁፍ አቀራረብ የ ማተሚያ መለኪያ ይጠቀሙ"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "የ ማተሚያ መለኪያ ይፈጸም እንደሆን መወሰኛ በ ማተሚያው ላይ እና በ መመልከቻው ማሳያ አቀራረብ ላይ"
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "የተመ_ረጠውን ማድመቂያ በ አምድ/ረድፍ ራስጌዎች ውስጥ"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr "በ ተመረጡት አምዶች እና ረድፎች ውስጥ የ አምድ እና የ ረድፍ ራስጌዎች ይደምቁ እንደሆን መወሰኛ "
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "ማመሳከሪያዎችን ማሻሻያ የ ክፍሎች መጠን በሚለይ ጊዜ"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "ማስገቢያ ማሰናጃዎች"
diff --git a/source/am/sfx2/messages.po b/source/am/sfx2/messages.po
index 1f722e32896..1deb629a97c 100644
--- a/source/am/sfx2/messages.po
+++ b/source/am/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-05-11 01:09+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/am/>\n"
@@ -1641,286 +1641,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "ክፍል መዝጊያ"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "ማሳረፊያ"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "አታሳርፍ"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "ተጨማሪ ምርጫዎች"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "የ ጎን መደርደሪያ መዝጊያ"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "የ ጎን መደርደሪያ ማሰናጃዎች"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "ማስተካከያ"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "ነባሩን መመለሻ"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "የ ጎን መደርደሪያ መዝጊያ"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "አሊዛሪን"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "የ ንብ እንጀራ"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "ሰማያዊ ክብ"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "የ ንድፍ እቅድ"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "ደማቅ ሰማያዊ"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "ቀይ"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "ትኩረት"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "የ ጫካ ወፍ"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "ማስደነቂያ"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "ቀስቃሽ"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "ብርሃን"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "ለምለም አረንጓዴ"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "ትልቅ ከተማ"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "እኩለ ሌሊት ሰማያዊ"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "ተፈጥሮ ማሳያ"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "እርሳስ"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "ፒያኖ"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "ቦርሳ"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "ሂደት"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "ፀሐይ መጥለቂያ"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "የ ጥንት"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "ደማቅ"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "ስራ ማመልከቻ"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "መቀጠያ"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "ነባር"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "ዘመናዊ"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "ዘመናዊ የ ንግድ ደብዳቤ sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "ዘመናዊ የ ንግድ ደብዳቤ serif"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "የ ንግድ ካርድ ከ አርማ ጋር"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "ማስወገጃ"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "ሁሉንም ማጽጃ"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "የ መግቢያ ቃል እርዝመት"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "እርስዎ ያስገቡት የ መግቢያ ቃል የ መረጃ መለዋወጫ ችግር ይፈጥራል: እባክዎን የ መግቢያ ቃል ያስገቡ ያነሰ ከ 52 ባይትስ: ወይንም የ በለጠ ከ 55 ባይትስ:"
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4142,6 +4106,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "ማጥፊያ..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/am/starmath/messages.po b/source/am/starmath/messages.po
index affc11e6345..cae8f713da7 100644
--- a/source/am/starmath/messages.po
+++ b/source/am/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2019-07-20 17:27+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "ወይንም"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+ ምልክት"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "- ምልክት"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+- ምልክት"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "-+ ምልክት"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "ቡሊያን አይደለም"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "መደመሪያ +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "መቀነሻ -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "ማባዣ (ነጥብ)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "ማባዣ (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "ማባዣ (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "ማካፈያ (ስላሽ)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "ማካፈያ (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "ማካፈያ (ክፍልፋይ)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "ክብ ውስጡ ስላሽ"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "ክብ ውስጡ ነጥብ"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "ክብ ውስጡ መቀነስ"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "ክብ ውስጡ መደመር"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "የ ቴንሰር እቃ"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "ቡሊያን እና"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "ቡሊያን ወይንም"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "እኩል ነው"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "እኩል አይደለም"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "ያንሳል"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "ይበልጣል"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "ያንሳል ወይንም እኩል ነው ከ"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "ይበልጣል ወይንም እኩል ነው ከ"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "ያንሳል ወይንም እኩል ነው ከ"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "ይበልጣል ወይንም እኩል ነው ከ"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "በጣም ያንሳል"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "በጣም ይበልጣል"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "የ ተገለጸው እንደ"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "ኮንግረንት ነው ከ"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "በግምት እኩል ነው"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "ተመሳሳይ ነው"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "ተመሳሳይ ወይም እኩል ነው"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "ተመጣጣኝ ነው ከ"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "ኦርቶጎናል ነው ለ"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "አጓዳኝ ነው ለ"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "ወደ"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "ተመሳሳይ ወደ (ግራ)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "ተመሳሳይ ወደ (ቀኝ)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "ውስጥ ነው"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "ውስጥ አይደለም"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "አለው"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "መዋሀድ"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "መገናኛ"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "ልዩነት"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "ንዑስ ስብስብ"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "ንዑስ ስብስብ ወይንም እኩል ነው ከ"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "ትልቅ ስብስብ"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "ትልቅ ስብስብ ወይንም እኩል ነው"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "ንዑስ ስብስብ አይደለም"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "ንዑስ ስብስብ አይደለም ወይንም እኩል ነው"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "ትልቅ ስብስብ አይደለም"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "ትልቅ ስብስብ አይደለም ወይንም እኩል ነው"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "ፍጹም ዋጋ"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "ፋክቶሪያል"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "ስኴር ሩት"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N-ኛ ሩት"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "ኤክስፖኔንሺያል ተግባር"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "ኤክስፖኔንሺያል ተግባር"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "የ ተፈጥሯዊ ሎጋሪዝም"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "ሎጋሪዝም"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "ሳይን"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "ኮሳይን"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "ታንጀንት"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "ኮታንጀንት"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "አርክሳይን"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "አርክ ኮሳይን"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "አርክታንጀንት"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "አርክኮታንጀንት"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "ሀይፐርቦሊክ ሳይን"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "ሀይፐርቦሊክ ኮሳይን"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "ሀይፐርቦሊክ ታንጀንት"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "ሀይፐርቦሊክ ኮታንጀንት"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "የ ሀይፐርቦሊክ ሳይን ቦታ"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "የ ሀይፐርቦሊክ ኮሳይን ቦታ"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "የ ሀይፐርቦሊክ ታንጀንት ቦታ"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "የ ሀይፐርቦሊክ ኮታንጀንት ቦታ"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "ድምር"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "ድምር በትንንሹ ዝቅ ብሎ ከ ታች መጻፊያ"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "ድምር በትንንሹ ከፍ ብሎ ከላይ መጻፊያ"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "ድምር ወደ ላይ ከፍ/ዝቅ አድርጎ መጻፊያ"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "ውጤት"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "ውጤት በትንንሹ ዝቅ ብሎ ከ ታች መጻፊያ"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "ውጤት በትንንሹ ከፍ ብሎ ከላይ መጻፊያ"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "ውጤት በትንንሹ ከፍ/ዝቅ ብሎ መጻፊያ"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Coproduct"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "በትንንሹ ዝቅ ብሎ መቀላቀያ ከ ታች መጻፊያ"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "በትንንሹ ከፍ ብሎ Coproduct ከላይ መጻፊያ"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Coproduct በትንንሹ ከፍ/ዝቅ ብሎ መጻፊያ"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Limes"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "ድንበር በትንንሹ ዝቅ ብሎ ከ ታች መጻፊያ"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Limes ወደ ላይ ከፍ አድርጎ ከላይ መጻፊያ"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Limes ወደ ላይ ከፍ/ዝቅ አድርጎ መጻፊያ"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "አነስተኛ መጠን"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "አነስተኛ መጠን በትንንሽ ዝቅ ብሎ ከ ታች መጻፊያ"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "አነስተኛ መጠን በትንንሽ ከፍ ብሎ ከ ላይ መጻፊያ"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "አነስተኛ መጠን በትንንሽ ከፍ/ዝቅ ብሎ መጻፊያ"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "አነስተኛ መጠን"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "አነስተኛ መጠን በትንንሽ ዝቅ ብሎ ከ ታች መጻፊያ"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "አነስተኛ መጠን በትንንሽ ከፍ ብሎ ከ ላይ መጻፊያ"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "አነስተኛ መጠን በትንንሽ ከፍ/ዝቅ ብሎ መጻፊያ"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "እዛ ነበር"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "እዛ አልነበረም"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "ለ ሁሉም"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "ኢንትግራል"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "ኢንትግራል ከ ታች በትንንሽ ፊደል ዝቅ ብሎ መጻፊያ"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "ኢንትግራል ከ ላይ በትንንሽ ፊደል ከፍ ብሎ መጻፊያ"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "ኢንትግራል ዝቅ/ከፍ ብሎ በትንንሽ ፊደል መጻፊያ"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "ድርብ ኢንትግራል"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "ድርብ ኢንትግራል ከ ታች በትንንሽ ፊደል ዝቅ ብሎ መጻፊያ"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "ድርብ ኢንትግራል ከ ላይ በትንንሽ ፊደል ከፍ ብሎ መጻፊያ"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "ድርብ ኢንትግራል ዝቅ/ከፍ ብሎ በትንንሽ ፊደል መጻፊያ"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "ትሪፕል ኢንትግራል"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "ትሪፕል ኢንትግራል ከ ታች በትንንሽ ፊደል ዝቅ ብሎ መጻፊያ"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "ትሪፕል ኢንትግራል ከ ላይ በትንንሽ ፊደል ከፍ ብሎ መጻፊያ"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "ትሪፕል ኢንትግራል ከፍ/ዝቅ ብሎ በትንንሽ ፊደል መጻፊያ"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "ክብ ኢንትግራል"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "ክብ ኢንትግራል ከ ታች በትንንሽ ፊደል ዝቅ ብሎ መጻፊያ"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "ክብ ኢንትግራል ከ ላይ በትንንሽ ፊደል ከፍ ብሎ መጻፊያ"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "ክብ ኢንትግራል ከፍ/ዝቅ ብሎ በትንንሽ ፊደል መጻፊያ"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "ድርብ ክብ ኢንትግራል"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "ድርብ ክብ ኢንትግራል ከ ታች በትንንሽ ፊደል ዝቅ ብሎ መጻፊያ"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "ድርብ ክብ ኢንትግራል ከ ላይ በትንንሽ ፊደል ከፍ ብሎ መጻፊያ"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "ድርብ ክብ ኢንትግራል ከፍ/ዝቅ ብሎ በትንንሽ ፊደል መጻፊያ"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "ትሪፕል ክብ ኢንትግራል"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "ትሪፕል ክብ ኢንትግራል ከ ታች በትንንሽ ፊደል ዝቅ ብሎ መጻፊያ"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "ትሪፕል ክብ ኢንትግራል ከ ላይ በትንንሽ ፊደል ከፍ ብሎ መጻፊያ"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "ትሪፕል ክብ ኢንትግራል ከፍ/ዝቅ ብሎ በትንንሽ ፊደል መጻፊያ"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "አኪዩት አክሰንት"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "መስመር ከ ላይ"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "ብሬቬ"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "የ ተገለበጠ ስርከምፍሌክስ"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "ክብ"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "ነጥብ"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "ድርብ ነጥብ"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "ሶስት ነጥብ"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "ግሬቭ አክሰንት"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "ስርከምፍሌክስ"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "ቲልዴ"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "የ አቅጣጫ ቀስት"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "ሀርፑን"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "መስመር ከ ታች"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "መስመር ከላይ"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "መስመር በላዩ ላይ"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "ግልጽ"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "ፊደል ማድመቂያ"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "ፊደል ማዝመሚያ"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "እንደገና መመጠኛ"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "ፊደል መቀየሪያ"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "ጥቁር ቀለም"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "ሰማያዊ ቀለም"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "አረንጓዴ ቀለም"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "ቀይ ቀለም"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "ቀለም ግራጫ"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "ቀለም ሎሚ"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "ቀለም የ ሸክላ ቀለም"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "ቀለም ሰማያዊ"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "ቀለም ወይራ"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "ቀለም ወይን ጠጅ"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "ቀለም ብር"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "አረንጓዴ ሰማያዊ ቀለም"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "ቀለም ቢጫ"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "የ ቡድን ቅንፎች"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "ክብ ቅንፎች"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "ስኴር ቅንፎች"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "ድርብ ስኴር ቅንፎች"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "ብሬስስ"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "አንግል ቅንፎች"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "ከፍተኛው ጣራ"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "ወለል"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "ነጠላ መስመሮች"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "ድርብ መስመሮች"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "አንቀሳቃሽ ቅንፎች"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "ክብ ቅንፎች (ሊመጠን የሚችል)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "ስኴር ቅንፎች (ሊመጠን የሚችል)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "ድርብ ስኴር ቅንፎች (ሊመጠን የሚችል)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "ብሬስስ (ሊመጠን የሚችል)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "አንግል ቅንፎች (ሊመጠን የሚችል)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "ጣራ (ሊመጠን የሚችል)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "ወለል (ሊመጠን የሚችል)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "ነጠላ መስመር (ሊመጠን የሚችል)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "ድርብ መስመሮች (ሊመጠን የሚችል)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "አንቀሳቃሽ ቅንፎች (ሊመጠን የሚችል)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "የ ተገመገመው በ"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "ብሬስ ከ ላይ (ሊመጠን የሚችል)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "ብሬስስ ከ ታች (ሊመጠን የሚችል)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "በትንንሹ ዝቅ ብሎ መጻፊያ"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "ሀይል"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "በትንንሹ ዝቅ ብሎ በ ግራ መጻፊያ"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "በትንንሹ ከፍ ብሎ በ ግራ መጻፊያ"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "በትንንሹ ዝቅ ብሎ ከ ታች መጻፊያ"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "በትንንሹ ከፍ ብሎ ከላይ መጻፊያ"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Small Gap"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "ባዶ"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "አዲስ መስመር"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "በ ቁመት መከመሪያ (2 አካላቶች)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "በ ቁመት መከመሪያ"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Matrix Stack"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "በ ግራ ማሰለፊያ"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "መሀከል ማሰለፊያ"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "በ ቀኝ ማሰለፊያ"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "አሌፍ"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "ባዶ ስብስብ"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "ሪይል አካል"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "ኢማጂነሪ አካል"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "ኢንፊኒቲ"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "በከፊል"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "ናብላ"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "ዌይርስታራስ p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "ነጥቦች ከ መሀከል"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "ነጥቦች ወደ ላይ"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "ነጥቦች ወደ ታች"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "ነጥቦች ከ ታች"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "ነጥቦች በ ቁመት"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "ማገናኛ"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "ማካፈያ (ሰፊ ጭረት)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "ማካፈያ (መቁጠሪያ ሰፊ ጭረት)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "ማካፈያ"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "አያካፍልም"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "ድርብ ቀስት በ ግራ"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "ድርብ ቀስት በ ግራ እና በ ቀኝ"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "ድርብ ቀስት በ ቀኝ"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "የ ተፈጥሮ ቁጥሮች ስብስብ"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "የ ኢንቲጀር ስብስብ"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "የ ራሺናል ቁጥሮች ስብስብ"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "የ ሪያል ቁጥሮች ስብስብ"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "የ ውስብስብ ቁጥሮች ስብስብ"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "ትልቅ ስርከምፍሌክስ"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "ትልቅ ቲልዴ"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "ትልቅ የ አቅጣጫ ቀስት"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "ትልቅ ሀርፑን"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h ባር"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "ላምብዳ ባር"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "የ ግራ ቀስት"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "የ ቀኝ ቀስት"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "የ ላይ ቀስት"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "የ ታች ቀስት"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "ክፍተት የለም"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "ይቀድማል"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "ይቀድማል ወይንም እኩል ነው"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "ይቀድማል ወይንም ተመሳሳይ ነው"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "ተሳክቷል"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "ተሳክቷል ወይንም እኩል ነው"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "ተሳክቷል ወይንም ተመሳሳይ ነው"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "አይቀድምም"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "አልተሳካም"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Unary/Binary Operators"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "ግንኙነቱ"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "ተግባሮች ማሰናጃ"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "ተግባሮች"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "አንቀሳቃሽ"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "ባህሪዎች"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "ቅንፎች"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "አቀራረብ"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "ሌሎችም"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "ምሳሌዎች"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "ሰርከምፍራንስ"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "ፓይታጎሪያን ቴረም"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "የ ጋውስ ስርጭት"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "መደበኛ"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "ማዝመሚያ"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "ማድመቂያ"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "ጥቁር"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "ሰማያዊ"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "አረንጓዴ"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "ቀይ"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "ግራጫ"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "ሎሚ"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "የ ሸክላ ቀለም"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "ሰማያዊ"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "ወይራ"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "ወይን ጠጅ"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "ብር"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "አረንጓዴ ሰማያዊ"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "ቢጫ"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "መደበቂያ"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "መጠን"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "ፊደል"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "በ ግራ"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "መሀከል"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "በ ቀኝ"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "ትእዛዞች"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "መቀመሪያ"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "ሰነዶችን በማስቀመጥ ላይ..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION መቀመሪያ"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ስህተት : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "ያልተጠበቀ ባህሪ"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "ያልተጠበቀ ምልክት"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' የተጠበቀ"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' የተጠበቀ"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' የተጠበቀ"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' የተጠበቀ"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "የ ግራ እና የ ቀኝ ምልክቶች አይመሳሰሉም"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans', or 'serif' expected"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'መጠን' ያልተጠበቀ ምልክት አስከትሎ"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "ድርብ ማሰለፊያ አይፈቀድም"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "ድርብ በትንንሽ ዝቅ/ከፍ ብሎ መጻፍ አይቻልም"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' የተጠበቀ"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "ቀለም ያስፈልጋል"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'ቀኝ' የተጠበቀ"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "ይዞታዎች"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~አርእስት"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "የ ~መቀመሪያ ጽሁፍ"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "ድ~ንበሮች"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "መጠን"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "ዋ~ናው መጠን"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "በ ~ገጹ ልክ"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~መመጠኛ"
diff --git a/source/am/svtools/messages.po b/source/am/svtools/messages.po
index 4db8b321f47..df3848c2ae4 100644
--- a/source/am/svtools/messages.po
+++ b/source/am/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-06-05 20:56+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/am/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "መተው: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "እንደገና መስሪያ: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~መድገሚያ: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "በ ትክክል ያልቀረበ ጽሁፍ"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "በ ትክክል ያልቀረበ ጽሁፍ (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "የ ቢትማፕ ምስል (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface metafile (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "የ ሐብታም ጽሁፍ አቀራረብ (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "የ ሐብታም ጽሁፍ አቀራረብ (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME የ መሳያ አቀራረብ"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView bitmap/animation (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Status Info from Svx Internal Link"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME Link (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape ምልክት ማድረጊያ"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star server format"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star object format"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet object"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "ተሰኪ-እቃ"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 object"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 object"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 object"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 object"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 object"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 object"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 object"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw object"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 object"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 object"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 object"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc object"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 object"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 object"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart object"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 object"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 object"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage object"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 object"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 object"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath object"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 object"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 object"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint object"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE link)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "የ ዳታ መቀያየሪያ አቀራረብ (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word object"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet object"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "የቢሮ ሰነድ እቃ"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "የማስታወሻ ሰነድ መረጃ"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx document"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 object"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "የንድፍ እቃ"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 የ መጻፊያ እቃ"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 መጻፊያ/የ ዌብ እቃ"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 መጻፊያ/ዋናው እቃ"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 የ መሳያ እቃ"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 የ ማስደነቂያ እቃ"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 የ ሰንጠረዥ እቃ"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart object"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 የ ሂሳብ እቃ"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows metafile"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "የዳታ ምንጭ እቃ"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "የዳታ ምንጭ ሰንጠረዥ"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL query"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 ንግግር"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "አገናኝ"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "የ HTML format ያለ አስተያየት"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "አካሉን % ማስገባት አልተቻለም"
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "አካሉን ከ ፋይል % ማስገባት አልተቻለም"
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "ተጨማሪ እቃዎች"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "ያልታወቀ ምንጭ"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "ባይትስ"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "ኪባ"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "ሜባ"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "ጌባ"
@@ -501,1234 +501,1234 @@ msgstr "ጌባ"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumeric"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "መደበኛ"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "ባህሪ ማሰናጃ"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "መዝገበ ቃላት"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "መምቻ"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "መሰረታዊ"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "የስልክ ማውጫ"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Phonetic (alphanumeric first)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Phonetic (alphanumeric last)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumeric"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "መዝገበ ቃላት"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "መሰረታዊ"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "መምቻ"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Phonetic (alphanumeric first, grouped by syllables)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Phonetic (alphanumeric first, grouped by consonants)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Phonetic (alphanumeric last, grouped by syllables)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Phonetic (alphanumeric last, grouped by consonants)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "ቀላል"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "ቀላል ማዝመሚያ"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "መደበኛ"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "ማዝመሚያ"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "ማድመቂያ"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "ያዘመመ ማድመቂያ"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "ጥቁር"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "ጥቁር ያዘመመ"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "መጽሀፍ"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "ማድመቂያ ማዝመሚያ"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "የታመቀ"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "የታመቀ ማድመቂያ"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "የታመቀ ማድመቂያ ማዝመሚያ"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "የታመቀ ማድመቂያ ማዝመሚያ"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "የታመቀ ማዝመሚያ"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "የታመቀ ማዝመሚያ"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "ተጨማሪ ብርሃን"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "ተጨማሪ ብርሃን ማዝመሚያ"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "ማዝመሚያ"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "ንዑስ ማድመቂያ"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "ንዑስ ማድመቂያ ማዝመሚያ"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "ተመሳሳይ ፊደል መጠቀሚያ ለ ሁለቱም ለ ማተሚያው እና ለ ስክሪኑ መመልከቻ"
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "ይህ የ ማተሚያ ፊደል ነው: የ መመልከቻው ምስል ትንሽ ይለያል"
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "የዚህ ፊደል ዘዴ ይታያል ወይም ተቀራራቢውን ተመሳሳይ ዘዴ ይጠቀማል"
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "ይህ ፊደል አልተገጠመም ፡ ተቀራራቢ ዝግጁ የሆነውን ፊደል ይጠቀማል"
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "ወደ ቤት ማንቀሳቀሻ"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "ወደ ግራ ማንቀሳቀሻ"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "ወደ ቀኝ ማንቀሳቀሻ"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "ወደ መጨረሻው ማንቀሳቀሻ"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "መጨመሪያ"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "የ አግድም ማስመሪያ"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "የ ቁመት ማስመሪያ"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 bit threshold"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bit dithered"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 ቢት ግራጫማ"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 ቢት ቀለም"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 ቢት ግራጫማ"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 ቢት ቀለም"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 ቢት እውነተኛ ቀለም"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "ምስሉ በ ግምት ይህን ያህል %1 ኪባ ማስታወሻ ይፈልጋል"
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "ምስሉ በ ግምት ይህን ያህል %1 ኪባ ማስታወሻ ይፈልጋል የ ፋይሉ መጠን ይህን ያህል ነው %2 ኪባ"
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "የፋይሉ መጠን %1 ኪባ"
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "ጋባዥ"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "ፖርት"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Other CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "ዝግጁ"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "ተቋርጧል"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "በቀጠሮ ላይ ማጥፊያ"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "በስራ ላይ"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "በማስነሳት ላይ"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "በመጠበቅ ላይ"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "በሟሟቅ ላይ"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "በሂደት ላይ"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "በማተም ላይ"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "ከመስመር ውጪ"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "ስህተት"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "ያልታወቀ ሰርቨር"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "ወረቀቱ ነክሷል"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "በቂ ወረቀት የለም"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "በእጅ ማቀበያ"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "የወረቀት ችግር"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O active"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Output bin full"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "ቶነር ዝቅተኛ ነው"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "ቶነር የለም"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "ገጹን ማጥፊያ"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "የተጠቃሚ ጣልቃ መግባት ያስፈልጋል"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "በቂ ያልሆነ memory"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "ሽፋኑን መክፈቻ"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "ሀይል ማዳኛ ዘዴ"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "ነባር ማተሚያ"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d ሰነዶች"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ምንም>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "ድርጅት"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "ክፍል"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "የ መጀመሪያ ስም"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "የ አባት ስም"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "መንገድ"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "አገር"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "ፖሳቁ"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "ከተማ"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "አርእስት"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "አካባቢ"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "አድራሻ ከ"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "መነሻዎች"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Complimentary close"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "የ ቤት: ስልክ"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "የስራ: ስልክ"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "ፋክስ"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "ኢሜይል"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "ማስታወሻ"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "ተጠቃሚ 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "ተጠቃሚ 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "ተጠቃሚ 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "ተጠቃሚ 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "መለያ"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "አገር"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "የቢሮ : ስልክ"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pager"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "ተንቀሳቃሽ"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "ሌሎች: ስልኮች"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "ቀን መቁጠሪያ"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "መጋበዣ"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "ይህ %PRODUCTNAME ማዋቀሪያ ተቀይሯል: በ %PRODUCTNAME - ምርጫዎች - %PRODUCTNAME - የ ረቀቀ ይምረጡ የ Java runtime environment መጠቀም የሚፈልጉትን በ %PRODUCTNAME."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "ይህ %PRODUCTNAME ማዋቀሪያ ተቀይሯል: በ መሳሪያ - ምርጫ - %PRODUCTNAME - የረቀቀ: ይምረጡ የ Java runtime environment መጠቀም የሚፈልጉትን በ %PRODUCTNAME."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME ይህ የ Java runtime environment ይፈልጋል: (JRE) ይህን ስራ ለ መፈጸም: የ ተመረጠው የ JRE የ ተበላሸ ነው: እባክዎን ሌላ እትም ይምረጡ: ወይንም ይግጠሙ አዲስ JRE እና ይምረጡ ከ %PRODUCTNAME - ምርጫዎች - %PRODUCTNAME - የረቀቀ"
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME ይህ የ Java runtime environment ይፈልጋል: (JRE) ይህን ስራ ለ መፈጸም: የ ተመረጠው የ JRE የ ተበላሸ ነው: እባክዎን ሌላ እትም ይምረጡ: ወይንም ይግጠሙ አዲስ JRE እና ይምረጡ ከ መሳሪያዎች - ምርጫዎች - %PRODUCTNAME – የረቀቀ"
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE ያስፈልጋል"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE ይምረጡ"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE የተበላሸ ነው"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "የ ኮዱ ምንጭ"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "ፋይል ምልክት ማድረጊያ"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "ንድፍ"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "ፋይል ማዋቀሪያ"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "መተግበሪያ"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "የ ዳታቤዝ ሰንጠረዥ"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "የስርአት ፋይል"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word document"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "የእርዳታ ፋይል"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "የ HTML ሰነድ"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "የ ማህደር ፋይል"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "የመግቢያ ፋይል"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice Database"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 Master Document"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice Image"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "የጽሁፍ ፋይል"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "አገናኝ"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 Template"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel document"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel template"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batch file"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ፋይል"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ፎልደር"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "የጽሁፍ ሰነድ"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "ሰንጠረዥ"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "ማቅረቢያ"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "መሳያ"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "የ HTML ሰነድ"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "ዋናው ሰነድ"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "መቀመሪያ"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "ዳታቤዝ"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 የ ሰንጠረዥ ቴምፕሌት"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 የ መሳያ ቴምፕሌት"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 የ ማቅረቢያ ቴምፕሌት"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 የ ጽሁፍ ሰነድ ቴምፕሌት"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "የአካባቢ drive"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "የዲስክ drive"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "ሲዲ-ራም drive"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "የኔትዎርክ ግንኙነት"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint Document"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint Template"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint Show"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 መቀመሪያ"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 Chart"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 መሳያ"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 ሰንጠረዥ"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 ማቅረቢያ"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 የ ጽሁፍ ሰነድ"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 ዋናው ሰነድ"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML Document"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument ዳታቤዝ"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument መሳያ"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument መቀመሪያ"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument ዋናው ሰነድ"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument ማቅረቢያ"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument ሰንጠረዥ"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument ጽሁፍ"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument የ ሰንጠረዥ ቴምፕሌት"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument የ መሳያ ቴምፕሌት"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument የ ማቅረቢያ ቴምፕሌት"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument የ ጽሁፍ ቴምፕሌት"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME ተጨማሪዎች"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell SpellChecker"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen Hyphenator"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes Thesaurus"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "የ ተተዉ ቃሎች ዝርዝር"
diff --git a/source/am/svx/messages.po b/source/am/svx/messages.po
index 9a392d0ee5e..13f3d6c3cea 100644
--- a/source/am/svx/messages.po
+++ b/source/am/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-05-20 11:22+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/am/>\n"
@@ -16333,11 +16333,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "ሁለ_ገብ"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_አስተያየቶች"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/am/sw/messages.po b/source/am/sw/messages.po
index 2f6ebfc1e19..43791b4b949 100644
--- a/source/am/sw/messages.po
+++ b/source/am/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17442,86 +17442,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr "በ ሰንጠረዥ ውስጥ የሚፈልጉትን ረድፎች ቁጥር ያስገቡ"
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "ባጠቃላይ"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "ራ_ስጌ"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr "የ ራስጌ ረድፍ በ ሰንጠረዥ ውስጥ ማካተቻ"
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "የ ራስጌ ረድፎችን በ አዲስ _ገጾች ላይ መድገሚያ"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr "የ ሰንጠረዥ ራስጌ መድገሚያ በ ነበረው ገጽ ላይ ከ ላይ በኩል ሰንጠረዡ ከ አንድ ገጽ በላይ በሚሆን ጊዜ"
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "ሰንጠረዡን ከገጾቹ በላይ _አትክፈል"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr "ሰንጠረዥ ከ አንድ ገጽ በላይ እንዳይሆን መከልከያ"
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr "ለ ራስጌው መጠቀም የሚፈልጉትን የ ረድፎች ቁጥር ያስገቡ"
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "የ ራስጌ ረድ_ፎች:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "ምርጫዎች"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr "ይምረጡ በ ቅድሚያ የ ተገለጸ ዘዴ ለ አዲሱ ሰንጠረዥ "
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "ዘዴዎች"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr "ሰንጠረዥ ወደ ሰነድ ውስጥ ማስገቢያ: እርስዎ እንዲሁም መጫን ይችላሉ የ ቀስት ቁልፎች: ይጎትቱ ለ መምረጥ የ ረድፎች እና አምዶች ቁጥር በ ሰንጠረዥ ውስጥ ለማካተት: እና ከዛ ይጫኑ በ መጨረሻው ክፍል ላይ"
@@ -20035,289 +20041,289 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "ዋናውን መመልከቻ መቀያየሪያ"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "በ ዋናው መመልከቻ እና በ መደበኛ መመልከቻ መሀከል መቀያየሪያ ዋናው ሰነድ ከ ተከፈተ "
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "ይዞታ መቃኛ መመልከቻ"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr "ሁሉንም ምድቦች በ መቃኛ ውስጥ እና የ ተመረጡትን ምድቦች ማሳያ መካከል መቀያየሪያ "
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "ራስጌ"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr "መጠቆሚያውን ወደ ራስጌ ወይንም ከ ራስጌ ወደ ሰነዱ የ ጽሁፍ ቦታ ማንቀሳቀሻ"
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "ግርጌ"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr "መጠቆሚያውን ወደ ግርጌ ወይንም ከ ግርጌ ወደ ሰነዱ የ ጽሁፍ ቦታ ማንቀሳቀሻ."
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "ጽሁፍ <-> ማስቆሚያ"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr "በ ግርጌ ማስታወሻ ጽሁፍ እና በ ግርጌ ማስታወሻ ማስቆሚያ መካከል መዝለያ "
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "አስታዋሽ ማሰናጃ"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "ይጫኑ እዚህ አስታዋሽ ለማሰናዳት መጠቆሚያው አሁን ባለበት: እስከ አምስት አስታዋሽ መግለጽ ይችላሉ: ወደ አስታዋሽ ለመዝለል ይጫኑ የ መቃኛ ምልክት ከ መቃኛ መስኮት ውስጥ የ አስታዋሽ ምልክት እና ከዛ ይጫኑ ቀደም ያለውን ወይንም የሚቀጥለውን ቁልፍ "
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "የ ራስጌ ደረጃዎች ማሳያ"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr "ይጫኑ በዚህ ምልክት ላይ: እና ይምረጡ የ ራስጌ ረቂቅ ቁጥር ደረጃዎች እርስዎ መመልከት የሚፈልጉትን በ መቃኛ መስኮት ውስጥ "
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "ዝርዝር ሳጥን ማብሪያ/ማጥፊያ"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr "ማሳያ ወይንም መደበቂያ የ መቃኛ ዝርዝር "
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "ደረጃ ማሳደጊያ"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "ለ ተመረጠው ራስጌ የ ረቂቅ ደረጃ መጨመሪያ: እና ከ ራስጌው በ ታች በኩል በሚፈጠረው ራስጌ: በ አንድ ደረጃ: ለ ተመረጠው ራስጌ የ ረቂቅ ደረጃ ለ መጨመር: ተጭነው ይያዙ Ctrl, እና ከዛ ይጫኑ ይህን ምልክት "
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "ደረጃ ማሳነሻ"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "የ ተመረጠውን ራስጌ ረቂቅ ደረጃ መቀነሻ: እና የ ራስጌዎች ከ ራስጌ በ ታች የሚታዩ: በ አንድ ደረጃ: የ ተመረጠውን ራስጌ ረቂቅ ደረጃ ይቀንሳል: ተጭነው ይያዙ Ctrl, እና ከዛ ይጫኑ ይህን ምልክት "
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "ምእራፍ ማሳደጊያ"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "የ ተመረጠውን ራስጌ እና ጽሁፍ ከ ራስጌ በ ታች በኩል ማንቀሳቀሻ: ወደ ላይ አንድ ራስጌ ቦታ በ መቃኛ እና በ ሰነድ ውስጥ: የ ተመረጠውን ራስጌ እና ከ ራስጌ ጋር የሚዛመደውን ጽሁፍ አይደለም: ተጭነው ይያዙ Ctrl, እና ከዛ ይጫኑ ይህን ምልክት "
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "ምእራፍ ማሳነሻ"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "የ ተመረጠውን ራስጌ እና ጽሁፍ ከ ራስጌ በ ታች በኩል ማንቀሳቀሻ: ወደ ታች አንድ ራስጌ ቦታ በ መቃኛ እና በ ሰነድ ውስጥ: የ ተመረጠውን ራስጌ እና ከ ራስጌ ጋር የሚዛመደውን ጽሁፍ አይደለም: ተጭነው ይያዙ Ctrl, እና ከዛ ይጫኑ ይህን ምልክት "
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "መጎተቻ ዘዴ"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr "መጎተቻ እና መጣያ ምርጫ ማሰናጃ እቃዎች ከ መቃኛ ውስጥ ወደ ሰነድ ውስጥ: ለምሳሌ: እንደ hyperlink. ይጫኑ ይህን ምልክት: እና ከዛ ይምረጡ እርስዎ መጠቀም የሚፈልጉትን ምርጫ"
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "ሰነድ"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "ንቁ መስኮት"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "ዋናውን መመልከቻ መቀያየሪያ"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "በ ዋናው መመልከቻ እና በ መደበኛ መመልከቻ መሀከል መቀያየሪያ ዋናው ሰነድ ከ ተከፈተ "
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "ማረሚያ"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "ማሻሻያ"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "ይጫኑ እና ይምረጡ ማሻሻል የሚፈልጉትን ይዞታዎች"
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "ማስገቢያ"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "ወደ ዋናው ሰነድ ፋይል: ማውጫ: ወይንም አዲስ ሰነድ ማስገቢያ "
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "እንዲሁም ይዞታዎችን ማስቀመጫ"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr "የ ተገናኙ ፋይሎች ይዞታዎችን ኮፒ ማስቀመጫ በ ዋናው ሰነድ ውስጥ: ይህ ያረጋግጣል የ አሁኑ ይዞታዎች ዝግጁ እንደሆኑ የ ተገናኙ ፋይሎች ጋር መድረስ በማይቻል ጊዜ "
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "ወደ ላይ ማንቀሳቀሻ"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr "የ ተመረጠውን በ መቃኛው ዝርዝር ውስጥ አንድ ደረጃ ወደ ላይ ማንቀሳቀሻ "
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "ወደ ታች ማንቀሳቀሻ"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr "የ ተመረጠውን በ መቃኛው ዝርዝር ውስጥ አንድ ደረጃ ወደ ላይ ማንቀሳቀሻ "
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/an/sc/messages.po b/source/an/sc/messages.po
index d5e06c19204..cf9c0e78a7c 100644
--- a/source/an/sc/messages.po
+++ b/source/an/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-08-31 13:02+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/an/>\n"
@@ -30672,38 +30672,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr ""
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr ""
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr ""
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr ""
diff --git a/source/an/sfx2/messages.po b/source/an/sfx2/messages.po
index 06a6a0f2e72..2f33f4beec1 100644
--- a/source/an/sfx2/messages.po
+++ b/source/an/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-08-30 17:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/an/>\n"
@@ -1592,286 +1592,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr ""
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr ""
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr ""
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr ""
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr ""
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr ""
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Borrar"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4118,6 +4082,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr ""
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/an/starmath/messages.po b/source/an/starmath/messages.po
index 31e081551d6..6c255888f4b 100644
--- a/source/an/starmath/messages.po
+++ b/source/an/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-05-08 13:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -425,2082 +425,2215 @@ msgid "or"
msgstr ""
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr ""
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr ""
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr ""
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr ""
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr ""
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr ""
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr ""
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr ""
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr ""
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr ""
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr ""
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr ""
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr ""
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr ""
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr ""
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr ""
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr ""
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr ""
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr ""
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr ""
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr ""
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr ""
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr ""
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr ""
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr ""
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr ""
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr ""
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr ""
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr ""
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr ""
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr ""
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr ""
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr ""
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr ""
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr ""
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr ""
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr ""
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr ""
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr ""
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr ""
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr ""
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr ""
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr ""
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr ""
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr ""
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr ""
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr ""
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr ""
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr ""
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr ""
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr ""
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr ""
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr ""
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr ""
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr ""
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr ""
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr ""
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr ""
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr ""
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr ""
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr ""
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr ""
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr ""
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr ""
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr ""
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr ""
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr ""
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr ""
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr ""
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr ""
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr ""
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Suma"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr ""
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr ""
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr ""
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Producto"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr ""
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr ""
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr ""
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr ""
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr ""
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr ""
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr ""
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr ""
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr ""
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr ""
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr ""
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr ""
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr ""
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr ""
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr ""
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr ""
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr ""
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr ""
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr ""
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr ""
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr ""
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr ""
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr ""
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr ""
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr ""
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr ""
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr ""
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr ""
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr ""
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr ""
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr ""
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr ""
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr ""
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr ""
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr ""
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr ""
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr ""
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr ""
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr ""
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr ""
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr ""
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr ""
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr ""
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr ""
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr ""
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr ""
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr ""
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr ""
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr ""
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr ""
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr ""
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr ""
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr ""
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr ""
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr ""
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr ""
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr ""
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr ""
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr ""
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr ""
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr ""
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr ""
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr ""
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr ""
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr ""
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr ""
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr ""
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr ""
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr ""
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr ""
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr ""
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr ""
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr ""
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr ""
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr ""
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr ""
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr ""
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr ""
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr ""
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr ""
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr ""
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr ""
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr ""
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr ""
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr ""
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr ""
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr ""
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr ""
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr ""
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr ""
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr ""
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr ""
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr ""
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr ""
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr ""
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr ""
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr ""
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr ""
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr ""
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr ""
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr ""
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr ""
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr ""
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr ""
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr ""
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr ""
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr ""
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr ""
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr ""
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr ""
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr ""
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr ""
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr ""
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr ""
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr ""
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr ""
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr ""
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr ""
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr ""
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr ""
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr ""
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr ""
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr ""
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr ""
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr ""
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr ""
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr ""
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr ""
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funcions"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
#, fuzzy
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operador"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
#, fuzzy
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Atributos"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr ""
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr ""
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
#, fuzzy
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Atr~os"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
#, fuzzy
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Eixemplo"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Estandar"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr ""
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr ""
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr ""
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "Azul"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "Verde"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr ""
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "Griso"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "Hora"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr ""
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "Amagar"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr ""
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "Tipo de letra"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
#, fuzzy
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "Enta la cucha"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr ""
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
#, fuzzy
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "Brilo"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Comentarios"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
#, fuzzy
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "~Formula"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr ""
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr ""
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr ""
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr ""
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr ""
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr ""
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr ""
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr ""
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr ""
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr ""
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr ""
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Conteniu"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Titol"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr ""
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Cantos"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr ""
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Mida ~orichinal"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr ""
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr ""
diff --git a/source/an/svtools/messages.po b/source/an/svtools/messages.po
index 4393c843a99..e29ebab9f2c 100644
--- a/source/an/svtools/messages.po
+++ b/source/an/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-06-21 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/an/>\n"
@@ -18,483 +18,483 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr ""
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr ""
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr ""
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr ""
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr ""
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr ""
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr ""
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr ""
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr ""
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr ""
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr ""
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr ""
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr ""
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr ""
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr ""
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr ""
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr ""
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr ""
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr ""
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr ""
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr ""
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr ""
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr ""
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr ""
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr ""
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr ""
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr ""
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr ""
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr ""
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr ""
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr ""
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr ""
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr ""
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr ""
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr ""
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr ""
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr ""
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr ""
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr ""
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr ""
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr ""
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr ""
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr ""
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr ""
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr ""
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
#, fuzzy
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Enla~z"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr ""
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr ""
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr ""
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr ""
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr ""
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr ""
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr ""
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr ""
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr ""
@@ -502,21 +502,21 @@ msgstr ""
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
#, fuzzy
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
@@ -524,1226 +524,1226 @@ msgstr "~Chuego de caracters"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr ""
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr ""
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr ""
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr ""
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr ""
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr ""
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr ""
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr ""
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr ""
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr ""
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr ""
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr ""
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr ""
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr ""
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr ""
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr ""
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
#, fuzzy
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Enta la dreita"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr ""
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr ""
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr ""
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr ""
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr ""
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr ""
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr ""
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr ""
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr ""
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr ""
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr ""
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr ""
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr ""
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr ""
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr ""
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr ""
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Adhibir"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr ""
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr ""
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr ""
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr ""
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr ""
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr ""
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr ""
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr ""
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr ""
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Meter en pausa"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr ""
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr ""
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr ""
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr ""
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr ""
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr ""
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr ""
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr ""
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Interpresa"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Departamento"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
#, fuzzy
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Nombres"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
#, fuzzy
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Apellidos"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr ""
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "País"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr ""
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Ciudat"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titol"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posición"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr ""
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr ""
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr ""
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr ""
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr ""
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr ""
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr ""
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr ""
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr ""
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr ""
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr ""
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Estau/Provincia"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr ""
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Busca"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr ""
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr ""
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calandario"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr ""
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr ""
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr ""
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr ""
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr ""
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr ""
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Graficos"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr ""
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr ""
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr ""
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr ""
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr ""
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr ""
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
#, fuzzy
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Documento HTML"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr ""
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr ""
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr ""
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr ""
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr ""
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr ""
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
#, fuzzy
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Enla~z"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr ""
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr ""
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr ""
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr ""
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
#, fuzzy
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "~Fichero"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr ""
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Documento de texto"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Fuella de calculo"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentación"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "~Debuxo"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Documento HTML"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Documento m~aestro"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "~Formula"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Base de datos"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr ""
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr ""
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr ""
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr ""
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr ""
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr ""
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr ""
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr ""
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr ""
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr ""
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr ""
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr ""
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr ""
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr ""
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr ""
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr ""
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr ""
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr ""
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr ""
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr ""
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/an/svx/messages.po b/source/an/svx/messages.po
index 2f57c522342..127aadad408 100644
--- a/source/an/svx/messages.po
+++ b/source/an/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-06-21 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/an/>\n"
@@ -16415,12 +16415,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
-#, fuzzy
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "Comentarios"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/an/sw/messages.po b/source/an/sw/messages.po
index 8fc42ac5482..a891091822e 100644
--- a/source/an/sw/messages.po
+++ b/source/an/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-08-30 17:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/an/>\n"
@@ -17708,86 +17708,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr ""
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr ""
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr ""
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr ""
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr ""
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Opcions"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20329,291 +20335,291 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Capitero"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Piet de pachina"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr ""
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr ""
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
#, fuzzy
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Modo d'arrocegue"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Documento"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
#, fuzzy
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Finestra activa"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr ""
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr ""
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr ""
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr ""
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr ""
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/ar/helpcontent2/source/text/scalc/01.po b/source/ar/helpcontent2/source/text/scalc/01.po
index 17188b182f4..75b2bc7c2a1 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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-16 12:51+0000\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
+"PO-Revision-Date: 2020-11-17 16:43+0000\n"
"Last-Translator: Benmeddour oussama <benmeddour62@gmail.com>\n"
"Language-Team: Arabic <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/ar/>\n"
"Language: ar\n"
@@ -950,7 +950,7 @@ msgctxt ""
"par_id3153122\n"
"help.text"
msgid "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146884\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146884\">أيقونة</alt></image>"
#. iSmFZ
#: 02120100.xhp
@@ -959,7 +959,7 @@ msgctxt ""
"par_id3157904\n"
"help.text"
msgid "Time"
-msgstr ""
+msgstr "الوقت"
#. nsv3w
#: 02140000.xhp
@@ -968,7 +968,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Fill"
-msgstr ""
+msgstr "ملأ"
#. zz3ue
#: 02140000.xhp
@@ -977,7 +977,7 @@ msgctxt ""
"bm_id8473769\n"
"help.text"
msgid "<bookmark_value>filling;selection lists</bookmark_value> <bookmark_value>selection lists;filling cells</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ملأ، القوئم المحددة</bookmark_value><bookmark_value>القوائم المحددة، ملأ الخلايا</bookmark_value>"
#. sGEri
#: 02140000.xhp
@@ -986,7 +986,7 @@ msgctxt ""
"hd_id3153876\n"
"help.text"
msgid "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\">Fill</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\">ملأ</link>"
#. EGKxk
#: 02140000.xhp
@@ -995,7 +995,7 @@ msgctxt ""
"par_id3156285\n"
"help.text"
msgid "<ahelp hid=\".\">Automatically fills cells with content.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ملأ آلي للخلايا بالمحتوى.</ahelp>"
#. 8KLWw
#: 02140000.xhp
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr ""
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/sdraw.po b/source/ar/helpcontent2/source/text/sdraw.po
index 67597f782d2..35f7f5d01fa 100644
--- a/source/ar/helpcontent2/source/text/sdraw.po
+++ b/source/ar/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 10:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/shared/00.po b/source/ar/helpcontent2/source/text/shared/00.po
index 51aa22f807c..5a35957caa3 100644
--- a/source/ar/helpcontent2/source/text/shared/00.po
+++ b/source/ar/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-14 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr ""
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr ""
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/ar/helpcontent2/source/text/shared/01.po b/source/ar/helpcontent2/source/text/shared/01.po
index d9743466713..e5eeb7e1522 100644
--- a/source/ar/helpcontent2/source/text/shared/01.po
+++ b/source/ar/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr ""
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr ""
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr ""
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,13 +9376,13 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr ""
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
msgstr ""
#. 3Lq2G
@@ -9430,13 +9412,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr ""
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
msgstr ""
#. nRB3E
@@ -9466,13 +9448,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr ""
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
msgstr ""
#. F4J5u
@@ -9601,13 +9583,13 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr ""
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
msgstr ""
#. ijR7M
@@ -9709,13 +9691,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr ""
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
msgstr ""
#. ADEyJ
@@ -9745,13 +9727,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
msgstr ""
#. GqEUL
@@ -9781,13 +9763,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
msgstr ""
#. DLEGF
diff --git a/source/ar/helpcontent2/source/text/shared/02.po b/source/ar/helpcontent2/source/text/shared/02.po
index 1b29c0d6e70..46cb0ae8bae 100644
--- a/source/ar/helpcontent2/source/text/shared/02.po
+++ b/source/ar/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 13:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11032,13 +11032,13 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
msgstr ""
#. DCXbA
@@ -11059,13 +11059,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
msgstr ""
#. 9iqpg
@@ -11104,13 +11104,13 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr ""
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
msgstr ""
#. FBggx
@@ -11131,13 +11131,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
msgstr ""
#. bAyat
diff --git a/source/ar/helpcontent2/source/text/shared/optionen.po b/source/ar/helpcontent2/source/text/shared/optionen.po
index 8f3aa77822d..f47f355cfc8 100644
--- a/source/ar/helpcontent2/source/text/shared/optionen.po
+++ b/source/ar/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11860,31 +11860,31 @@ msgctxt ""
msgid "Snap"
msgstr ""
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
+msgid "To snap guides"
msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
msgstr ""
#. eUCCJ
diff --git a/source/ar/helpcontent2/source/text/simpress/02.po b/source/ar/helpcontent2/source/text/simpress/02.po
index 519bfb7fe89..065c7da1c84 100644
--- a/source/ar/helpcontent2/source/text/simpress/02.po
+++ b/source/ar/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 10:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5695,40 +5695,40 @@ msgctxt ""
msgid "Exit all groups"
msgstr ""
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
#. oXWsX
diff --git a/source/ar/helpcontent2/source/text/swriter.po b/source/ar/helpcontent2/source/text/swriter.po
index aab073910e0..939453b59fe 100644
--- a/source/ar/helpcontent2/source/text/swriter.po
+++ b/source/ar/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-10-21 20:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2212,13 +2212,13 @@ msgctxt ""
msgid "Left-To-Right"
msgstr ""
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
msgstr ""
#. Xg9vt
@@ -2239,13 +2239,13 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "من اليمين إلى اليسار"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
msgstr ""
#. TMwGp
diff --git a/source/ar/helpcontent2/source/text/swriter/01.po b/source/ar/helpcontent2/source/text/swriter/01.po
index d4791abcb94..1b2ffde054f 100644
--- a/source/ar/helpcontent2/source/text/swriter/01.po
+++ b/source/ar/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-10-21 20:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr ""
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr ""
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/swriter/guide.po b/source/ar/helpcontent2/source/text/swriter/guide.po
index 397c9e0c026..7e2bf3f881f 100644
--- a/source/ar/helpcontent2/source/text/swriter/guide.po
+++ b/source/ar/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-12 13:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7792,49 +7792,49 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr ""
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
msgstr ""
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
msgstr ""
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
msgstr ""
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
+msgid "Positioning indents"
msgstr ""
#. qUxKq
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr ""
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr ""
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr ""
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr ""
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,13 +10294,13 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr ""
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
msgstr ""
#. aahB7
@@ -10267,13 +10330,22 @@ msgctxt ""
msgid "Do one of the following:"
msgstr ""
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
msgstr ""
#. hDANA
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr ""
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12211,6 +12292,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr ""
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12256,49 +12355,49 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr ""
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
+msgid "Return to <emph>Print</emph> dialog."
msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
+msgid "Click <emph>Print</emph>."
msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
msgstr ""
#. FgeK4
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr ""
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,31 +12724,31 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr ""
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
+msgid "Choose <menuitem>File - Print</menuitem>"
msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
msgstr ""
#. G8yiU
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/ar/sc/messages.po b/source/ar/sc/messages.po
index df99bba0b06..ab6a8f3ef61 100644
--- a/source/ar/sc/messages.po
+++ b/source/ar/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29229,38 +29229,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "استخدم قياسات الطابعة لتنسيق النصوص"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "أبرز التحديد _في رؤوس الأعمدة و الصفوف"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "حدّث المراجع عند ترتيب مدى من الخلايا"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "إعدادات الإدخال"
diff --git a/source/ar/sfx2/messages.po b/source/ar/sfx2/messages.po
index 3c8c7264104..7495077f8b3 100644
--- a/source/ar/sfx2/messages.po
+++ b/source/ar/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-10-21 19:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,286 +1638,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "إرساء"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "ألغِ الإرساء"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "خيارات أكثر"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "أغلق الشريط الجانبي المرصوف"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "إعدادات الشريط الجانبي"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "التخصيص"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "استعد المبدئيات"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "أغلق الشريط الجانبي"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "أليزارين"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "خلية نحل"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "منحنى أزرق"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "خرائط أولية"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "أزرق فاتح"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "الحمض النووي"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "تركيز"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "إمبريس"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "إلهام"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "أضواء"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "أخضر مورق"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "أزرق ليلي"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "قلم رصاص"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "بيانو"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "الغروب"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "عتيق"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "سيرة ذاتية"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "المبدئي"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "عصري"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "بطاقة أعمال فيها شعار"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "أزل"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "امسح الكل"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4163,6 +4127,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "احذف..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/ar/starmath/messages.po b/source/ar/starmath/messages.po
index 0a0c160b56c..f489f33b2c2 100644
--- a/source/ar/starmath/messages.po
+++ b/source/ar/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-05-08 13:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -425,2079 +425,2212 @@ msgid "or"
msgstr "أو"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "علامة +"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "علامة -"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "علامة +-"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "علامة -+"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "”ليس“ منطقية"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "جمع +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "طرح ـ"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "ضرب (نقطة)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "ضرب (×)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "ضرب (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "قسمة (/)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "قسمة (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "قسمة (كسر)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "”و“ منطقية"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "”أو“ منطقية"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "يساوي"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "لا يساوي"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "أقل من"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "أكبر من"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "أقل من أو يساوي"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "أكبر من أو يساوي"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "أقل من أو يساوي"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "أكبر من أو يساوي"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "أقل بكثير من"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "أكبر بكثير من"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "يرادف"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "يساوي تقريبًا"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "يشابه"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "يشابه أو يساوي"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "متناسب مع"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "متعامد على"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "متوازٍ مع"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "باتجاه"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "ضمن"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "ليس ضمن"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "يمتلك"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "اتحاد"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "التقاطع"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "الاختلاف"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "جزء من"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "جزء من أو يساوي"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "مجموعة فائقة"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "مجموعة فائقة أو يساوي"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "ليس جزء من"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "ليس جزء من أو يساوي"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "ليس مجموعة فائقة"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "ليس مجموعة فائقة أو يساوي"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "قيمة مطلقة"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
#, fuzzy
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Factorial"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "جذر تربيعي"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "جذر نوني"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "الدالة الأسية"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "الدالة الأسية"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "لوغاريتم طبيعي"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "لوغاريتم"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "جيب"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "جيب تمام"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "ظل"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "ظل التمام"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "مقابل الجيب"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "مقابل جيب التمام"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "مقابل الظل"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "قوس ظل التمام"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "جيب الزائد"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "جيب التمام الزائد"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "ظل الزائد"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "ظل تمام الزائد"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
#, fuzzy
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "جيب الزائد"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
#, fuzzy
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "جيب التمام الزائد"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
#, fuzzy
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "ظل الزائد"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
#, fuzzy
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "ظل تمام الزائد"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "المجموع"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "مجموع منخفض لأسفل"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "مجموع مرتفع لأعلى"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "سكرِبت مجموع فوقي/تحتي"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "المنتج"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
#, fuzzy
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "منخفض أسفل"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr ""
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr ""
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Coproduct"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
#, fuzzy
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "منخفض أسفل"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr ""
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr ""
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Limes"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
#, fuzzy
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "منخفض أسفل"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
#, fuzzy
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "مرتفع أعلى"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
#, fuzzy
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "سكرِبت مجموع فوقي/تحتي"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "موجود"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "غير موجود"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
#, fuzzy
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "للكل"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "تكامل"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "تكامل مزدوج"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "تكامل ثلاثي"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Curve Integral"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Double Curve Integral"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Triple Curve Integral"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Acute Accent"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Line Above"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Breve"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Reverse Circumflex"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "دائرة"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "نقطة"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Double Dot"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Triple Dot"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Grave Accent"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Circumflex"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tilde"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Vector Arrow"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "خط تحت"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "خط فوق"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "خط عبر"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "شفاف"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "خط عريض"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "خط مائل"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "تغيير الحجم"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "تغيير الخط"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "تلوين بالأسود"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "تلوين بالأزرق"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "تلوين بالأخضر"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "تلوين بالأحمر"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
#, fuzzy
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "منتقي الألوان"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
#, fuzzy
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "جدولة ملونة"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "تلوين بالأصفر"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "أقواس تجميع"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "أقواس مستديرة"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "أقواس مربعة"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "أقواس مزدوجة مربعة"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "أقواس متموجة"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "أقواس مدببة"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "دالة عدد صحيح"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "خطوط مفردة"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "خطوط مزدوجة"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "أقواس مُعاملات"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "أقواس دائرية (قابلة للتحجيم)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "أقواس مربعة (قابل للتحجيم)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "أقواس مربعة مزدوجة (قابل للتحجيم)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "أقواس متموجة (قابلة للتحجيم)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "أقواس مدببة (قابلة للتحجيم)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "دالة عدد صحيح (قابل للتحجيم)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "دالة عدد صحيح (قابل للتحجيم)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "خطوط مفردة (قابلة للتحجيم)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "خطوط مزدوجة (قابلة للتحجيم)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "أقواس مُعاملات (قابلة للتحجيم)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "أقواس متموجة بالأعلى (قابلة للتحجيم)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "أقواس متموجة بالأسفل (قابلة للتحجيم)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "منخفض يمين"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "الأس"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "منخفض يسار"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "مرتفع أيسر"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "منخفض أسفل"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "مرتفع أعلى"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "تباعد صغير"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "فراغ"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "سطر جديد"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "تراكم أفقي (عنصران)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "تراكم أفقي"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Matrix Stack"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "محاذاة إلى اليسار"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "محاذاة إلى الوسط"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "محاذاة إلى اليمين"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "ألف"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "مجموعة فارغة"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "جزء حقيقي"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "جزء خيالي"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "مالانهاية"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "جزئي"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "رمز تباعد"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "نقاط في وسط"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "نقاط إلى أعلى"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "نقاط إلى أسفل"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "نقاط بالأسفل"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "نقاط رأسية"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "سَلسَلة"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
#, fuzzy
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "قسمة (/)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "يقبل القسمة"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "لا يقبل القسمة"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "سهمان إلى اليسار"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "سهمان إلى اليسار واليمين"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "سهمان إلى اليمين"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "مجموعة أرقام طبيعية"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "مجموعة الأعداد الصحيحة"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "مجموعة الأعداد المنطقية"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "مجموعة الأعداد الحقيقية"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "مجموعة الأعداد المركبة"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Large Circumflex"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Large Tilde"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Large Vector Arrow"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "شريط h"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "شريط لامدا"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "سهم لليسار"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "سهم لليمين"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "سهم لأعلى"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "سهم لأسفل"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "لا مسافة"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "يسبق"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "يسبق أو يساوي"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "يسبق أو يعادل"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "يتبع"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "يتبع أو يساوي"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "يتبع أو يعادل"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "لا يسبق"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "لا يتبع"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "مُعاملات أحادية/ثنائية"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "العلاقات"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Set Operations"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "الدوال"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "المُعاملات"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "السمات"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "الأقواس"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "تنسيقات"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "غيرها"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "أمثلة"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "قياسي"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "مائل"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "عريض"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "أسود"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "أزرق"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "أخضر"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "أحمر"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "رمادي"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "ليموني"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "كستنائي"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "أزرق ليلي"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "زيتوني"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "بنفسجي"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "فضي"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "أزرق مخضر"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "أصفر"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "إخفاء"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "الحجم"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "الخط"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "يسار"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "توسيط"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "يمين"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "تعليقات"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "المعادلات"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "يحفظ المستند..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "معادلات %PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "خطأ : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "حرف غير متوقع"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "متوقع '{'"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "متوقع '}'"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "متوقع '('"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "متوقع ')'"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "متوقع '#'"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Color required"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' expected"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "‏%PRODUCTNAME‏ %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "المحتويات"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "ال~عنوان"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "ن~ص المعادلة"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "الح~دود"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "الحجم"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "الحجم الأ~صلي"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "ملاءمة ~حجم الصفحة"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "ال~مقياس"
diff --git a/source/ar/svtools/messages.po b/source/ar/svtools/messages.po
index 994d5d69291..325d379b847 100644
--- a/source/ar/svtools/messages.po
+++ b/source/ar/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "تراجع عن: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~كرّر: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "نص غير منسق"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "نص غير منسق (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "صورة نقطية (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "نص غني التنسيق (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "نص غني التنسيق (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "نسق رسم %PRODUCTNAME"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "معلومات الحالة من رابط Svx الداخلي"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "علامة Netscape"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "نسق خادوم Star"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "تنسيق كائن Star"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "كائن بريمج"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "كائن مُلحق"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "كائن StarWriter 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "كائن StarWriter 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "كائن StarWriter 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "كائن StarWriter/Web 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "كائن StarWriter/Web 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "كائن StarWriter/Master 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "كائن StarWriter/Master 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "كائن StarDraw"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "كائن StarDraw 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "كائن StarImpress 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "كائن StarDraw 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "كائن StarCalc"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "كائن StarCalc 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "كائن StarCalc 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "كائن StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "كائن StarChart 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "كائن StarChart 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "كائن StarImage"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "كائن StarImage 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "كائن StarImage 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "كائن StarMath"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "كائن StarMath 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "كائن StarMath 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "كائن StarObject Paint"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "لغة رقْم النص الفائق (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "لغة رقْم النص الفائق مجردة (HTML بسيط)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "كائن ميكروسوفت وورد"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "كائن StarFrameSet"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "كائن مستند Office"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "معلومات مستند Notes"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "مستند Sfx"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "كائن StarChart 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "كائن رسومي"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "كائن أوبن‌أوفيس.أورج رايتر 1.0"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "كائن أوبن‌أوفيس.أورج رايتر/وِب 1.0"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "كائن أوبن‌أوفيس.أورج رايتر/ماستر 1.0"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "كائن أوبن‌أوفيس.أورج درو 1.0"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "كائن أوبن‌أوفيس.أورج إمبريس 1.0"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "كائن أوبن‌أوفيس.أورج كالك 1.0"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "كائن أوبن‌أوفيس.أورج رسم بياني 1.0"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "كائن أوبن‌أوفيس.أورج ماث 1.0"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "ملف ويندوز أعلى"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "كائن مصدر البيانات"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "جدول مصدر البيانات"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "استعلام SQL"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "حواري أوبن‌أوفيس.أورج 1.0"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "ارتباط"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "تنسيق HTML بدون تعليقات"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "تعذر إدراج الكائن %."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "تعذر إدراج كائن من الملف %."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "كائنات إضافية"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "مصدر مجهول"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "بايتات"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "كيلوبايت"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "ميغابايت"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "غيغابايت"
@@ -501,1238 +501,1238 @@ msgstr "غيغابايت"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "هجائي عددي"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "عادي"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "مجموعة أحرف"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "القاموس"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "يصدم"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "متطرف"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "يونيكود"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "دفتر الهاتف"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "نظام الصوت (حرفي رقمى أولاً)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "نظام الصوت (آخر حرف رقمي)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "هجائي عددي"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "القاموس"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "متطرف"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "يصدم"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "نظام الصوت (حرفي صوتي أولاً، تم تقسيمها لمجموعات حسب المقاطع اللفظية)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "نظام الصوت (حرفي صوتي أولاً، تم تقسيمها لمجموعات حسب الأحرف الساكنة)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "نظام الصوت (حرفي صوتي أخيرًا، تم تقسيمها لمجموعات حسب المقاطع اللفظية)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "نظام الصوت (حرفي صوتي أخيرًا، تم تقسيمها لمجموعات حسب الأحرف الساكنة)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "فاتح"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "فاتح مائل"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "عادي"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "مائل"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "عريض"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "عريض مائل"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "أسود"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "أسود مائل"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "الكتاب"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "مكثف"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "شبه غامق"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "سيُستخدم الخط نفسه عند الطباعة وعند العرض على الشاشة."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "هذا خط الطابعة. قد يختلف المظهر على الشاشة بعض الشيء."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "سيُحاكى نمط هذا الخط أو سيُستخدم أقرب نمط مطابق له."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "هذا الخط غير مثبّت. سيُستخدم أقرب خط متوفّر."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "تحريك الى البداية"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "تحريك إلى اليسار"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "تحريك إلى اليمين"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "تحريك إلى النهاية"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "أضف"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "مسطرة أفقية"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "مسطرة رأسية"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "قيمة البدء 1 بت"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "توزيع ألوان 1 بت"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "تدرجات رمادي 4 بت"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "لون 4 بايت"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "تدرجات رمادي 8 بت"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "لون 8 بايت"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "ألوان حقيقية 24 بت"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "تحتاج الصورة إلى حوالي %1 ك.بايت من الذاكرة."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "تحتاج الصورة إلى حوالي %1 ك.بايت من الذاكرة، حجم الملف هو %2 ك.بايت."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "حجم الملف هو %1 ك.بايت."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "شبح"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "فرز"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "جاهز"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "موقوفة"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "الحذف المنتظر"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "مشغول"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "التمهيد"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "بالانتظار"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Warming up"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "معالجة"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "طباعة"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "غير متصل"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "خطأ"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "خادوم مجهول"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Paper jam"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "نفذ الورق"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "التغذية اليدوية"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "مشكلة في الورق"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "الإدخال/الإخراج نشط"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "درج الإخراج ممتلئ"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "انخفاض في مستوى الحبر"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "لا يوجد حبر"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "حذف صفحة"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "تدخل المستخدم مطلوب"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "ذاكرة غير كافية"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "الغطاء مفتوح"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "وضع توفير الطاقة"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "الطابعة المبدئيّة"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d مستندات"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<بلا>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "الشركة"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "القسم"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "الاسم الأول"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "اسم الأخير"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "الشارع"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "الدولة"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "الرمز البريدي"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "المدينة"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "المسمى الوظيفي"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "الموضع"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "نموذج العناوين"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "الحروف البادئة"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "إطراء ختامي"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "الهاتف: منزل"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "الهاتف: عمل"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "عنوان URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "ملاحظة"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "User 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "User 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "User 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "User 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "المُعرّف"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "الولاية"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "الهاتف: مكتب"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "جهاز النداء"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "المحمول"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "الهاتف: آخر"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "التقويم"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "دعوة"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "ضبط %PRODUCTNAME تغيّر. من \"%PRODUCTNAME - التّفضيلات - %PRODUCTNAME - متقدّم\"، اختر بيئة جافا التّشغيليّة التي تريد أن يستخدمها %PRODUCTNAME."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "ضبط %PRODUCTNAME تغيّر. من \"أدوات - خيارات - %PRODUCTNAME - متقدّم\"، اختر بيئة جافا التّشغيليّة التي تريد أن يستخدمها %PRODUCTNAME."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "يتطلّب %PRODUCTNAME إحدى بيئات جافا التّشغيليّة (JRE) لتنفيذ هذه المهمّة. في بيئة JRE المحدّدة مشكلة. فضلًا اختر إصدارة أخرى أو ثبّت بيئة JRE جديدة واخترها من \"%PRODUCTNAME - التّفضيلات - %PRODUCTNAME - متقدّم\"."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "يتطلّب %PRODUCTNAME إحدى بيئات جافا التّشغيليّة (JRE) لتنفيذ هذه المهمّة. في بيئة JRE المحدّدة مشكلة. فضلًا اختر إصدارة أخرى أو ثبّت بيئة JRE جديدة واخترها من \"أدوات - خيارات - %PRODUCTNAME - متقدّم\". "
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE مطلوب"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "تحديد JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE معيب"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "النص البرمجي"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "علّم الملف"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "الرسومات"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "ملف التهيئة"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "التطبيق"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "جدول قاعدة بيانات"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "ملف النظام"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "مستند ميكروسوفت وورد"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "ملف مساعدة"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "مستند HTML"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "ملف أرشيف"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "ملف سجل"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "قاعدة بيانات StarOffice"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "مستند StarWriter 4.0 / 5.0 رئيسي"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "صورة StarOffice"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "ملف نصي"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "ارتباط"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "قالب StarOffice 3.0 - 5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "مستند ميكروسوفت إكسل"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "قالب ميكروسوفت إكسل"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "ملف تصحيح"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ملف"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "المجلد"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "مستند نصي"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "جدول مُمتد"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "عرض تقديمي"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "الرسم"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "مستند HTML"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "مستند شامل"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "الصيغة"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "قاعدة بيانات"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "قالب جدول أوبن‌أوفيس.أورج 1.0 مُمتد"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "قالب رسمة أوپن‌أُفِس.أورغ 1.0"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "قالب عرض أوپن‌أُفِس.أورغ 1.0 تقديميّ"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "قالب مستند أوپن‌أُفِس.أورغ 1.0 نصّيّ"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "محرك أقراص محلي"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "محرك الأقراص"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "محرك الأقراص المدمجة"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "اتصال شبكي"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "مستند ميكروسوفت باوربوينت"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "قالب ميكروسوفت باوربوينت"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "عرض ميكروسوفت باوربوينت"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "صيغة أوبن‌أوفيس.أورج 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "رسم أوبن‌أوفيس.أورج 1.0 بياني"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "رسمة أوبن‌أوفيس.أورج 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "جدول أوبن‌أوفيس.أورج 1.0 مُمتد"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "عرض أوبن‌أوفيس.أورج 1.0 تقديمي"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "مستند أوبن‌أوفيس.أورج 1.0 نصي"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "مستند أوبن‌أوفيس.أورج 1.0 رئيسي"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "مستند MathML"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "قاعدة بيانات OpenDocument"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "رسم OpenDocument"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "صيغة OpenDocument"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "مستند OpenDocument رئيسي"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "عرض OpenDocument تقديمي"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "جدول OpenDocument مُمتد"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "نص OpenDocument"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "قالب جدول OpenDocument مُمتد"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "قالب رسم OpenDocument"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "قالب عرض OpenDocument تقديمي"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "قالب نص OpenDocument"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "امتداد %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/ar/svx/messages.po b/source/ar/svx/messages.po
index 1c1978377ef..7f9d1887616 100644
--- a/source/ar/svx/messages.po
+++ b/source/ar/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-05-20 11:22+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Arabic <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/ar/>\n"
@@ -16498,11 +16498,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "علامات الب_دل"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "ال_تعليقات"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/ar/sw/messages.po b/source/ar/sw/messages.po
index 046ed05338c..a6d6678eb29 100644
--- a/source/ar/sw/messages.po
+++ b/source/ar/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-06-26 08:22+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: Arabic <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/ar/>\n"
@@ -17526,88 +17526,94 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "عام"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "عنوان رئيسي"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
#, fuzzy
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "تكرار صفوف العناوين على _الصفحات الجديدة"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "لا _تقسم الجدول على صفحات"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
#, fuzzy
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "ترويسات الص_فوف:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "خيارات"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20160,291 +20166,291 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "منظور الملاحة في المحتوى"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "ترويسة"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "تذييل"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "المربط<->النص"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
#, fuzzy
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "رفع المستوى"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
#, fuzzy
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "خفض مستوى"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "وضع السحب"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "المستند"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "النافذة النشطة"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "حرّر"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "تحديث"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "أدرِج"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "احفظ المحتويات أيضا"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "انقل لأعلى"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "انقل لأسفل"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/as/sc/messages.po b/source/as/sc/messages.po
index 0e21550b536..e6a8fae98f6 100644
--- a/source/as/sc/messages.po
+++ b/source/as/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29374,39 +29374,45 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
#, fuzzy
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "দস্তাবেজ ফৰ্মেটিংৰ বাবে প্ৰিন্টাৰ মেট্ৰিক্স ব্যৱহাৰ কৰক"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr ""
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr ""
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr ""
diff --git a/source/as/sfx2/messages.po b/source/as/sfx2/messages.po
index 201bec109cb..23893b3b027 100644
--- a/source/as/sfx2/messages.po
+++ b/source/as/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-10-21 19:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1641,289 +1641,251 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "ডক"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "আনডক"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "অধিক বিকল্প"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "কাষবাৰ ডেক বন্ধ কৰক"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr ""
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "স্বনিৰ্বাচন"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "অবিকল্পিত পুনৰুদ্ধাৰ কৰক"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr ""
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "আতৰাওক"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4241,6 +4203,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "মচি পেলাওক..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/as/starmath/messages.po b/source/as/starmath/messages.po
index c728bc949b8..e5a6a95493f 100644
--- a/source/as/starmath/messages.po
+++ b/source/as/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+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"
@@ -423,2090 +423,2223 @@ msgid "or"
msgstr "অথবা"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+ চিহ্ন"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "- চিহ্ন"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+- চিহ্ন"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "-+ চিহ্ন"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "বুলীয়েন NOT"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "সংযোজন +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "বিয়োগ -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
#, fuzzy
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "পূৰণ (বিন্দু)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "পূৰণ (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "পূৰণ (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "বিভাজন (শ্লেশ্ব্)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "বিভাজন (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "বিভাজন (ভগ্নাংশ)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "বুলিয়েন AND"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "বুলিয়েন OR"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "সমান"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "সমান নহয়"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "কম"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "অধিক"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "কম বা সমান হয়"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "ডাঙৰ বা সমান"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "কম বা সমান হয়"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "ডাঙৰ বা সমান"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr ""
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
#, fuzzy
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "অধিক"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "সর্বসম"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "প্রায় সমান"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "একে"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "একে বা সমান"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "সমানুপাতিক"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "সমকোণাকাৰ"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "সমান্তৰাল"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "ফালে"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "ত আছে"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "ত নাই"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "অধিকাৰী হয়"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "সংযুক্তকৰণ"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "খণ্ডিত কৰক"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "পার্থক্য"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "উপসংহতি"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "উপসংহতি বা সমান"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "উত্তমসংহতি"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "চুপাৰচেট বা সমান"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "উপসংহতি নহয়"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "উপসংহতি বা সমান নহয়"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "উত্তমসংহতি নহয়"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "উত্তমসংহতি বা সমান নহয়"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "প্রকৃত মূল্য"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "গৌণিক"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "বৰ্গ মূল"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N তম বর্গমূল"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "সূচকীয় ফলন"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "সূচকীয় ফলন"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "স্বাভাৱিক লগাৰিথম"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "লগাৰিথম"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "ছাইন"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "কোছাইন"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "স্পৰ্শক"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "সহস্পৰ্শক"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "আর্কছাইন"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "আর্ককোছাইন"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "আর্কটানজেণ্ট"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "আৰ্ককোটানজেন্ট"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "অতিপৰাবৃত্তীয় ছাইন"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "অতিপৰাবৃত্তীয় কোছাইন"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "অতিপৰাবৃত্তীয় স্পৰ্শক"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "অতিপৰাবৃত্তীয় সহস্পৰ্শক"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "ক্ষেত্ৰফল অতিপৰাবৃত্তীয় ছাইন"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "ক্ষেত্ৰফল অতিপৰাবৃত্তীয় কোছাইন"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "ক্ষেত্ৰফল অতিপৰাবৃত্তীয় স্পৰ্শক"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "ক্ষেত্ৰফল অতিপৰাবৃত্তীয় সহস্পৰ্শক"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "যোগফল"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
#, fuzzy
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "ছাবস্ক্ৰিপ্ট তলৰ"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
#, fuzzy
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "ছুপাৰস্ক্ৰিপ্ট ওপৰৰ"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr ""
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "উৎপাদন"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
#, fuzzy
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "ছাবস্ক্ৰিপ্ট তলৰ"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr ""
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr ""
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "সহ-উৎপাদন"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
#, fuzzy
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "ছাবস্ক্ৰিপ্ট তলৰ"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr ""
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr ""
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "লাইমছ"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
#, fuzzy
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "ছাবস্ক্ৰিপ্ট তলৰ"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
#, fuzzy
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "ছুপাৰস্ক্ৰিপ্ট ওপৰৰ"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr ""
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "তাত অস্তিত্ব আছে"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "তাত অস্তিত্ব নাই"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
#, fuzzy
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "সকলোৰে বাবে"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "সমাকলন"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "দুগুণ সমাকলন"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "তিনিগুণ সমাকলন"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "বক্র সমাকলন"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "দুগুণ বক্র সমাকলন"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "তিনিগুণ বক্ৰ সমাকলন"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "জটিল স্বৰাঘাত"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "ওপৰৰ ৰেখা"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "সুৰৰ মাত্রা"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "ওলোটা ছাৰ্কামফ্লেক্স"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "বৃত্ত"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "বিন্দু"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "দ্বৈত বিন্দু"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "তিনিগুণ বিন্দু"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "গম্ভীৰ স্বৰাঘাত"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "ছার্কামফ্লেক্স"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "টিল্ড"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "ভেক্টৰ কাঁড়"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "তলৰ ৰেখা"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "ৰেখাৰ ওপৰ"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "ৰেখাৰ জৰিয়তে"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "স্বচ্ছ"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "ডাঠ ফন্ট"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "ইটালীক ফন্ট"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "পুনৰ আকাৰ দিয়ক"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "ফন্ট সলনি কৰক"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr ""
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr ""
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr ""
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr ""
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
#, fuzzy
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "ৰঙ নিৰ্বাচক"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
#, fuzzy
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "ৰঙ টেব"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr ""
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "গোট বন্ধনীসমূহ"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "গোলাকাৰ বন্ধনীসমূহ"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "বৰ্গক্ষেত্ৰৰ বন্ধনীসমূহ"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "দ্বৈত বর্গক্ষেত্র বন্ধনী"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "ধনুৰ্বন্ধনীসমূহ"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "কোণ বন্ধনীসমূহ"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr ""
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "এটা শাৰী"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "দ্বৈত ৰেখাসমূহ"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "অপাৰেটৰ বন্ধনীসমূহ"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "গোলাকাৰ বন্ধনীসমূহ (জুখিব পৰা)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "বৰ্গক্ষেত্ৰৰ বন্ধনীসমূহ (জুখিব পৰা)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "দ্বৈত বৰ্গক্ষেত্ৰৰ বন্ধনীসমূহ (জুখিব পৰা)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "ধনুৰ্বন্ধনীসমূহ (জুখিব পৰা)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "কোণ বন্ধনীসমূহ (জুখিব পৰা)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "একমাত্ৰ ৰেখাসমূহ (জুখিব পৰা )"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "দ্বৈত ৰেখাসমূহ (জুখিব পৰা)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "অপাৰেটৰ বন্ধনীসমূহ (জুখিব পৰা)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "ধনুৰ্বন্ধনীসমূহৰ ওপৰ (জুখিব পৰা)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "ধনুৰ্বন্ধনীসমূহৰ তল (জুখিব পৰা)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "ছাবস্ক্ৰিপ্ট সোঁফালৰ"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "ঘাত"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "ছাবস্ক্ৰিপ্ট বাওঁফালৰ"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "ছুপাৰস্ক্ৰিপ্ট বাওঁফালৰ"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "ছাবস্ক্ৰিপ্ট তলৰ"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "ছুপাৰস্ক্ৰিপ্ট ওপৰৰ"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "সৰু ব্যৱধান"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
#, fuzzy
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "খালী"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "নতুন শাৰী"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "উলম্ব ষ্টেক (দুটা উপাদান)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "উলম্ব ষ্টেক"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "মেট্রিক্স ষ্টেক"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "বাওঁফালে সংৰেখন"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "কেন্দ্ৰলৈ সংৰেখন"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "সোঁফালে সংৰেখন"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "আলেফ"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "খালী সংহতি"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "প্ৰকৃত অংশ"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "কাল্পনিক ভাগ"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
#, fuzzy
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "অসীম"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "আংশিক"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "নাবলা"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "মধ্যভাগত বিন্দুসমূহ"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "ওপৰলৈ বিন্দুসমূহ"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
#, fuzzy
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "তললৈ বিন্দুসমূহ"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "তলত বিন্দুসমূহ"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "উলম্বভাৱে বিন্দুসমূহ"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "শৃংঙ্খলা"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
#, fuzzy
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "বিভাজন (শ্লেশ্ব্)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "ভাগ কৰে"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "ভাগ নকৰে"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "দ্বৈত কাঁড় বাওঁফালৰ"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "দ্বৈত কাঁড় বাওঁফালৰ আৰু সোঁফালৰ"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "দ্বৈত কাঁড় সোঁফালৰ"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "স্বাভাৱিক সংখ্যাসমূহৰ সংহতি"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "পূৰ্ণ সংখ্যাসমূহৰ সংহতি"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "প্ৰকৃত সংখ্যাসমূহৰ সংহতি"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "বাস্তৱ সংখ্যাসমূহৰ সংহতি"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "জটিল সংখ্যাসমূহৰ সংহতি"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "ডাঙৰ ছার্কামফ্লেক্স"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "ডাঙৰ টিল্ডসমূহ"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "ডাঙৰ ভেক্টৰ কাঁড়"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h বাৰ"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "লেম্বডা বাৰ"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "বাওঁফালৰ কাঁড়"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "সোঁফালৰ কাঁড়"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "ওপৰৰ কাঁড়"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "তলৰ কাঁড়"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr ""
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "আগত আহে"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "আগত আহে অথবা সমান"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "আগত আহে অথবা সমতূল্য"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "পিছত আহে"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "পিছত আহে অথবা সমান"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "পিছত আহে অথবা সমতূল্য"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "আগত নাহে"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "পিছত নাহে"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "ইউনেৰী/বাইনেৰী অপাৰেটৰসমূহ"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "সম্বন্ধসমূহ"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "অপাৰেশ্বন সংহতি কৰক"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "ফলনসমূহ"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "অপাৰেটৰসমূহ"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "বৈশিষ্টসমূহ"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "বন্ধনীসমূহ"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "বিন্যাসসমূহ"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "অন্য"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "উদাহৰণসমূহ"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "প্ৰামাণিক"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "ইটালীক"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "ডাঠ"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "কলা"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "নীলা"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "সেউজীয়া"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "ৰঙা"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "মটিয়া"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "নেমু"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "কৃষ্ণৰক্তবৰ্ণ"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "ইষৎনীলা"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "জলফাই"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "জামুকলীয়া"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "ৰূপ"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "টিল"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "হালধীয়া"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "লুকুৱাওক"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "আকাৰ"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "আখৰ"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "বাওঁফাল"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "কেন্দ্ৰ"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "সোঁফাল"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "কমান্ডসমূহ"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "সূত্রসমূহ"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "দস্তাবেজ সংৰক্ষণ কৰা হৈছে..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION সূত্ৰ"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "অপ্ৰত্যাশিত আখৰ"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' প্রত্যাশিত"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' প্রত্যাশিত"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' প্রত্যাশিত"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' প্রত্যাশিত"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' প্রত্যাশিত"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "আৱশ্যকীয় ৰং"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' প্রত্যাশিত"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "সমলসমূহ"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "শীৰ্ষক"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "সূত্র লিখনী"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "সীমাৰেখাবোৰ"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "আকাৰ"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "প্ৰকৃত আকাৰ"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "পৃষ্ঠাত খাপ খুৱাওক"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
diff --git a/source/as/svtools/messages.po b/source/as/svtools/messages.po
index 3d2eb0ae45c..9c6732ae4bc 100644
--- a/source/as/svtools/messages.po
+++ b/source/as/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,482 +17,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "বাতিল কৰক: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "পুনৰাবৃত্তি (~R): "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "ফৰমেট নকৰা টেক্সট"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx ইন্টাৰনেট সংযোগৰ পৰা স্থিতিৰ তথ্য"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "নেটস্কেপ পৃষ্ঠাসংকেত"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "ষ্টাৰ ছাৰ্ভাৰ ফৰমেট"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "ষ্টাৰ বস্তু ফৰমেট"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "এপলেট বস্তু"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "প্লাগ-ইন বস্তু"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "ষ্টাৰৰাইটাৰ 3.0 বস্তু"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "ষ্টাৰৰাইটাৰ 4.0 বস্তু"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "ষ্টাৰৰাইটাৰ 5.0 বস্তু"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "ষ্টাৰৰাইটাৰ/ৱেব 4.0 বস্তু"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "ষ্টাৰৰাইটাৰ/ৱেব 5.0 বস্তু"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "ষ্টাৰৰাইটাৰ/মাষ্টাৰ 4.0 বস্তু"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "ষ্টাৰৰাইটাৰ/মাষ্টাৰ 5.0 বস্তু"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "ষ্টাৰড্ৰ বস্তু"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 বস্তু"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 বস্তু"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "ষ্টাৰড্ৰ 5.0 বস্তু"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "ষ্টাৰকেলক বস্তু"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 বস্তু"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "ষ্টাৰকেলক 5.0 বস্তু"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "ষ্টাৰছাৰ্ট বস্তু"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "ষ্টাৰছাৰ্ট 4.0 বস্তু"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 object"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "ষ্টাৰইমেজ বস্তু"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 বস্তু"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 বস্তু"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "ষ্টাৰমেথ বস্তু"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 বস্তু"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 বস্তু"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "ষ্টাৰঅবজেক্ট পেইন্ট বস্তু"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "ছিল্ক"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "মাইক্ৰছফট ৱৰ্ড বস্তু"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "ষ্টাৰফ্ৰেমছেট বস্তু"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "অফিচ ডকুমেন্ট বস্তু"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "টিপ্পনী ডকুমেন্ট তথ্য"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx ডকুমেন্ট"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 object"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "গ্রাফিক বস্তু"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer অবজেক্ট"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web অবজেক্ট"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Master অবজেক্ট"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw অবজেক্ট"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress অবজেক্ট"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc অবজেক্ট"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart অবজেক্ট"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math অবজেক্ট"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "উইণ্ডজ মেটাফাইল"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "ডাটা উত্সৰ বস্তু"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "ডাটা উত্সৰ টেবুল"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL প্ৰশ্ন"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 ডাইলগ"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "সংযোগ"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML মন্তব্যবোৰৰ অবিহনে ফৰমেট"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "% বস্তু ভৰাব পৰা নগ'ল."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "% ফাইলৰ পৰা বস্তু ভৰাব পৰা নগ'ল."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "অতিৰিক্ত বস্তুবোৰ"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "অজ্ঞাত উত্স"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "বাইটছ"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -500,1244 +500,1244 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "আলফানিউমাৰিক"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "সাধাৰণ"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "আখৰৰ সমষ্টি"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "অভিধান"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "পিনয়িন"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "ষ্ট্ৰোক"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "বিস্তৃত"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "ইউনিক'ড"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "জ্যুয়িন"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "ফোন বুক"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "ধ্বনিবৈজ্ঞানিক (প্রথম আলফানিউমাৰিক)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "ধ্বনিবৈজ্ঞানিক (অন্তিম আলফানিউমাৰিক)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "আলফানিউমাৰিক"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "অভিধান"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "পিনয়িন"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "বিস্তৃত"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "ষ্ট্ৰোক"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "জ্যুয়িন"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "ধ্বনিবৈজ্ঞানিক (প্রথম আলফানিউমাৰিক, শব্দাংশবোৰৰ দ্বাৰা গোট কৰা হ'ল)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "ধ্বনিবৈজ্ঞানিক (প্রথম আলফানিউমাৰিক, ব্যঞ্জনবৰ্ণবোৰৰ দ্বাৰা গোট কৰা হ'ল)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "ধ্বনিবৈজ্ঞানিক (অন্তিম আলফানিউমাৰিক, শব্দাংশবোৰৰ দ্বাৰা গোট কৰা হ'ল)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "ধ্বনিবৈজ্ঞানিক (অন্তিম আলফানিউমাৰিক, ব্যঞ্জনবৰ্ণবোৰৰ দ্বাৰা গোট কৰা হ'ল)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "পাতল"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "পাতল ইটালিক"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "নিয়মিত"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "ইটালিক"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "বল্ড"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "বল্ড ইটালীক"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "ক'লা"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "ক'লা ইটালীক"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "কিতাপ"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "সংক্ষিপ্ত"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "অৰ্ধ ডাঠ"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "আপোনাৰ মুদ্ৰণ যন্ত্ৰ আৰু পৰ্দা দুয়োটাতে একে আখৰ ব্যৱহাৰ কৰা হ'ব."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "এইটো এটা মুদ্ৰণ যন্ত্ৰৰ আখৰ. পৰ্দাৰ ছবি বেলেগ হ'ব পাৰে."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "আখৰ শৈলীটো অনুকৰণ কৰা হ'ব বা নিকটতম অনুৰূপ শৈলীটো ব্যৱহৃত হ'ব."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "আখৰটো ইনষ্টল কৰা হোৱা নাই. নিকটতম উপলব্ধ আখৰটো ব্যৱহৃত হ'ব."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "ঘৰলে স্থানান্তৰ কৰক"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "বাওঁফালে নিয়ক"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "সোঁফালে নিয়ক"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "শেষলে স্থানান্তৰ কৰক"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "যোগ কৰক"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "আনুভূমিক ৰুলাৰ"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "উল্লম্ব ৰুলাৰ"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "১ বিট ধাপ"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "১ বিট ডিথাৰ্ড"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "৪ বিট ধোঁৱা বৰন"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "৪ বিট ৰং"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "৪ বিট ধোৱা বৰন"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "৪ বিট ৰং"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "২৪ বিট সঁচা ৰং"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "ছবিটোৰ %1 KB মেমৰিৰ প্ৰয়োজন।"
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "ছবিটোৰ %1 KB মেমৰিৰ প্ৰয়োজন, ফাইল আকাৰ %2 KB।"
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "ফাইল আকাৰ %1 KB।"
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "মূল্য"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "বৰ্গীকৰণ কৰক"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "প্ৰস্তুত"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "থমকি ৰ'ল"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "আঁতৰকৰণ অপেক্ষাৰত"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "ব্যস্ত"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "ইনিশ্বিয়েলাইজিং"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "অপেক্ষাৰত"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "গৰম কৰা হৈছে"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "কাৰ্য চলি আছে"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "প্ৰিন্ট হৈ আছে"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "অফলাইন"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "ভুল"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "অজ্ঞাত ছাৰ্ভাৰ"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "কাগজৰ ঠাহ"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "কাগজ যথেষ্ট নাই"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "মেনুৱেল ফীড"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "কাগজৰ সমস্যা"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O সক্রিয়"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "আউটপুট বিন ভর্তি"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "টোনাৰ কম হৈছে"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "কোনো টোনাৰ নাই"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "পৃষ্ঠা ডিলিট কৰক"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "ব্যৱহাৰকৰ্তাৰ হস্তক্ষেপৰ প্ৰয়োজন"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "পৰ্যাপ্ত স্মৃতি নাই"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "আচ্ছাদন আঁতৰাওক"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "ঘাত ছেভ কৰাৰ প্ৰকাৰ"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "অবিকল্পিত প্ৰিন্টাৰ"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d ডকুমেন্টবোৰ"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<none>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "সংস্থা"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "বিভাগ"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "প্রথম নাম"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "অন্তিম নাম"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "পথ"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "দেশ"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "ZIP ক'ড"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "চহৰ"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "শিৰোনাম"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "স্থান"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "ঠিকনা ফর্ম"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "স্বাক্ষৰবোৰ"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "পূৰক বন্ধ"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "টেলিফোন: ঘৰ"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "টেলিফোন: কাম"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "টিপ্পনী"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "ব্যৱহাৰকৰ্তা 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "ব্যৱহাৰকৰ্তা 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "ব্যৱহাৰকৰ্তা 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "ব্যৱহাৰকৰ্তা 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "ৰাজ্য"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "টেলিফোন: কাৰ্যালয়"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "পেজৰ"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "টেলিফোন (ম'বাইল)"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "টেলিফোন: অন্যান্য"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "কেলেণ্ডাৰ"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "নিমন্ত্রণ"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME সংৰূপ সলনি হৈছে। %PRODUCTNAME - পছন্দসমূহ - %PRODUCTNAME - উন্নতৰ অন্তৰ্গত, আপুনি %PRODUCTNAME দ্বাৰা ব্যৱহাৰ কৰিব বিচৰা Java ৰানটাইম পৰিৱেশ বাছক।"
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME সংৰূপটো সলনি কৰা হৈছে। টুলবোৰ - বিকল্পবোৰ - %PRODUCTNAME - উন্নতৰ অন্তৰ্গত, %PRODUCTNAME ৰ দ্বাৰা ব্যৱহৃত আপুনি পাবলৈ বিচৰা Java ৰানটাইম পৰিৱেশটো বাছক।"
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "এই কাৰ্য্যটো সম্পন্ন কৰিবলৈ %PRODUCTNAME ক এটা Java ৰানটাইম পৰিৱেশ (JRE) ৰ প্ৰয়েজন। নিৰ্বাচিত JRE টো ত্ৰুটিপূৰ্ণ। অনুগ্ৰহ কৰি অন্য সংস্কৰণ বাছক অথবা এটা নতুন JRE ইনস্টল কৰক আৰু ইয়াক %PRODUCTNAME - পছন্দসমূহ - %PRODUCTNAME - উন্নতৰ অন্তৰ্গত বাছক।"
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "এই কাৰ্য্যটো সম্পন্ন কৰিবলৈ %PRODUCTNAME ক এটা Java ৰানটাইম পৰিৱেশ (JRE) ৰ প্ৰয়োজন। নিৰ্বাচিত JRE টো ত্ৰুটিপূৰ্ণ। অনুগ্ৰহ কৰি অন্য সংস্কৰণ বাছক বা এটা নতুন JRE ইনস্টল কৰক আৰু ইয়াক টুলবোৰ - বিকল্পবোৰ - %PRODUCTNAME - উন্নতৰ অন্তৰ্গত বাছক।"
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE ৰ প্ৰয়োজন আছিল"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE বাছক"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE ত্ৰুটিপূৰ্ণ"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "উৎস ক'ড"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "পত্ৰচিহ্ন ফাইল"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "গ্রাফিক্স"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "সংৰূপ ফাইল"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "এপ্লিকেন"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "ডাটাবেইচৰ টেবুল"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "চিস্টেম ফাইল"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS-Word দস্তাবেজ"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "সহায় ফাইল"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML দস্তাবেজ"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "আর্কাইভ ফাইল"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "লগ ফাইল"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice ডাটাবেইচ"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 মাষ্টাৰ দস্তাবেজ"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice ছবি"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "লিখনী ফাইল"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "সংযোগ"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 টেমপ্লেইট"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel দস্তাবেজ"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel টেমপ্লেইট"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "চাম ফাইল"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ফাইল"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ফল্ডাৰ"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "লিখনী দস্তাবেজ"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "স্প্ৰেডশ্বীট্"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "পৰিৱেশন"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "অঙ্কণ"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML দস্তাবেজ"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "মাষ্টাৰ দস্তাবেজ"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "সূত্র"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "ডাটাবেইচ"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 স্প্ৰেডশ্বিট টেমপ্লেইট"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 অঁকা টেমপ্লেইট"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 উপস্থাপন টেমপ্লেইট"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 লিখনী দস্তাবেজ টেমপ্লেইট"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "স্থানীয় ড্রাইভ"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "ডিস্ক ড্ৰাইভ"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM ড্রাইভ"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "নেটৱাৰ্ক সংযোগ"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint দস্তাবেজ"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint টেমপ্লেইট"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint দৰ্শন"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 সূত্ৰ"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 Chart"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 অঁকা"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 স্প্ৰেডশ্বিট"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 উপস্থাপন"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 লিখনী দস্তাবেজ"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 মূখ্য দস্তাবেজ"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML দস্তাবেজ"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument দস্তাবেজ"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument অঙ্কণ"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument সূত্র"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument মাষ্টাৰ দস্তাবেজ"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument পৰিৱেশন"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument স্প্ৰেডশ্বীট"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument লিখনী"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument স্প্ৰেডশ্বীট টেমপ্লেইট"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument অঙ্কণ টেমপ্লেইট"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument পৰিৱেশন টেমপ্লেইট"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument লিখনী টেমপ্লেইট"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME সম্প্ৰসাৰন"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/as/svx/messages.po b/source/as/svx/messages.po
index de6f50c5817..ff834d3c40e 100644
--- a/source/as/svx/messages.po
+++ b/source/as/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-05-20 11:22+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Assamese <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/as/>\n"
@@ -16687,12 +16687,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
-#, fuzzy
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "মন্তব্যসমূহ"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/as/sw/messages.po b/source/as/sw/messages.po
index 4ed6f07f4b0..ceb6adf413c 100644
--- a/source/as/sw/messages.po
+++ b/source/as/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17883,88 +17883,94 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "সাধাৰণ"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "শিৰোনাম (_d)"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
#, fuzzy
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "নতুন পৃষ্ঠাসমূহত শিৰোনাম শাৰীসমূহ পুনৰাবৃত্তি কৰক (_p)"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "টেবুলসমূহক পৃষ্ঠাসমূহৰ ওপৰত বিভাজন নকৰিব (_s)"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
#, fuzzy
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "শিৰোনাম শাৰীসমূহ (_w):"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "বিকল্পসমূহ"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20587,295 +20593,295 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "হেডাৰ"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "ফুটাৰ"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
#, fuzzy
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "স্তৰ সক্ৰিয় কৰক"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
#, fuzzy
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "স্তৰ নিক্ৰিয় কৰক"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
#, fuzzy
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "ড্ৰেগ কৰাৰ প্ৰকাৰ"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "দস্তাবেজ"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
#, fuzzy
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "সক্রিয় উইণ্ড'"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "সম্পাদনা"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "আপডেট কৰক"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "সুমুৱাওক"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
#, fuzzy
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "ওপৰলৈ যাওক"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
#, fuzzy
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "তললৈ যাওক"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/ast/helpcontent2/source/text/scalc/01.po b/source/ast/helpcontent2/source/text/scalc/01.po
index 766acbfa94e..187c7da1f59 100644
--- a/source/ast/helpcontent2/source/text/scalc/01.po
+++ b/source/ast/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2020-08-18 15:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/ast/>\n"
@@ -56474,6 +56474,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr ""
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/sdraw.po b/source/ast/helpcontent2/source/text/sdraw.po
index cd983587e46..d71b3a39cb0 100644
--- a/source/ast/helpcontent2/source/text/sdraw.po
+++ b/source/ast/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-08-15 14:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/ast/>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/shared/00.po b/source/ast/helpcontent2/source/text/shared/00.po
index 13f01593ad9..21153100168 100644
--- a/source/ast/helpcontent2/source/text/shared/00.po
+++ b/source/ast/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-08-04 11:16+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/ast/>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "Un bon exemplu de base de datos relacional ye una base de datos de compres con tables de Veceru, Compra y Factura. La tabla Factura nun contién realmente datos de veceros nin de compres; sicasí, sí contien, al traviés d'un enllaz relacional o rellación, referencies a los campos correspondiente de les tables de veceros y de compres (por exemplu, el campu DÍI veceru de la tabla de veceros)."
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>Conformidá de rexistru;definir</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "Conformidá de rexistru"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/ast/helpcontent2/source/text/shared/01.po b/source/ast/helpcontent2/source/text/shared/01.po
index b1154d20572..7ef2f4131a7 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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-22 11:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/ast/>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr ""
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr ""
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr ""
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,13 +9376,13 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr ""
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
msgstr ""
#. 3Lq2G
@@ -9430,13 +9412,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr ""
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
msgstr ""
#. nRB3E
@@ -9466,13 +9448,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr ""
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
msgstr ""
#. F4J5u
@@ -9601,13 +9583,13 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr ""
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
msgstr ""
#. ijR7M
@@ -9709,13 +9691,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr ""
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
msgstr ""
#. ADEyJ
@@ -9745,13 +9727,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
msgstr ""
#. GqEUL
@@ -9781,13 +9763,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
msgstr ""
#. DLEGF
diff --git a/source/ast/helpcontent2/source/text/shared/02.po b/source/ast/helpcontent2/source/text/shared/02.po
index 3845bba7933..b031b080792 100644
--- a/source/ast/helpcontent2/source/text/shared/02.po
+++ b/source/ast/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-08-05 15:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/ast/>\n"
@@ -11033,14 +11033,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Amenorgar sangría</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11060,14 +11060,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Iconu</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11105,14 +11105,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr ""
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Aumentar sangría</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11132,14 +11132,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Iconu</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/optionen.po b/source/ast/helpcontent2/source/text/shared/optionen.po
index ef0a5aa2d87..f5f513c47c8 100644
--- a/source/ast/helpcontent2/source/text/shared/optionen.po
+++ b/source/ast/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-08-18 15:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-20 06:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/ast/>\n"
"Language: ast\n"
@@ -10805,7 +10805,7 @@ msgctxt ""
"par_id3151242\n"
"help.text"
msgid "<emph>Example</emph>: Cell E5 contains the text \"Europe\". Below, in cell E6, is the value 100 and in cell E7 the value 200. If the <emph>Automatically find column and row labels</emph> box is marked, you can write the following formula in cell A1: =SUM(Europe)."
-msgstr "<emph>Exemplu</emph>: La caxella Y5 contién el testu \"Europa\". Debaxo, na caxella Y6, atópase'l valor 100 y na caxella Y7 el valor 200. Si la opción <emph>Guetar automáticamente les etiquetes de fileres y columnes</emph> ta escoyida, pue escribir la fórmula siguiente na caxella A1: =SUMA(Europa)."
+msgstr "<emph>Exemplu</emph>: la caxella Y5 contién el testu «Europa». Debaxo, na caxella Y6, atópase'l valor 100 y na caxella Y7 el valor 200. Si la opción <emph>Guetar automáticamente les etiquetes de fileres y columnes</emph> ta escoyida, pues escribir la fórmula siguiente na caxella A1: =SUMA(Europa)."
#. zDS7k
#: 01060500.xhp
@@ -11860,32 +11860,32 @@ msgctxt ""
msgid "Snap"
msgstr "Prindar"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "En llinies de captura"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "Esta configuración pue establecese tamién por aciu l'iconu <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Axustar a les guíes\"><emph>Axustar a les guíes</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Axustar a les guíes\"><emph>Axustar a les guíes</emph></link></caseinline><defaultinline><emph>Axustar a les guíes</emph></defaultinline></switchinline>, disponible na <emph>barra d'opciones</emph> d'una presentación o documentu de dibuxu."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr ""
#. eUCCJ
#: 01070300.xhp
diff --git a/source/ast/helpcontent2/source/text/simpress/02.po b/source/ast/helpcontent2/source/text/simpress/02.po
index 6f474404fb4..00dbb0c3bad 100644
--- a/source/ast/helpcontent2/source/text/simpress/02.po
+++ b/source/ast/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-08-15 14:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress02/ast/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1507112012.000000\n"
#. AiACn
@@ -5695,41 +5695,41 @@ msgctxt ""
msgid "Exit all groups"
msgstr "Salir de tolos grupos"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Alliniar a les llinies de guía"
+msgid "Snap to Snap Guides"
+msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Alliniar a les llinies de guía</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Iconu</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Alliniar a les llinies de guía"
+msgid "Snap to Snap Guides"
+msgstr ""
#. oXWsX
#: 13150000.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter.po b/source/ast/helpcontent2/source/text/swriter.po
index f37f815fe60..745301ab83c 100644
--- a/source/ast/helpcontent2/source/text/swriter.po
+++ b/source/ast/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-05-27 09:52+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/ast/>\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "D'esquierda a derecha"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">iconu d'esquierda a derecha</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "De derecha a esquierda"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">iconu de derecha a esquierda</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/01.po b/source/ast/helpcontent2/source/text/swriter/01.po
index cf4cd51aaad..9bb89da004b 100644
--- a/source/ast/helpcontent2/source/text/swriter/01.po
+++ b/source/ast/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-22 11:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/ast/>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "Navegador"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Abre'l diálogu <emph>Destinatarios de combinar correspondencia</emph>.</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/swriter/guide.po b/source/ast/helpcontent2/source/text/swriter/guide.po
index 918b2d12874..8574e642ca5 100644
--- a/source/ast/helpcontent2/source/text/swriter/guide.po
+++ b/source/ast/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-10-22 11:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/ast/>\n"
@@ -7792,50 +7792,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr ""
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "Escueye <item type=\"menuitem\">Formateo - Párrafo - Sangría y Espaciu</item> pa camudar la sangría pal párrafu corriente o pa tolos párrafos escoyíos.Tamién pue <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">afitar sangría utilizando la regla</link>."
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "Tamién pue <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">afitar indentación usando la regla</link>. P'amosar la regla, escueye <item type=\"menuitem\">Vista - Regla</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "Escueye <item type=\"menuitem\">Formateo - Párrafo - Sangría y Espaciu</item> pa camudar la sangría pal párrafu corriente o pa tolos párrafos escoyíos.Tamién pue <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">afitar sangría utilizando la regla</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "Tamién pue <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">afitar indentación usando la regla</link>. P'amosar la regla, escueye <item type=\"menuitem\">Vista - Regla</item>."
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "Faiga clik derechu y escoyer <item type=\"menuitem\">Edita Estilu de Parráffo - Sangría y Espaciu</item> pa camudar la sangría pa tolos parágrafos que tien el mesmu estilu de párrafu."
+msgid "Positioning indents"
+msgstr ""
#. qUxKq
#: indenting.xhp
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "Indents llabre calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr ""
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "Les sangríes difieren según la direición de la escritura. Por exemplu, compare'l valor de <item type=\"menuitem\">Enantes del testu</item> nos idiomes que s'escriben d'esquierda a derecha. El borde esquierdu del párrafu sangra respectu al marxe esquierdu de la páxina. Nos idiomes que s'escriben de derecha a esquierda, aplícase sangría nel estremu derechu del párrafu respecto al marxe derechu de la páxina."
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "Al colgar sangríes, asigne un valor positivu a <item type=\"menuitem\">Enantes del testu</item> y unu negativu a <item type=\"menuitem\">Primer llinia</item>."
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,14 +10294,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "Desactivar la reconocencia de númberos en tables"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>númberos; reconocencia automática en tables de testu</bookmark_value> <bookmark_value>tables; reconocencia de númberos</bookmark_value> <bookmark_value>feches;formatu automáticu en tables</bookmark_value> <bookmark_value>reconocencia;númberos</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10267,14 +10330,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Siga unu d'estos procedimientos:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "Faiga clic col botón derechu del mur sobre una caxella de la tabla y escueya <item type=\"menuitem\">Reconocencia de númberos</item>. Cuando esta función ta activada, amuésase una marca de comprobación delantre del comandu <item type=\"menuitem\">Reconocencia de númberos</item>."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr "Escueya <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencies</caseinline><defaultinline>Ferramientes - Opciones</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Tabla</item>, y escueya o desmarque'l caxellu de verificación <item type=\"menuitem\">Reconocencia de númberos</item>."
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12211,6 +12292,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "Cuando cree un documentu que se deba imprentar como folletu, asigne a les páxines orientación vertical. Writer aplica'l diseñu de folletu al imprentar el documentu."
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12256,50 +12355,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "Si la so imprentadora tien función dúplex, y tenemos en cuenta que los folletos suelen imprimise n'horizontal, tien d'utilizar la opción \"dúplex - orientación vertical\" nel diálogu de configuración de la so imprentadora."
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
-msgstr "Torne al diálogu de <emph>Imprentar</emph> y faiga clic na páxina de la llingüeta <emph>Diseñu de páxina</emph>."
+msgid "Return to <emph>Print</emph> dialog."
+msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
-msgstr "Escueya <emph>Prospeutu</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
+msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "Si tratar d'una imprentadora qu'imprime de forma automática nos dos llaos d'una fueya, especifique que s'incluyan \"Toles páxines\"."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Calque <emph>Aceutar</emph>."
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "Si %PRODUCTNAME imprime les páxines nun orde incorrectu, abra la páxina de la llingüeta <emph>Opciones</emph> y escueya <emph>Imprentar n'orde invertíu</emph>, ya imprima nuevamente'l documentu."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr ""
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,32 +12724,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Imprentar varias páxines por fueya de papel\">Imprentar delles páxines por fueya de papel</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
-msgstr "Na páxina de la llingüeta <emph>Diseñu de páxina</emph> del diálogu <item type=\"menuitem\">Ficheru - Imprentar</item>, va atopar la opción pa imprentar delles páxines por fueya de papel."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
+msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
-msgstr "Escueya <emph>Documentu - Imprentar</emph> y faiga clic na llingüeta <emph>Diseñu de páxina</emph>."
+msgid "Choose <menuitem>File - Print</menuitem>"
+msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Siga unu d'estos procedimientos:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
index 173508dcea7..f509d0b0273 100644
--- a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ast/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-07 06:35+0000\n"
+"PO-Revision-Date: 2020-11-20 07:13+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1542022492.000000\n"
#. W5ukN
@@ -28629,7 +28629,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Style Inspector"
-msgstr ""
+msgstr "Inspeutor d'estilos"
#. GEHrf
#: Sidebar.xcu
@@ -28783,7 +28783,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Style Inspector"
-msgstr ""
+msgstr "Inspeutor d'estilos"
#. aCGNS
#: Sidebar.xcu
diff --git a/source/ast/sc/messages.po b/source/ast/sc/messages.po
index c29f3dcd4e6..c8da57ac54c 100644
--- a/source/ast/sc/messages.po
+++ b/source/ast/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-02 14:43+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/ast/>\n"
@@ -29205,38 +29205,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Usar les métriques de la impresora pal formatu del testu"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "Especifica que los parámetros de la imprentadora aplicar pa imprentar, según pa formatear la visualización en pantalla."
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Rescamplar la sele_ición nes testeres de la columna/filera"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr ""
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
#, fuzzy
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
diff --git a/source/ast/sfx2/messages.po b/source/ast/sfx2/messages.po
index ca37517abc0..657c83fddfe 100644
--- a/source/ast/sfx2/messages.po
+++ b/source/ast/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-08-30 17:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/ast/>\n"
@@ -1638,288 +1638,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Anclar"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Desanclar"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Más opciones"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Zarrar el panel llateral"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr ""
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Personalización"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Restaurar los predeterminaos"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr ""
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Desaniciar"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(utilícenlu: %STYLELIST)"
@@ -4226,6 +4188,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Desaniciar..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/ast/starmath/messages.po b/source/ast/starmath/messages.po
index e48f1c8d5e5..cc3314ca893 100644
--- a/source/ast/starmath/messages.po
+++ b/source/ast/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-07-15 13:16+0000\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"PO-Revision-Date: 2020-11-20 07:13+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/ast/>\n"
"Language: ast\n"
@@ -425,2071 +425,2204 @@ msgid "or"
msgstr "o"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Signu +"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Signu -"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Signu +-"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Signu -+"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "NON booleanu"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Suma +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Restes -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Multiplicación (Puntu)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Multiplicación (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Multiplicación (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Dixebra (barra oblicua)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "División (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Dixebra (fraición)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
-msgstr ""
+msgstr "Fraición"
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Y booleanu"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "O booleanu"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Ye igual a"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Nun ye igual a"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Ye menor que"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Ye mayor que"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Ye menor o igual que"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Ye mayor o igual que"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Ye menor o igual que"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Ye mayor o igual que"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Ye muncho menor que"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Ye muncho mayor que"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Ye congruente con"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Ye aproximadamente igual a"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Ye asemeyáu a"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Ye asemeyáu o igual"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Ye proporcional a"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Ye ortogonal a"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Ye paralelu a"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Tiende a"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Ta en"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Nun ta en"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Contién"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Xunión"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Interseición"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Diferencia"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Conxuntu parcial"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Conxuntu parcial o igual"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Conxuntu superior"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Conxuntu superior o igual"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Conxuntu non parcial"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Conxuntu non parcial o igual"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Conxuntu non superior"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Conxuntu non superior o igual"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Valor absolutu"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Factorial"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Raíz cuadrada"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "Raíz n"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Función esponencial"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Función esponencial"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Llogaritmu natural"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Llogaritmu"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Senu"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Cosenu"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tanxente"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Cotanxente"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Senu d'arcu"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arcucosenu"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arcutanxente"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arcucotanxente"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Senu hiperbólicu"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Cosenu hiperbólicu"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Tanxente hiperbólica"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Cotanxente hiperbólica"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Senu hiperbólicu d'área"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Cosenu hiperbólicu d'área"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Tanxente hiperbólica d'área"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Cotanxente hiperbólica d'área"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Suma"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Suma con subíndiz inferior"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Suma con superíndiz superior"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Suma con subíndiz y superíndiz"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Productu"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Productu con subíndiz inferior"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Productu con superíndiz superior"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Productu con subíndiz y superíndiz"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Coproductu"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Coproductu con subíndiz inferior"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Coproductu con superíndiz superior"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Coproductu con subíndiz y superíndiz"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Llendes"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Llímite con subíndiz inferior"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Llímite con superíndiz superior"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Llímite con subíndiz y superíndiz"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Esiste"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Nun esiste"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Pa toos"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integral"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Integral con subíndiz inferior"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Integral con superíndiz superior"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integral con subíndiz y superíndiz"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Integral doble"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Integral doble con subíndiz inferior"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Integral doble con superíndiz superior"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Integral doble con subíndiz y superíndiz"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Integral triple"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Integral triple con subíndiz inferior"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Integral triple con superíndiz superior"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Integral triple con subíndiz y superíndiz"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Integral curvillinia"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Integral de curva con subíndiz inferior"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Integral de curva con superíndiz superior"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Integral de curva con subíndiz y superíndiz"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Doble integral curvillinia"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Integral de curva doble con subíndiz inferior"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Integral de curva doble con superíndiz superior"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Integral de curva doble con subíndiz y superíndiz"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Triple integral curvillinia"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Integral de curva triple con subíndiz inferior"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Integral de curva triple con superíndiz superior"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Integral de curva triple con subíndiz/superíndiz"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Acentu p'arriba a la drecha"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Llende cimera"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Breve"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Circunflexu inversu"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Círculu"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Puntu"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Puntu doble"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Puntu triple"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Acentu p'arriba a la izquierda"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Circunflexu"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tilde"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Flecha vectorial"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Farpón"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Llinia debaxo"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Llinia sobre"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Llinia per"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Tresparente"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Negrina"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Cursiva"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Redimensionar"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Cambear la fonte"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Color prieto"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Color azul"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Color verde"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Color bermeyo"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
#, fuzzy
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Seleición de color"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
#, fuzzy
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Llingüeta con color"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Color mariello"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "Color RGB"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Paréntesis d'aconceyamientu"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Paréntesis"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Corchetes"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Corchetes dobles"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Llaves"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Paréntesis angulares"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Techu superior"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Suelu"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Llinies cencielles"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Llinies dobles"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Paréntesis d'operador"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Paréntesis (graduables)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Corchetes (graduables)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Corchetes dobles (graduables)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Llaves (graduables)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Paréntesis angulares (graduables)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Techu (Escalable)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Suelu (Escalable)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Llinies cencielles (graduables)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Llinies dobles (graduables)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Paréntesis d'operador (graduables)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Llaves enriba (graduables)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Llaves abaxo (graduables)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Subíndiz drecha"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Potencia"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Subíndiz izquierda"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Superíndiz a la izquierda"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Subíndiz abaxo"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Superíndiz enriba"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Espaciu pequeñu"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Balero"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Llinia nueva"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Pila vertical (2 elementos)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Disposición vertical"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Disposición matriz"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Alliñar a la esquierda"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Alliniar al centru"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Alliñar a la drecha"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Aleph"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Conxuntu Baleru"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Parte real"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Parte maxinaria"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Infinitu"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Parcial"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "p de Weierstrass"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Puntos nel mediu"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Puntos p'arriba"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Puntos haza abaxo"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Puntos abaxo"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Puntos verticalmente"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Encadenamientu"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "División (barra inclinada)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "División (barra inclinada inversa)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Divide"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Nun Divide"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Flecha doble hacia la izquierda"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Flecha doble hacia la izquierda y la drecha"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Flecha doble hacia la drecha"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Conxuntu de númberos naturales"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Conxuntu de númberos enteros"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Conxuntu de númberos racionales"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Conxuntu de númberos reales"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Conxuntu de númberos complexos"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Circunflexu ancho"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Tilde ancha"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Flecha vectorial ancha"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h Barra"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda Barra"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Flecha izquierda"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Flecha drecha"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Flecha arriba"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Flecha abaxo"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Ensin espaciu"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Precede"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Precede o ye igual a"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Precede o ye equivalente a"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Tien éxitu"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Tien éxitu o ye igual a"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Tien éxitu o ye equivalente a"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Nun precede"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Nun tien éxitu"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Operadores unarios/binarios"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Rellaciones"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Operaciones de conxuntos"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funciones"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operadores"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Atributos"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Paréntesis"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formatos"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Otros"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Exemplos"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
-msgstr ""
+msgstr "Identidá d'Euler"
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
-msgstr ""
+msgstr "Relatividá xeneral"
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
-msgstr ""
+msgstr "Relatividá especial"
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Estándar"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Cursiva"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Negrina"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "prieto"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "azul"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "verde"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "bermeyo"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "Buxu"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "llima"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "marrón"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "azulmarín|marín"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliva"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "púrpura"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "plata"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "xade"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "mariello"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
-msgstr ""
+msgstr "rgba"
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
-msgstr ""
+msgstr "hex"
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
-msgstr "tapecer"
+msgstr "anubrir"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "tamañu"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "tipografía"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "izquierda"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centru"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "drecha"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Comandos"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Fórmula"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
-msgstr "Grabando'l documentu..."
+msgstr "Guardando'l documentu..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Fórmula de %PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR: "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Caráuter non esperáu"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Esperábase «{»"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Esperábase «}»"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Esperábase «(»"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Esperábase «)»"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
-msgstr ""
+msgstr "Nun concasen los símbolos izquierdu y derechu"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Esperábase «fixed», «sans» o «serif»"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
-msgstr ""
+msgstr "Esperábase un númberu"
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Esperábase «#»"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Necesítase un color"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Esperábase «RIGHT»"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Conteníu"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Títulu"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Testu de la ~fórmula"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Bordes"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Tamañu"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Tamañu orixinal"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Axustar a la páxina"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
diff --git a/source/ast/svtools/messages.po b/source/ast/svtools/messages.po
index 647eef1de3d..7ac83c2c4ea 100644
--- a/source/ast/svtools/messages.po
+++ b/source/ast/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-08-28 12:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ast/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Desfacer: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Refacer: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Repitir: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Testu ensin formatu"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Testu ensin formatu (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Imaxe de mapa de bits (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Metaficheru d'interfaz de preséu gráficu (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Formatu de testu enriquecíu (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Formatu de testu enriquecíu (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Información del estáu de Svx Internal Link"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Enllaz de %PRODUCTNAME (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Marcador de Netscape"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Formatu de sirvidor Star"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star, formatu d'oxetu"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Oxetu de miniaplicación"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Oxetu de complementu"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Oxetu StarWriter 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Oxetu StarWriter 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Oxetu StarWriter 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Oxetu StarWriter/Web 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Oxetu StarWriter/Web 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Oxetu StarWriter/Global 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Oxetu StarWriter/Global 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Oxetu StarDraw"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Oxetu StarDraw 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Oxetu StarImpress 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Oxetu StarDraw 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Oxetu StarCalc"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Oxetu de StarCalc 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Oxetu StarCalc 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Oxetu StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Oxetu StarChart 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Oxetu StarChart 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Oxetu StarImage"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Oxetu StarImage 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Oxetu StarImage 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Oxetu StarMath"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Oxetu StarMath 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Oxetu StarMath 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Oxetu StarObject Paint"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Oxetu Microsoft Word"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Oxetu StarFrameSet"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Oxetu de documentu d'Office"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Información de documentu Notes"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Documentu sfx"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Oxetu StarChart 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Oxetu gráficu"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Oxetu de Writer d'OpenOffice.org 1.0"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Oxetu de Writer/Web d'OpenOffice.org 1.0"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Oxetu de Writer/Maestru d'OpenOffice.org 1.0"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Oxetu de Draw d'OpenOffice.org 1.0"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Oxetu d'Impress d'OpenOffice.org 1.0"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Oxetu de Calc d'OpenOffice.org 1.0"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Oxetu de Chart d'OpenOffice.org 1.0"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Oxetu de Math d'OpenOffice.org 1.0"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Metaficheru de Windows"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Oxetu fontes de datos"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabla de fontes de datos"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Consulta SQL"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Diálogu d'OpenOffice.org 1.0"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Enllaz"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Formatu HTML ensin comentarios"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "L'oxetu % nun se pudo inxertar."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "L'oxetu del ficheru % nun se pudo inxertar."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Otros oxetos"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Fonte desconocía"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "kB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1234 +501,1234 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumbéricu"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Xuegu de caráuteres"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Diccionariu"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Trazu"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Llistín telefónicu"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonéticu (alfanumbéricu primero)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonéticu (alfanumbéricu per últimu)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumbéricu"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Diccionariu"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Trazu"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonéticu (alfanumbéricu primero, agrupáu por sílabes)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonéticu (alfanumbéricu primero, agrupáu por consonantes)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonéticu (alfanumbéricu per últimu, agrupáu por sílabes)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonéticu (alfanumbéricu per últimu, agrupáu por consonantes)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Clara"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Clara cursiva"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normal"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Cursiva"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Negrina"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Negrina cursiva"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Prieta"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Prieta cursiva"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Llibru"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensada"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Condensada negrina"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Condensada negrina cursiva"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Condensada cursiva"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Seminegrina"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Seminegrina cursiva"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Va usase la mesma fonte na imprentadora y na pantalla."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Fonte d'imprentadora. La imaxe en pantalla podría ser distinta."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Va imitase esti estilu de fonte o usaráse'l más afayadizu."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Esta fonte nun ta instalada. Va usase la fonte esistente más afayadiza."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Mover a aniciu"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Mover pa la izquierda"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Mover pa la derecha"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Mover al fin"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Amestar"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Regla horizontal"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Regla vertical"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "umbral de 1bit"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "difusión de 1 bit"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "escala de buxu de 4 bits"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "color de 4 bits"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Escala de buxu de 8 bits"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "color de 8 bits"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "color real de 24 bits"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "La imaxe necesita aproximadamente %1 kB de memoria."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "La imaxe necesita aproximadamente %1 kB de memoria; el tamañu del ficheru ye de %2 kB."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "El tamañu del ficheru ye %1 kB."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "agospiu"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "puertu"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Preparáu"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Posáu"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Desaniciu pendiente"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Ocupáu"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Aniciando"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "N'espera"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Arranque"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Procesar"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Imprentando"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Desconeutáu"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Fallu"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Sirvidor desconocíu"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Bloquéu de papel"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Falta de papel"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Alimentación manual"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problema de papel"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O activos"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "La papelera de salida ta enllena"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Tóner baxu"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Nun hai tóner"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Desaniciar páxina"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Intervención necesaria del usuariu"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Memoria escosada"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Abrir cubierta"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Mou d'aforru enerxéticu"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Imprentadora predeterminada"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documentos"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<dengún>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Empresa"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Departamentu"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Nome"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Apellíos"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Cai"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "País"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Códigu postal"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Ciudá"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Títulu"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posición"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Tratamientu"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Iniciales"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Tratamientu"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Teléfonu priváu"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Teléfonu trabayu"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Corréu"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Usuariu 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Usuariu 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Usuariu 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Usuariu 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Provincia"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tfnu. trabayu"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Radioteléfonu"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Móvil"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tfnu: otru"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendariu"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Invitar"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ de $user$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Camudó la configuración de %PRODUCTNAME. En %PRODUCTNAME - Preferencies - %PRODUCTNAME - Avanzao, seleicione l'entornu d'execución de Java que quiera qu'use %PRODUCTNAME."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Camudó la configuración de %PRODUCTNAME. En Ferramientes - Opciones - %PRODUCTNAME - Avanzao, seleicione l'entornu d'execución de Java que quiera qu'use %PRODUCTNAME."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME requier un entornu d'execución de Java (JRE) pa facer esta xera. El JRE seleicionáu ye defeutuosu. Seleicione otra versión o instale un nuevu JRE y seleicionelu en %PRODUCTNAME - Preferencies - %PRODUCTNAME - Avanzao."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME requier un entornu d'execución de Java (JRE) pa facer esta xera. L'entornu d'execución de Java seleicionáu ye defeutuosu. Seleicione otra versión o instale otru JRE y seleiciónelu en Ferramientes - Opciones - %PRODUCTNAME - Avanzao."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE requeríu"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Escoyer JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "El JRE ye defeutuosu"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Códigu fonte"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Ficheru de marcadores"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Gráficos"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Ficheru de configuración"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplicación"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tabla de base datos"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Ficheros del sistema"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Documentu de MS Word"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Ficheru d'ayuda"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Documentu HTML"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Archivu"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Ficheru de rexistru"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Base de datos de StarOffice"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Documentu maestru de StarWriter 4.0 / 5.0"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Imaxe de StarOffice"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Ficheru de testu"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Enllaz"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Plantía de StarOffice 3.0 - 5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Documentu de MS Excel"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel - Plantía"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Ficheru de lotes"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Ficheru"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Carpeta"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Documentu de testu"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Fueya de cálculu"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentación"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Dibuxu"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Documentu HTML"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Documentu maestru"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Fórmula"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Base datos"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Plantía de fueya de cálculu d'OpenOffice.org 1.0"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Plantía de dibuxu d'OpenOffice.org 1.0"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Plantía de presentación d'OpenOffice.org 1.0"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Plantía de documentu de testu d'OpenOffice.org 1.0"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unidá llocal"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Unidá de discu"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Unidá de CD-ROM"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Conexón de rede"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Documentu MS PowerPoint"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Plantía MS PowerPoint"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Presentación de MS PowerPoint"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Fórmula d'OpenOffice.org 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Gráfica d'OpenOffice.org 1.0"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Dibuxu d'OpenOffice.org 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Fueya de cálculu d'OpenOffice.org 1.0"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Presentación d'OpenOffice.org 1.0"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Documentu de testu d'OpenOffice.org 1.0"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Documentu maestru d'OpenOffice.org 1.0"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Documentu MathML"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Base datos OpenDocument"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Dibuxu OpenDocument"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Fórmula OpenDocument"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Documentu maestru OpenDocument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Presentación OpenDocument"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Fueya de cálculu OpenDocument"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Testu OpenDocument"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Plantía de fueya de cálculu OpenDocument"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Plantía de dibuxu OpenDocument"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Plantía de presentación OpenDocument"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Plantía pa testu OpenDocument"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Estensión de %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/ast/svx/messages.po b/source/ast/svx/messages.po
index 1f4254658a5..2529f04ed7c 100644
--- a/source/ast/svx/messages.po
+++ b/source/ast/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-25 00:44+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/ast/>\n"
@@ -16646,11 +16646,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_Comentarios"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/ast/sw/messages.po b/source/ast/sw/messages.po
index e8b1a4807e5..f5faa6733f6 100644
--- a/source/ast/sw/messages.po
+++ b/source/ast/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-30 15:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/ast/>\n"
@@ -17701,88 +17701,94 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr "Escribi'l númberu de fileres que quies na tabla."
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Xeneral"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "Enca_bezamientu"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr "Inclúi una filera de testera na tabla."
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
#, fuzzy
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Repetir encabezamientos nes _páxines nueves"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr "Repite la testera de la tabla na parte cimera de la páxina siguiente si la tabla ocupa más d'una páxina."
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Nun di_vidir tabla en páxines"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr "Torga que la tabla ocupe más d'una páxina."
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr "Seleiciona'l númberu de fileres que quies usar pa la testera."
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
#, fuzzy
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Fileres d'enca_bezamientu:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Opciones"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Estilos"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20391,296 +20397,296 @@ msgid "Text"
msgstr "Testu"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Alterna ente les vistes maestru y normal si abre un documentu maestru."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Testera"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
#, fuzzy
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Pie"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Faiga clic equí pa dexar una marca na posición del cursor. Pue definir hasta cinco marques. Pa saltar a una marca, faiga clic nel iconu Navegación, na ventana Navegación, faiga clic nel iconu Marca y, de siguío, faiga clic nel botón Marca anterior o Marca siguiente."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
#, fuzzy
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Xubir un nivel"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
#, fuzzy
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Baxar un nivel"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
#, fuzzy
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Mou Arrastrar"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Documentu"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
#, fuzzy
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Ventana activa"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Alterna ente les vistes maestru y normal si abre un documentu maestru."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Editar"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Anovar"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Inxertar"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
#, fuzzy
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Mover a_rriba"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
#, fuzzy
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Mover a_baxo"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Esbilla"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Índices"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Enllaces"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Too"
diff --git a/source/az/sc/messages.po b/source/az/sc/messages.po
index 2d09fb2b3c7..9901b927f3d 100644
--- a/source/az/sc/messages.po
+++ b/source/az/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28675,38 +28675,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr ""
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr ""
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr ""
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr ""
diff --git a/source/az/sfx2/messages.po b/source/az/sfx2/messages.po
index 1bce4854a15..f1c4cf8e9ad 100644
--- a/source/az/sfx2/messages.po
+++ b/source/az/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-10-21 19:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1591,287 +1591,251 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr ""
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr ""
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr ""
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr ""
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr ""
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr ""
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "~Sil"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4120,6 +4084,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr ""
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/az/starmath/messages.po b/source/az/starmath/messages.po
index cf9e61eca3e..faf38c5d7be 100644
--- a/source/az/starmath/messages.po
+++ b/source/az/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-11-14 08:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Azerbaijani <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/az/>\n"
@@ -426,2088 +426,2221 @@ msgid "or"
msgstr ""
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr ""
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr ""
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr ""
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr ""
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr ""
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr ""
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr ""
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr ""
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr ""
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr ""
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr ""
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr ""
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr ""
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr ""
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr ""
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr ""
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr ""
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr ""
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr ""
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr ""
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr ""
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr ""
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr ""
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr ""
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr ""
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr ""
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr ""
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr ""
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr ""
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr ""
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr ""
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr ""
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr ""
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr ""
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr ""
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr ""
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
#, fuzzy
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "birləşmə"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
#, fuzzy
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "kəsişmə"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr ""
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
#, fuzzy
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "alt dəst"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr ""
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
#, fuzzy
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "super dəst"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr ""
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
#, fuzzy
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "alt dəst deyil"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr ""
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
#, fuzzy
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "super dəst deyil"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr ""
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr ""
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr ""
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr ""
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr ""
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr ""
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr ""
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr ""
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr ""
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr ""
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr ""
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr ""
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr ""
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr ""
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr ""
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr ""
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr ""
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr ""
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr ""
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr ""
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr ""
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr ""
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr ""
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr ""
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr ""
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr ""
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr ""
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr ""
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr ""
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
#, fuzzy
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "məhsul"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr ""
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr ""
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr ""
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
#, fuzzy
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "məhsul"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr ""
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr ""
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr ""
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
#, fuzzy
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Xəttlər"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr ""
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr ""
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr ""
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr ""
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr ""
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
#, fuzzy
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "hamı üçün"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
#, fuzzy
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "inteqral"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr ""
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr ""
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr ""
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr ""
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr ""
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr ""
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr ""
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr ""
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr ""
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr ""
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr ""
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr ""
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr ""
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr ""
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr ""
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr ""
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr ""
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr ""
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr ""
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr ""
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr ""
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr ""
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr ""
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr ""
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr ""
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr ""
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr ""
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr ""
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr ""
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr ""
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr ""
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr ""
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr ""
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr ""
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr ""
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr ""
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr ""
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr ""
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr ""
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr ""
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr ""
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr ""
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr ""
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr ""
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr ""
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr ""
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr ""
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr ""
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr ""
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr ""
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr ""
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr ""
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr ""
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr ""
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr ""
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr ""
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr ""
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr ""
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr ""
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr ""
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr ""
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr ""
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr ""
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr ""
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr ""
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr ""
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr ""
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr ""
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
#, fuzzy
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "boş dəst"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr ""
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr ""
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
#, fuzzy
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "sonsuzluq"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
#, fuzzy
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "hissəli"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr ""
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr ""
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr ""
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr ""
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr ""
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr ""
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr ""
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr ""
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr ""
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
#, fuzzy
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "bölür"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr ""
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr ""
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr ""
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr ""
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr ""
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr ""
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr ""
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr ""
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr ""
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr ""
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr ""
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr ""
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr ""
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr ""
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr ""
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr ""
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr ""
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr ""
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr ""
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr ""
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr ""
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr ""
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr ""
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr ""
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr ""
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr ""
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr ""
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr ""
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr ""
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr ""
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr ""
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr ""
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr ""
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr ""
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr ""
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr ""
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr ""
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr ""
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr ""
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr ""
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr ""
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr ""
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr ""
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr ""
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr ""
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr ""
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
#, fuzzy
msgctxt "STR_TEAL"
msgid "teal"
msgstr "çay"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr ""
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "Gizlət"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr ""
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr ""
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "sol"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr ""
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "sağ"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
#, fuzzy
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Şərhlər"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr ""
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr ""
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
#, fuzzy
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
#, fuzzy
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "XƏTA: "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr ""
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr ""
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr ""
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr ""
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr ""
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr ""
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr ""
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr ""
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr ""
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
#, fuzzy
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Şərhlər"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Başlıq"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr ""
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr ""
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
#, fuzzy
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Ölçü:"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr ""
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr ""
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr ""
diff --git a/source/az/svtools/messages.po b/source/az/svtools/messages.po
index e0a23e92faf..d648d03f853 100644
--- a/source/az/svtools/messages.po
+++ b/source/az/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr ""
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr ""
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr ""
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr ""
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr ""
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr ""
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr ""
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr ""
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr ""
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr ""
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr ""
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr ""
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr ""
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr ""
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr ""
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr ""
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr ""
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr ""
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr ""
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr ""
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr ""
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr ""
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr ""
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr ""
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr ""
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr ""
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr ""
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr ""
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr ""
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr ""
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr ""
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr ""
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr ""
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr ""
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr ""
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr ""
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr ""
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr ""
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr ""
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr ""
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr ""
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr ""
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr ""
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr ""
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr ""
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr ""
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr ""
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr ""
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr ""
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr ""
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr ""
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr ""
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr ""
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr ""
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr ""
@@ -501,21 +501,21 @@ msgstr ""
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr ""
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
#, fuzzy
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
@@ -523,1218 +523,1218 @@ msgstr "Simvollar"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr ""
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr ""
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr ""
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr ""
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr ""
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr ""
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr ""
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr ""
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr ""
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr ""
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr ""
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr ""
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr ""
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr ""
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr ""
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr ""
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
#, fuzzy
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "sağ"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr ""
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr ""
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr ""
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr ""
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr ""
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr ""
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr ""
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr ""
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr ""
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr ""
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr ""
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr ""
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr ""
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr ""
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr ""
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr ""
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Əlavə et"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr ""
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr ""
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr ""
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr ""
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr ""
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr ""
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr ""
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr ""
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr ""
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Fasilә"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr ""
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr ""
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr ""
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr ""
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr ""
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr ""
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d sənəd"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr ""
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr ""
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr ""
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr ""
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr ""
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr ""
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr ""
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr ""
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr ""
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Başlıq"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr ""
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr ""
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr ""
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr ""
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr ""
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr ""
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr ""
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
#, fuzzy
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "nota"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr ""
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr ""
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr ""
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr ""
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr ""
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr ""
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr ""
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
#, fuzzy
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Sәhifә"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr ""
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr ""
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr ""
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr ""
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr ""
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr ""
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr ""
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr ""
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr ""
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr ""
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
#, fuzzy
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Quraşdırma Məlumatı"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr ""
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr ""
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr ""
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr ""
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr ""
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr ""
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr ""
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr ""
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr ""
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr ""
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr ""
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr ""
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr ""
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr ""
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr ""
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr ""
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr ""
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr ""
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr ""
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr ""
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr ""
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr ""
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr ""
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr ""
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr ""
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr ""
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr ""
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr ""
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr ""
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr ""
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr ""
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr ""
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr ""
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr ""
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr ""
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr ""
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr ""
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr ""
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr ""
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr ""
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr ""
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr ""
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr ""
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr ""
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr ""
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr ""
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME Uzantısı"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/az/svx/messages.po b/source/az/svx/messages.po
index be363eccf54..05339159d83 100644
--- a/source/az/svx/messages.po
+++ b/source/az/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16372,12 +16372,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
-#, fuzzy
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "Şərhlər"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/az/sw/messages.po b/source/az/sw/messages.po
index d58b3c3c415..fc8dddc298a 100644
--- a/source/az/sw/messages.po
+++ b/source/az/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17589,86 +17589,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr ""
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr ""
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr ""
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr ""
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr ""
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Seçimlər"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20196,292 +20202,292 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr ""
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr ""
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr ""
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr ""
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr ""
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
#, fuzzy
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Sәnәd"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr ""
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Düzəlt"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
#, fuzzy
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "~Yenilə"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
#, fuzzy
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Daxil et"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr ""
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr ""
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/be/sc/messages.po b/source/be/sc/messages.po
index 196c7d41d55..37cd0408eee 100644
--- a/source/be/sc/messages.po
+++ b/source/be/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29272,38 +29272,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Ужываць метрыку прынтара для фарматавання тэксту"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Пад_святляць азначэнні ў загалоўках калонак ці радкоў"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr ""
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Настаўленні ўводу"
diff --git a/source/be/sfx2/messages.po b/source/be/sfx2/messages.po
index 01f4ac36477..49f3753e1ee 100644
--- a/source/be/sfx2/messages.po
+++ b/source/be/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-10-21 19:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1633,286 +1633,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Закрыць панэль"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Прымацаваць*"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Адмацаваць*"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Дадатковыя настаўленні"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Закрыць бакоўку"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Настаўленні бакоўкі"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Уладкаванне"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Аднавіць прадвызначэнні"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Закрыць бакавую панэль"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Сіняя крывая"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Яркі сіні"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ДНК"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Фокус"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Заход сонца"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Рэтра"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Сцерці"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Ачысціць усё"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4136,6 +4100,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Сцерці..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/be/starmath/messages.po b/source/be/starmath/messages.po
index ce93fd4205a..ebf7c3d0d9d 100644
--- a/source/be/starmath/messages.po
+++ b/source/be/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-05-08 13:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -425,2068 +425,2201 @@ msgid "or"
msgstr "or"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Знак +"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Знак -"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Знак +-"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Знак -+"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Булева НЕ"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Складанне +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Адыманне -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Множанне (кропка )"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Множанне (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Множанне (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Дзяленне (скос)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Дзяленне (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Дзяленне (дроб)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Скос у акружыне"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Кропка ў акружыне"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Мінус у акружыне"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Плюс у акружыне"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Тэнзарны здабытак"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Булева І"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Булева АБО"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Роўна"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Не роўна"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Менш за"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Больш за"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Менш або роўна"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Больш або роўна"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Менш або роўна"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Больш або роўна"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Значна менш за"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Значна больш за"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Вызначана як"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Кангруэнтна да"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Прыблізна роўна"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Падобна да"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Падобна або роўна"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Прапарцыянальна да"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Перпендыкулярна да"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Паралельна да"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Да"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Адпавядае (злева)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Адпавядае (справа)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Уваходзіць у"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Не ўваходзіць у"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Валодае"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "З'яднанне"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Перасячэнне"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Розніца"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Падмноства"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Падмноства або роўна"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Надмноства"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Надмноства або роўна"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Не падмноства"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Не падмноства і не роўна"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Не надмноства"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Не надмноства і не роўна"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Абсалютнае значэнне"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Фактарыял"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Квадратавы корань"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "Корань N-й ступені"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Экспанентавая функцыя"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Экспанентавая функцыя"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Натуральны лагарыфм"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Лагарыфм"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Сінус"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Косінус"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Тангенс"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Катангенс"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Арксінус"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Арккосінус"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Арктангенс"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Арккатангенс"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Гіпербалічны сінус"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Гіпербалічны косінус"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Гіпербалічны тангенс"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Гіпербалічны катангенс"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Гіпербалічны арк-сінус"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Гіпербалічны арк-косінус"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Гіпербалічны арк-тангенс"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Гіпербалічны арк-катангенс"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Сума"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Ніжні індэкс сумы"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Верхні індэкс сумы"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Індэксы сумы"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Вынік"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Ніжні індэкс здабытку"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Верхні індэкс здабытку"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Індэксы здабытку"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Спалучаны здабытак"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Ніжні індэкс ко-здабытку"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Верхні індэкс ко-здабытку"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Індэксы ко-здабытку"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Граніца*"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
#, fuzzy
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Ніжні індэкс знізу"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
#, fuzzy
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Верхні індэкс зверху"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
#, fuzzy
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Індэксы сумы"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Існуе"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Не існуе"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Для ўсіх"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Інтэграл"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Падвойны інтэграл"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Патройны інтэграл"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Крывалінейны інтэграл"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Падвойны крывалінейны інтэграл"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Патройны крывалінейны інтэграл"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Штрых"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Рыска зверху"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Дужка"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "'Птушка'"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Колца"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Кропка"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Падвойная кропка"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Патройная кропка"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Адваротны штрых"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "'Хатка'"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Тыльда"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Вектар"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Лінія знізу"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Лінія зверху"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Лінія праз"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Празрыста"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Цёмны шрыфт"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Курсіўны шрыфт"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Змяніць памер"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Змяніць шрыфт"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Чорны колер"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Сіні колер"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Зялёны колер"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Чырвоны колер"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Шэры колер"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Лаймавы колер"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Бардовы колер"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Цёмна-сіні колер"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Аліўкавы колер"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Фіялетавы колер"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Срэбны колер"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Бірузовы колер"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Жоўты колер"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Групавыя дужкі"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Круглыя дужкі"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Квадратныя дужкі"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Падвойныя квадратныя дужкі"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Фігурныя дужкі"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Вугловыя дужкі"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Акругленне ўверх"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr ""
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Адзінарныя лініі"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Падвойныя лініі"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Аператарныя дужкі"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Круглыя дужкі (маштабаваныя)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Квадратныя дужкі (маштабаваныя)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Падвойныя квадратныя дужкі (маштабаваныя)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Фігурныя дужкі (маштабаваныя)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Вугловыя дужкі (маштабаваныя)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Адзінарныя лініі (маштабаваныя)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Падвойныя лініі (маштабаваныя)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Аператарныя дужкі (маштабаваныя)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Верх фігурных дужак (маштабаваны)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Ніз фігурных дужак (маштабаваны)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Ніжні індэкс справа"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Ступень"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Ніжні індэкс злева"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Верхні індэкс злева"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Ніжні індэкс знізу"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Верхні індэкс зверху"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Малы прагал"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Пусты"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Новы радок"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Вертыкальны стос (2 элементы)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Вертыкальны стос"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Стос матрыц"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Раўнаванне злева"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Раўнаванне ў цэнтры"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Раўнаванне справа"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Алеф"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Пустое мноства"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Рэчаісная частка"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Уяўная частка"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Бясконцасць"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "часткова"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Набла"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "p Ваерштраса"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Кропкі ў цэнтры"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Кропкі да верху"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Кропкі да нізу"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Кропкі знізу"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Кропкі вертыкальна"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Канкатэнацыя"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Дзяленне (скос)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Дзяленне (зваротны шырокі скос)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Дзеліць"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Не дзеліць"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Падвойная стрэлка ўлева"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Падвойная стрэлка ўлева і ўправа"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Падвойная стрэлка ўправа"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Мноства натуральных лікаў"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Мноства цэлых лікаў"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Мноства рацыянальных лікаў"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Мноства рэчаісных лікаў"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Мноства комплексных лікаў"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Вялікая 'хатка'"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Вялікая тыльда"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Вялікі вектар"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h з рыскай"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "лямбда з рыскай"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Стрэлка ўлева"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Стрэлка ўправа"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Стрэлка ўверх"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Стрэлка ўніз"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Без прагалу"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Папярэднічае*"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Папярэднічае або роўнае"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Папярэднічае або эквівалентнае"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Наступнічае"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Наступнічае або роўнае"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Наступнічае або эквівалентнае"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Не папярэднічае"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Не наступнічае"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Унарныя/бінарныя аператары"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Стасункі"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Дзеянні над мноствамі"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Функцыі"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Аператары"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Атрыбуты"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Дужкі"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Фарматы"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Іншыя"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Прыклады"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Стандартна"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Курсіў"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Цёмны"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "чорны"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "сіні"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "зялёны"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "чырвоны"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "шэры"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "лаймавы"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "бардовы"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "цёмна-сіні"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "аліўкавы"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "пурпурны"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "срэбны"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "бірузовы"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "жоўты"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "схаваць"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "памер"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "шрыфт"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "злева"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "у цэнтры"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "справа"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Каманды"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Формула"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Запісваем дакумент..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Формула %PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ПАМЫЛКА : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Нечаканы знак"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Нечаканы токен"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "чакалася '{'"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "чакалася '}'"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "чакалася '('"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "чакалася ')'"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Чакаўся '#'"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Патрабуецца колер"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Чакалася 'RIGHT'"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Змест"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Загаловак"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Тэкст формулы"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Межы"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Памер"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Пачатковы памер"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Дапасоўваць да аркуша"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "Маштаб"
diff --git a/source/be/svtools/messages.po b/source/be/svtools/messages.po
index 6853a31a315..9a6af018de7 100644
--- a/source/be/svtools/messages.po
+++ b/source/be/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Адкаціць: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Паўтарыць: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Нефарматаваны тэкст"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Статус паводле ўнутранай спасылкі Svx"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Закладка Netscape"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Фармат сервера Star"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Фармат аб'екту Star"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Аплет (аб'ект)"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Плугін (аб'ект)"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Аб'ект StarWriter 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Аб'ект StarWriter 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Аб'ект StarWriter 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Аб'ект StarWriter/Web 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Аб'ект StarWriter/Web 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Аб'ект StarWriter/Master 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Аб'ект StarWriter/Master 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Аб'ект StarDraw"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Аб'ект StarDraw 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Аб'ект StarImpress 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Аб'ект StarDraw 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Аб'ект StarCalc"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Аб'ект StarCalc 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Аб'ект StarCalc 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Аб'ект StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Аб'ект StarChart 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Аб'ект StarChart 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Аб'ект StarImage"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Аб'ект StarImage 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Аб'ект StarImage 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Аб'ект StarMath"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Аб'ект StarMath 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Аб'ект StarMath 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Аб'ект StarObject Paint"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Аб'ект Microsoft Word"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Аб'ект StarFrameSet"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Дакумент Office (аб'ект)"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Звесткі пра дакумент Notes"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Дакумент Sfx"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Аб'ект StarChart 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Графічны аб'ект"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Аб'ект OpenOffice.org 1.0 Writer"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Аб'ект OpenOffice.org 1.0 Writer/Web"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Аб'ект OpenOffice.org 1.0 Writer/Master"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Аб'ект OpenOffice.org 1.0 Draw"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Аб'ект OpenOffice.org 1.0 Impress"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Аб'ект OpenOffice.org 1.0 Calc"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Аб'ект OpenOffice.org 1.0 Chart"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Аб'ект OpenOffice.org 1.0 Math"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Метафайл Windows"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Аб'ект крыніцы даных"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Табліца крыніцы даных"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Зварот SQL"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Дыялог OpenOffice.org 1.0"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Сувязь"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Фармат HTML без каментароў"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Не ўдалося ўставіць аб'ект % ."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Не ўдалося ўставіць аб'ект з файлу % ."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Аб'екты ў далейшым"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Невядомая крыніца"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Байты"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "КБ"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "МБ"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "ГБ"
@@ -501,1234 +501,1234 @@ msgstr "ГБ"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Літарна-лічбавы"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Звычайны"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Знаказбор"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Слоўнік"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Пін'ін"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Рыса"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Радыкальны"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Унікод"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Жуй'ін"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Тэлефонная кніга"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Фанетычны (літары і лічбы ў пачатку)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Фанетычны (літары і лічбы ў канцы)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Літарна-лічбавы"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Слоўнік"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Пін'ін"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Радыкальны"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Рыса"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Жуй'ін"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Фанетычны (літары і лічбы ў пачатку, у групах паводле складоў)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Фанетычны (літары і лічбы ў пачатку, у групах паводле зычных)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Фанетычны (літары і лічбы ў канцы, у групах паводле складоў)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Фанетычны (літары і лічбы ў канцы, у групах паводле зычных)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Светлы"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Светлы курсіў"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Звычайны"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Курсіў"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Цёмны"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Цёмны курсіў"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Чорны"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Вельмі цёмны курсіў"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Кніга"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Цёмны нахільны"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Шчыльны"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Шчыльны цёмны"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Шчыльны цёмны курсіў"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Шчыльны цёмны нахільны"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Шчыльны курсіў"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Шчыльны нахільны"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Звышсветлы"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Звышсветлы курсіў"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Нахілены"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Паўцёмны"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Паўцёмны курсіў"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Аднолькавы шрыфт будзе ўжыты і на экране і на прынтары."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Шрыфт дзеля прынтара. На экране можа выглядаць іначай."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Стыль шрыфта будзе імітавацца адным з блізкіх і прысутных стыляў."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Гэты шрыфт не ўстаноўлены. Будзе ўжыты адзін з блізкіх і прысутных шрыфтаў."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Move To Home"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Move Left"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Move Right"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Move To End"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Дадаць"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Гарызантальная лінейка"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Вертыкальная лінейка"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1-бітавы, \"цераз парог\""
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1-бітавы, \"з расціраннем\""
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4-бітавы шэры"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4-бітавы каляровы"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8-бітавы шэры"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8-бітавы каляровы"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24-бітавы, \"сапраўдны колер\""
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Відарысу трэба каля %1 КБ памяці."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Графіка патрабуе каля %1 КБ памяці, памер файла %2 КБ."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Памер файла гэта %1 КБ."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "вузел"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "порт"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Іншы CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Напагатове"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Прыпынена"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Чакае выдалення"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Занята"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Ініцыялізуецца"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Чакаецца"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Разаграваецца"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Апрацоўваецца"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Друкаванне"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Недасягальна"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Памылка"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Невядомы сервер"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Папера зацялася"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Не хапае паперы"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Падаецца з рукі"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Праблема з паперай"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "У(вод)/ВЫ(вад) актыўны"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Перапоўнены кантэйнер гатовых адбіткаў"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Мала тонеру"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Няма тонеру"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Сцерці старонку"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Патрабуецца ўмяшанне карыстальніка"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Недастатковы аб'ём памяці"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Адкрыты корпус"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Рэжым энергазберагання"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Прадвызначаны прынтар"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d дакументаў"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<няма>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Кампанія"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Аддзел"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Імя"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Прозвішча"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Вуліца"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Краіна"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Паштовы індэкс"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Горад"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Загаловак"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Пазіцыя"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Форма звароту"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Ініцыялы"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Прывітанне"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Тэл. (дом)"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Тэл. (прац.)"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Заўвага"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Дадаткова 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Дадаткова 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Дадаткова 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Дадаткова 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Адм.адзінка"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Тэл. (офіс)"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Пейджэр"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Мабільны"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Тэл. (іншы):"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Каляндар"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Запрасіць"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Патрабуецца асяроддзе выканання Явы (JRE)"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Выбар JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE не працуе як належыць"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Выточны тэкст"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Закладкавы файл"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Графіка"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Файл настаўленняў"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Праграма"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Табліца базы даных"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Сістэмны файл"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Дакумент MS Word"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Даведкавы файл"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Дакумент HTML"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Архіўны файл"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Файл журналу"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice Database"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Майстар-дакумент StarWriter 4.0 / 5.0"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice Image"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Тэкставы файл"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Спасылка"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Шаблон StarOffice 3.0 - 5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Дакумент MS Excel"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Шаблон MS Excel"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Камандны файл"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Файл"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Каталог"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Тэкставы дакумент"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Разліковы аркуш"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Прэзентацыя"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Рысунак"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Дакумент HTML"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Майстар-дакумент"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Формула"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "База даных"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Шаблон разліковага аркуша OpenOffice.org 1.0"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Шаблон рысунка OpenOffice.org 1.0"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Шаблон прэзентацыі OpenOffice.org 1.0"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Шаблон тэкставага дакумента OpenOffice.org 1.0"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Тутэйшы дыск"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Дыскета"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Дыскавод CD-ROM"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Сеткавае далучэнне"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Дакумент MS PowerPoint"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Шаблон MS PowerPoint"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Шоу MS PowerPoint"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Формула OpenOffice.org 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Дыяграма OpenOffice.org 1.0"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Рысунак OpenOffice.org 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Разліковы аркуш OpenOffice.org 1.0"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Прэзентацыя OpenOffice.org 1.0"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Тэкставы дакумент OpenOffice.org 1.0"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Майстар-дакумент OpenOffice.org 1.0"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Дакумент MathML"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "База даных OpenDocument"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Рысунак OpenDocument"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Формула OpenDocument"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Майстар-дакумент OpenDocument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Прэзентацыя OpenDocument"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Разліковы аркуш OpenDocument"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Тэкст OpenDocument"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Шаблон разліковага аркушу OpenDocument"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Шаблон рысунку OpenDocument"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Шаблон прэзентацыі OpenDocument"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Шаблон тэксту OpenDocument"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Прыстаўка %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Праверка правапісу Hunspell"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Пераносы Libhyphen"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/be/svx/messages.po b/source/be/svx/messages.po
index 5b1a2a47a96..7fd0dc6b5c6 100644
--- a/source/be/svx/messages.po
+++ b/source/be/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-05-20 11:22+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Belarusian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/be/>\n"
@@ -16346,11 +16346,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "Каментары"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/be/sw/messages.po b/source/be/sw/messages.po
index 0aeb87c4f20..e05bc736bce 100644
--- a/source/be/sw/messages.po
+++ b/source/be/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17440,86 +17440,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Агульнае"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "Шапка"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Паўтараць шапку на кожнай старонцы"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Не дзяліць табліцу між старонкамі"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Радкі шапкі:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Настаўленні"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20033,289 +20039,289 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Пераключыць від: майстар-элементы"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Від для навігацыі па змесце"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Загаловак"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Падвал"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Мацаванне<->Тэкст"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Наставіць нагадванне"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Паказваць узроўні загалоўкаў"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Паказваць спісавы бокс"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Павысіць узровень"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Панізіць узровень"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Павысіць узровень часткі"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Панізіць узровень часткі"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Лад \"перацягвання\""
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Дакумент"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Актыўнае акно"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Пераключыць від: майстар-элементы"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Змяніць"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Абнавіць"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Уставіць"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Запісаць змесціва таксама"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Пасунуць уверх"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Пасунуць уніз"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/bg/cui/messages.po b/source/bg/cui/messages.po
index 7fe4f2da569..aecd4d40503 100644
--- a/source/bg/cui/messages.po
+++ b/source/bg/cui/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-15 23:35+0000\n"
+"PO-Revision-Date: 2020-11-17 20:35+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1564897785.000000\n"
#. GyY9M
@@ -3401,7 +3401,7 @@ msgstr "Не можете да промените или изтриете сти
#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Искате да попълните поредица? Изберете диапазона от клетки, после „Лист ▸ Запълване на клетки ▸ Запълване с поредица“ и изберете между „Линейна“, „Растеж“, „Дата“ и „Автозапълване“."
#. BiSJM
#. local help missing
@@ -3474,7 +3474,7 @@ msgstr "Разработвате нови XSLT и XML филтри?"
#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General."
-msgstr ""
+msgstr "Натиснете Shift+F1, за да видите разширените подсказки в диалоговите прозорци, когато „Разширени подсказки“ е изключено в „Инструменти ▸ Настройки ▸ %PRODUCTNAME ▸ Общи“."
#. hsZPg
#: cui/inc/tipoftheday.hrc:274
@@ -5630,7 +5630,7 @@ msgstr "Потребителски:"
#: cui/uiconfig/ui/borderpage.ui:98
msgctxt "borderpage|userdefft"
msgid "Click edge or corner to cycle through three states: set, unchanged, remove."
-msgstr ""
+msgstr "Щракайте върху ръб или ъгъл, за да сменяте циклично трите състояния: зададен, непроменен, премахнат."
#. sRXeg
#: cui/uiconfig/ui/borderpage.ui:111
@@ -5732,7 +5732,7 @@ msgstr "Разстояние:"
#: cui/uiconfig/ui/borderpage.ui:547
msgctxt "borderpage|distanceft"
msgid "Width of shadow"
-msgstr ""
+msgstr "Ширина на сянката"
#. gEF6E
#: cui/uiconfig/ui/borderpage.ui:572
@@ -18080,7 +18080,7 @@ msgstr "Поддържа едни и същи пропорции, когато
#: cui/uiconfig/ui/possizetabpage.ui:359
msgctxt "possizetabpage|extended_tip|CTL_SIZERECT"
msgid "Click a base point in the grid, and then enter the new size dimensions for the selected object in the Width and Height boxes."
-msgstr "Щракнете върху базова точка в решетката, след което въевдете нови размери за избрания обект в полетата Ширина и Височина."
+msgstr "Щракнете върху базова точка в решетката, след което въведете нови размери за избрания обект в полетата Ширина и Височина."
#. 4A7Le
#: cui/uiconfig/ui/possizetabpage.ui:377
diff --git a/source/bg/helpcontent2/source/text/scalc/00.po b/source/bg/helpcontent2/source/text/scalc/00.po
index 5f7299a4b3b..c4804a8b7ee 100644
--- a/source/bg/helpcontent2/source/text/scalc/00.po
+++ b/source/bg/helpcontent2/source/text/scalc/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-10-30 22:35+0000\n"
+"PO-Revision-Date: 2020-11-17 16:43+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1555408153.000000\n"
@@ -510,7 +510,7 @@ msgctxt ""
"par_id3159173\n"
"help.text"
msgid "<variable id=\"logical\"><emph>Insert - Function</emph> - Category <emph>Logical</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"logical\"><emph>Вмъкване - Функция</emph> - Категория <emph>Логически</emph></variable>"
#. FqeXh
#: 00000404.xhp
diff --git a/source/bg/helpcontent2/source/text/scalc/01.po b/source/bg/helpcontent2/source/text/scalc/01.po
index 5ff5768bdb7..8430bb47447 100644
--- a/source/bg/helpcontent2/source/text/scalc/01.po
+++ b/source/bg/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-10 20:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
+"PO-Revision-Date: 2020-11-21 15:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562357170.000000\n"
@@ -9996,7 +9996,7 @@ msgctxt ""
"par_id3149312\n"
"help.text"
msgid "<variable id=\"logicaltext\">This category contains the <emph>Logical</emph> functions.</variable>"
-msgstr ""
+msgstr "<variable id=\"logicaltext\">Тази категория съдържа <emph>логическите</emph> функции.</variable>"
#. ADKTB
#: 04060105.xhp
@@ -56474,6 +56474,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr "Използване на регулярни изрази и вложени функции"
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr "За да работят тези примери както е описано, уверете се, че е отметнато <emph>Регулярни изрази във формулите</emph> в <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Инструменти - Настройки</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Изчисляване</menuitem>."
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/sdraw.po b/source/bg/helpcontent2/source/text/sdraw.po
index 7bf431b472b..aed438e6747 100644
--- a/source/bg/helpcontent2/source/text/sdraw.po
+++ b/source/bg/helpcontent2/source/text/sdraw.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-07-03 23:38+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-21 15:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1558972026.000000\n"
#. dHbww
@@ -113,7 +113,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "View (menu in Draw)"
-msgstr ""
+msgstr "Изглед (меню в Draw)"
#. hWYJ3
#: main0103.xhp
@@ -158,7 +158,7 @@ msgctxt ""
"par_idN105B2\n"
"help.text"
msgid "Master"
-msgstr ""
+msgstr "Образец"
#. eSnQZ
#: main0103.xhp
@@ -167,7 +167,61 @@ msgctxt ""
"par_idN105B6\n"
"help.text"
msgid "Switch to the master view."
-msgstr ""
+msgstr "Превключва към изгледа на образеца."
+
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">Потребителски интерфейс</link>"
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr "Отваря диалогов прозорец за избор на оформление на потребителския интерфейс."
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr "Коментари"
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr "Показва или скрива анотациите на страницата."
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr "Изместване"
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr "Използвайте този режим, за да премествате страницата в прозореца. Когато е включен, формата на показалеца на мишката се сменя. Щракнете върху страницата и я плъзнете до желаната позиция."
#. 7AgpR
#: main0103.xhp
@@ -509,7 +563,7 @@ msgctxt ""
"hd_id3146313\n"
"help.text"
msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Прилепване към помощните линии</link>"
#. eUTG8
#: main0213.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/00.po b/source/bg/helpcontent2/source/text/shared/00.po
index 7bc37827f1b..5faf2526bd7 100644
--- a/source/bg/helpcontent2/source/text/shared/00.po
+++ b/source/bg/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-11 21:35+0000\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"PO-Revision-Date: 2020-11-19 19:35+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/bg/>\n"
"Language: bg\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "Добър пример за релационна база от данни е следният: имаме база от данни, съдържаща таблиците Клиент, Продажба и Фактура. В таблицата Фактура няма действителни данни за продажби или клиенти; тя само цитира съответните полета от таблиците за клиенти и продажби чрез релационна връзка, или релация(например по стойността на полето за идентификатор на клиент в таблицата с клиенти)."
-#. ygQrE
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr "Редова разредка на страницата (напасване на редовете)"
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr "<variable id=\"registertrue_intro\">Напасване на редовете е типографско понятие, използвано при печатане.</variable> То се отнася до съгласуваното отпечатване на редовете в текстовите области от двете страни на страницата. Напаснатите редове подобряват четливостта на страниците, като предотвратяват прозирането на сиви сенки между редовете на текста."
-
-#. yHUNF
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
-msgstr "Напасването на редове се отнася и за редове в съседни текстови колони, когато за редовете в отделните колони се използва една и съща вертикална мрежа, за да се подравнят по вертикала."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
+msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
-msgstr "<variable id=\"register_purpose\">Печатането с напаснати редове е особено полезно за документи, в които страниците са по двойки една до друга (например в книга или брошура), за оформления с много колони и за документи, предназначени за двустранен печат.</variable>"
+msgid "Page line-spacing (register-true)"
+msgstr "Редова разредка на страницата (напасване на редовете)"
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>напасване на редовете; определение</bookmark_value>"
-
-#. d59SH
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "Напасване на редовете"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
@@ -11057,7 +11030,7 @@ msgctxt ""
"par_id3149292\n"
"help.text"
msgid "Open context menu of a selected form element - choose <menuitem>Form Properties</menuitem>."
-msgstr ""
+msgstr "Отворете контекстното меню на избран елемент от формуляр - изберете <menuitem>Свойства на формуляр</menuitem>."
#. CMsFE
#: 00040501.xhp
@@ -11084,7 +11057,7 @@ msgctxt ""
"par_id3150447\n"
"help.text"
msgid "Open context menu of a selected form element - choose <menuitem>Form Properties - General</menuitem> tab."
-msgstr ""
+msgstr "Отворете контекстното меню на избран елемент от формуляр - изберете раздела <menuitem>Свойства на формуляр - Общи</menuitem>."
#. CPHGz
#: 00040501.xhp
@@ -11093,7 +11066,7 @@ msgctxt ""
"par_id3144448\n"
"help.text"
msgid "Open <widget>Form Design</widget> toolbar, click <widget>Form Properties</widget> icon - <widget>General</widget> tab."
-msgstr ""
+msgstr "Отворете лентата с инструменти <widget>Проектиране на формуляр</widget>, щракнете върху иконата <widget>Свойства на формуляр</widget> - раздел <widget>Общи</widget>."
#. pKDYX
#: 00040501.xhp
@@ -11102,7 +11075,7 @@ msgctxt ""
"par_id3145786\n"
"help.text"
msgid "Open context menu of a selected form element - choose <menuitem>Form Properties - Data</menuitem> tab."
-msgstr ""
+msgstr "Отворете контекстното меню на избран елемент от формуляр - изберете раздела <menuitem>Свойства на формуляр - Данни</menuitem>."
#. BbiDH
#: 00040501.xhp
@@ -11111,7 +11084,7 @@ msgctxt ""
"par_id3158156\n"
"help.text"
msgid "Open <widget>Form Design</widget> toolbar, click <widget>Form Properties</widget> icon - <widget>Data</widget> tab."
-msgstr ""
+msgstr "Отворете лентата с инструменти <widget>Проектиране на формуляр</widget>, щракнете върху иконата <widget>Свойства на формуляр</widget> - раздел <widget>Данни</widget>."
#. gyPpR
#: 00040501.xhp
@@ -11120,7 +11093,7 @@ msgctxt ""
"par_id1979125\n"
"help.text"
msgid "Open context menu of a selected control on an <emph>XML Form</emph> document, choose <menuitem>Control Properties - Data</menuitem> tab."
-msgstr ""
+msgstr "Отворете контекстното меню на избрана контрола от <emph>XML формуляр</emph>, изберете раздела <menuitem>Свойства на контрола - Данни</menuitem>."
#. DtgW8
#: 00040501.xhp
@@ -11129,7 +11102,7 @@ msgctxt ""
"par_id1769463\n"
"help.text"
msgid "Open <widget>Form Controls</widget> toolbar of an <emph>XML Form</emph> document, click <widget>Control</widget> icon - <widget>Data</widget> tab."
-msgstr ""
+msgstr "Отворете лентата с инструменти <widget>Контроли за формуляри</widget> на <emph>XML формуляр</emph>, щракнете върху иконата <widget>Контрола</widget> - раздел <widget>Данни</widget>."
#. jGM6T
#: 00040501.xhp
@@ -11138,7 +11111,7 @@ msgctxt ""
"par_id3145364\n"
"help.text"
msgid "Open context menu of a selected form element - choose <menuitem>Form Properties - Events</menuitem> tab."
-msgstr ""
+msgstr "Отворете контекстното меню на избран елемент от формуляр - изберете раздела <menuitem>Свойства на формуляр - Събития</menuitem>."
#. ErFpd
#: 00040501.xhp
@@ -11147,7 +11120,7 @@ msgctxt ""
"par_id3153575\n"
"help.text"
msgid "Open <widget>Form Design</widget> toolbar, click <widget>Form Properties</widget> icon - <widget>Events</widget> tab."
-msgstr ""
+msgstr "Отворете лентата с инструменти <widget>Проектиране на формуляр</widget>, щракнете върху иконата <widget>Свойства на формуляр</widget> - раздел <widget>Събития</widget>."
#. w9Zuc
#: 00040501.xhp
@@ -11156,7 +11129,7 @@ msgctxt ""
"par_id3147234\n"
"help.text"
msgid "Open context menu of a selected form element - choose <menuitem>Control Properties</menuitem>."
-msgstr ""
+msgstr "Отворете контекстното меню на избран елемент от формуляр - изберете <menuitem>Свойства на контрола</menuitem>."
#. z6tko
#: 00040501.xhp
@@ -11183,7 +11156,7 @@ msgctxt ""
"par_id3153943\n"
"help.text"
msgid "Open context menu of a selected form element - choose <menuitem>Control Properties - General</menuitem> tab."
-msgstr ""
+msgstr "Отворете контекстното меню на избран елемент от формуляр - изберете раздела <menuitem>Свойства на контрола - Общи</menuitem>."
#. XDaSr
#: 00040501.xhp
@@ -11192,7 +11165,7 @@ msgctxt ""
"par_id3159198\n"
"help.text"
msgid "Open <widget>Form Design</widget> toolbar, click <widget>Control</widget> icon - <widget>General</widget> tab."
-msgstr ""
+msgstr "Отворете лентата с инструменти <widget>Проектиране на формуляр</widget>, щракнете върху иконата <widget>Контрола</widget> - раздел <widget>Общи</widget>."
#. MAnJk
#: 00040501.xhp
@@ -11201,7 +11174,7 @@ msgctxt ""
"par_id3153203\n"
"help.text"
msgid "Open context menu of a selected form element - choose <menuitem>Control Properties - Data</menuitem> tab."
-msgstr ""
+msgstr "Отворете контекстното меню на избран елемент от формуляр - изберете раздела <menuitem>Свойства на контрола - Данни</menuitem>."
#. LW7yw
#: 00040501.xhp
@@ -11210,7 +11183,7 @@ msgctxt ""
"par_id3150048\n"
"help.text"
msgid "Open <widget>Form Design</widget> toolbar, click <widget>Control</widget> icon - <widget>Data</widget> tab."
-msgstr ""
+msgstr "Отворете лентата с инструменти <widget>Проектиране на формуляр</widget>, щракнете върху иконата <widget>Контрола</widget> - раздел <widget>Данни</widget>."
#. U7r5z
#: 00040501.xhp
@@ -11219,7 +11192,7 @@ msgctxt ""
"par_id3153334\n"
"help.text"
msgid "Open context menu of a selected form element - choose <menuitem>Control Properties - Events</menuitem> tab."
-msgstr ""
+msgstr "Отворете контекстното меню на избран елемент от формуляр - изберете раздела <menuitem>Свойства на контрола - Събития</menuitem>."
#. GweHD
#: 00040501.xhp
@@ -11228,7 +11201,7 @@ msgctxt ""
"par_id3153744\n"
"help.text"
msgid "Open <widget>Form Design</widget> toolbar, click <widget>Control Properties</widget> icon - <widget>Events</widget> tab."
-msgstr ""
+msgstr "Отворете лентата с инструменти <widget>Проектиране на формуляр</widget>, щракнете върху иконата <widget>Свойства на контрола</widget> - раздел <widget>Събития</widget>."
#. 9LBJs
#: 00040501.xhp
@@ -14450,7 +14423,7 @@ msgctxt ""
"par_id3152417\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+A</keycode>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+A</keycode>"
#. Fmcad
#: edit_menu.xhp
@@ -14585,7 +14558,7 @@ msgctxt ""
"par_id31545031\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F</keycode>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F</keycode>"
#. f4EM6
#: edit_menu.xhp
@@ -14747,7 +14720,7 @@ msgctxt ""
"par_id3149281\n"
"help.text"
msgid "<variable id=\"link\">Choose <menuitem>Edit - Links to External Files</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"link\">Изберете <menuitem>Редактиране - Връзки към външни файлове</menuitem>.</variable>"
#. ARRG5
#: edit_menu.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/01.po b/source/bg/helpcontent2/source/text/shared/01.po
index 801c30d8563..82c3e07b829 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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-16 12:51+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-21 15:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562503995.000000\n"
@@ -3543,7 +3543,7 @@ msgctxt ""
"par_id211604484407570\n"
"help.text"
msgid "After printing, a document must be saved to preserve its <emph>Last printed</emph> data. No warning message is given about this, if an unsaved document is closed."
-msgstr ""
+msgstr "След отпечатване документът трябва да бъде записан, за да се запазят данните му за <emph>Последно отпечатан на</emph>. При затваряне на незаписан документ не се издава предупреждение за това."
#. mD6yU
#: 01100200.xhp
@@ -5120,24 +5120,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr "За някои видове документи можете да изберете отпечатване на брошура."
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr "Още настройки"
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr "<ahelp hid=\".\">В прозореца <emph>Още настройки</emph> можете да зададете някои допълнителни настройки за текущото задание за печат.</ahelp>"
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9395,14 +9377,14 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "Превключва между нормален изглед и изглед на главен документ."
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Икона</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Икона</alt></image>"
#. 3Lq2G
#: 02110000.xhp
@@ -9431,14 +9413,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_EDIT\">Редактирайте съдържанието на компонента, избран в списъка на прозореца <emph>Навигатор</emph>. Ако селекцията е файл, той ще бъде отворен за редактиране. Ако селекцията е указател, ще се отвори диалоговият прозорец <emph>Указател</emph>.</ahelp>"
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Икона</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Икона</alt></image>"
#. nRB3E
#: 02110000.xhp
@@ -9467,14 +9449,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Щракнете и изберете съдържанието, което желаете да се обнови.</ahelp>"
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Икона</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Икона</alt></image>"
#. F4J5u
#: 02110000.xhp
@@ -9602,14 +9584,14 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "Освен това можете да вмъквате файлове в главния документ като плъзнете файл от работния плот и го пуснете в изгледа на навигатора за главен документ."
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Икона</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Икона</alt></image>"
#. ijR7M
#: 02110000.xhp
@@ -9710,14 +9692,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Записва копие от съдържанието на свързаните файлове в главния документ. Така е сигурно, че текущото съдържание ще бъде налично дори ако свързаните файлове са недостъпни.</ahelp>"
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Икона</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Икона</alt></image>"
#. ADEyJ
#: 02110000.xhp
@@ -9746,14 +9728,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Премества селекцията с една позиция нагоре в списъка на навигатора.</ahelp> Можете да местите елементите и като ги плъзгате и пускате в списъка. Ако преместите текстов раздел върху друг текстов раздел, двата ще се слеят."
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Икона</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Икона</alt></image>"
#. GqEUL
#: 02110000.xhp
@@ -9782,14 +9764,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Премества селекцията с една позиция надолу в списъка на навигатора.</ahelp> Можете да местите елементите и като ги плъзгате и пускате в списъка. Ако преместите текстов раздел върху друг текстов раздел, двата ще се слеят."
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
-msgstr "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Икона</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgstr "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Икона</alt></image>"
#. DLEGF
#: 02110000.xhp
@@ -9825,7 +9807,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit Links to External Files"
-msgstr ""
+msgstr "Редактиране на връзки към външни файлове"
#. YrBSL
#: 02180000.xhp
@@ -9843,7 +9825,7 @@ msgctxt ""
"hd_id3150279\n"
"help.text"
msgid "Edit Links to External Files"
-msgstr ""
+msgstr "Редактиране на връзки към външни файлове"
#. hN2Am
#: 02180000.xhp
@@ -9852,7 +9834,7 @@ msgctxt ""
"par_id3150774\n"
"help.text"
msgid "<variable id=\"links_text\"><ahelp hid=\".\">You can change or remove each link to external files in the current document. You can also update the content of the current file to the most recently saved version of linked external file. This command does not apply to hyperlinks, and is not available if the current document does not contain links to other files.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"links_text\"><ahelp hid=\".\">Можете да промените или премахнете всяка от връзките към външни файлове в текущия документ. Можете също да обновите съдържанието на текущия файл към най-скоро записаната версия на свързания външен файл. Тази команда не важи за хипервръзките и не е достъпна, ако текущият документ не съдържа връзки към други файлове.</ahelp></variable>"
#. G6vaB
#: 02180000.xhp
@@ -9861,7 +9843,7 @@ msgctxt ""
"par_id271603459179173\n"
"help.text"
msgid "This command can be used with external file links to <switchinline select=\"appl\"><caseinline select=\"WRITER\">sections (place cursor outside of the section), master documents,</caseinline><caseinline select=\"CALC\">sheets linked with <menuitem>Sheet - Link Sheet from File</menuitem> or <menuitem>Sheet - Link to External Data</menuitem>, Function WEBSERVICE,</caseinline></switchinline> images and OLE objects (when inserted with a link to an external file)."
-msgstr ""
+msgstr "Тази команда може да бъде използвана с връзки към външни файлове, които сочат към <switchinline select=\"appl\"><caseinline select=\"WRITER\">раздели (поставете курсора извън раздела), главни документи,</caseinline><caseinline select=\"CALC\">листове, свързани чрез <menuitem>Лист - Свързване на лист от файл</menuitem> или <menuitem>Лист - Връзка към външни данни</menuitem>, функцията WEBSERVICE,</caseinline></switchinline> изображения и OLE обекти (когато са вмъкнати чрез връзка към външен файл)."
#. g3wLZ
#: 02180000.xhp
@@ -13425,7 +13407,7 @@ msgctxt ""
"par_id3153255\n"
"help.text"
msgid "<ahelp hid=\".uno:ColorControl\"><variable id=\"colorbar_text\">Show or hide the <emph>Color</emph> bar.</variable> To modify or change the color table that is displayed, choose <menuitem>Format - Area</menuitem>, and then click on the <emph>Colors</emph> tab.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:ColorControl\"><variable id=\"colorbar_text\">Показва или скрива лентата <emph>Цветове</emph>.</variable> За да промените или смените показаната таблица с цветове, изберете <menuitem>Форматиране - Област</menuitem> и отворете раздела <emph>Цветове</emph>.</ahelp>"
#. EFZwD
#: 03170000.xhp
@@ -22398,7 +22380,7 @@ msgctxt ""
"bm_id3150620\n"
"help.text"
msgid "<bookmark_value>pages;formatting and numbering</bookmark_value><bookmark_value>formatting;pages</bookmark_value><bookmark_value>paper formats</bookmark_value><bookmark_value>paper trays</bookmark_value><bookmark_value>printers;paper trays</bookmark_value><bookmark_value>layout;pages</bookmark_value><bookmark_value>binding space</bookmark_value><bookmark_value>margins;pages</bookmark_value><bookmark_value>gutter</bookmark_value><bookmark_value>changing;page size</bookmark_value><bookmark_value>changing;page margins</bookmark_value><bookmark_value>page margins</bookmark_value><bookmark_value>margins;defining</bookmark_value><bookmark_value>page size;defining</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>страници;форматиране и номериране</bookmark_value><bookmark_value>форматиране;страници</bookmark_value><bookmark_value>формати на хартия</bookmark_value><bookmark_value>тави за хартия</bookmark_value><bookmark_value>принтери;тави за хартия</bookmark_value><bookmark_value>оформление;страници</bookmark_value><bookmark_value>поле за подвързване</bookmark_value><bookmark_value>бели полета;страници</bookmark_value><bookmark_value>подвързване, поле за</bookmark_value><bookmark_value>промяна;размер на страницата</bookmark_value><bookmark_value>промяна;бели полета на страница</bookmark_value><bookmark_value>страници, бели полета на</bookmark_value><bookmark_value>бели полета;задаване</bookmark_value><bookmark_value>размер на страница;задаване</bookmark_value>"
#. 2VdNc
#: 05040200.xhp
@@ -28167,7 +28149,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Position and Size (Text Box and Shape)"
-msgstr ""
+msgstr "Позиция и размер (текстово поле и фигура)"
#. rrFri
#: 05230100.xhp
@@ -28221,7 +28203,7 @@ msgctxt ""
"par_id891602774200160\n"
"help.text"
msgid "Coordinate axes start at column A - row 1."
-msgstr ""
+msgstr "Координатните оси започват от колона A, ред 1."
#. TZgsN
#: 05230100.xhp
@@ -28230,7 +28212,7 @@ msgctxt ""
"par_id711602774229336\n"
"help.text"
msgid "X-coordinates are negative in a \"right-to-left\" table."
-msgstr ""
+msgstr "В таблица с посока на четене „от дясно наляво“ координатите X са отрицателни."
#. FkhZd
#: 05230100.xhp
@@ -28239,7 +28221,7 @@ msgctxt ""
"par_id491602774311111\n"
"help.text"
msgid "Coordinates are relative to the origin. Left/top corner of the page content area is the initial default."
-msgstr ""
+msgstr "Координатите са относителни спрямо началото. Подразбираната начална позиция е в горния ляв ъгъл на областта за съдържание на страницата."
#. Snfmr
#: 05230100.xhp
@@ -28257,7 +28239,7 @@ msgctxt ""
"par_id3155616\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/possizetabpage/MTR_FLD_POS_X\">Enter the horizontal coordinate where the selected base point should be placed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/possizetabpage/MTR_FLD_POS_X\">Въведете хоризонталната координата, на която трябва да бъде разположена избраната базова точка.</ahelp>"
#. qHcAA
#: 05230100.xhp
@@ -28275,7 +28257,7 @@ msgctxt ""
"par_id3147373\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/possizetabpage/MTR_FLD_POS_Y\">Enter the vertical coordinate where the selected base point should be placed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/possizetabpage/MTR_FLD_POS_Y\">Въведете вертикалната координата, на която трябва да бъде разположена избраната базова точка.</ahelp>"
#. AWT9v
#: 05230100.xhp
@@ -28293,7 +28275,7 @@ msgctxt ""
"par_id3147008\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/possizetabpage/CTL_POSRECT\">The selected base point will be moved to the specified <emph>Position Y</emph> and <emph>Position X</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/possizetabpage/CTL_POSRECT\">Избраната базова точка ще бъде преместена на избраната <emph>Позиция по X</emph> и <emph>Позиция по Y</emph>.</ahelp>"
#. cE49F
#: 05230100.xhp
@@ -28302,7 +28284,7 @@ msgctxt ""
"par_id61602773901231\n"
"help.text"
msgid "The base point always returns to the left/top corner on reopening the dialog."
-msgstr ""
+msgstr "Базовата точка винаги се връща в горния ляв ъгъл при следващо отваряне на диалога."
#. 2qMEV
#: 05230100.xhp
@@ -28320,7 +28302,7 @@ msgctxt ""
"par_id31507749753\n"
"help.text"
msgid "Specify the size of the selected object."
-msgstr ""
+msgstr "Задайте размера на избрания обект."
#. oaVxX
#: 05230100.xhp
@@ -28329,7 +28311,7 @@ msgctxt ""
"par_id3150774\n"
"help.text"
msgid "Resize the selected object to the chosen width and height relative to the selected base point."
-msgstr ""
+msgstr "Преоразмерете избрания обект до желаната ширина и височина спрямо избраната базова точка."
#. gfmHb
#: 05230100.xhp
@@ -28383,7 +28365,7 @@ msgctxt ""
"par_id3155341\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/possizetabpage/CBX_SCALE\">Maintains the width and height ratio when changing the width or height setting in the dialog box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/possizetabpage/CBX_SCALE\">Поддържа съотношението между ширината и височината, когато се променя настройката за ширина или за височина в диалоговия прозорец.</ahelp>"
#. RS3Rj
#: 05230100.xhp
@@ -28392,7 +28374,7 @@ msgctxt ""
"par_id501602631263504\n"
"help.text"
msgid "Only for shapes."
-msgstr ""
+msgstr "Само за фигури."
#. D3kAe
#: 05230100.xhp
@@ -28401,7 +28383,7 @@ msgctxt ""
"hd_id731601417097805\n"
"help.text"
msgid "To frame"
-msgstr ""
+msgstr "Към рамка"
#. WRzKk
#: 05230100.xhp
@@ -28410,7 +28392,7 @@ msgctxt ""
"par_id181601417265098\n"
"help.text"
msgid "<ahelp hid=\".\">Anchors the selection to the surrounding frame.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Закотвя селекцията за обграждащата рамка.</ahelp>"
#. uREAs
#: 05230100.xhp
@@ -28428,7 +28410,7 @@ msgctxt ""
"par_id3154897\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/possizetabpage/CTL_SIZERECT\">Click a base point in the grid, and then enter the new size dimensions for the selected object in the <emph>Width</emph> and <emph>Height</emph> boxes.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/possizetabpage/CTL_SIZERECT\">Щракнете върху базова точка в решетката, след което въевдете нови размери за избрания обект в полетата <emph>Ширина</emph> и <emph>Височина</emph>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/possizetabpage/CTL_SIZERECT\">Щракнете върху базова точка в решетката, след което въведете нови размери за избрания обект в полетата <emph>Ширина</emph> и <emph>Височина</emph>.</ahelp>"
#. UvHvA
#: 05230100.xhp
@@ -28437,7 +28419,7 @@ msgctxt ""
"par_id501602631133297\n"
"help.text"
msgid "The selected base point remains fixed in the grid. The object is resized relative to that point."
-msgstr ""
+msgstr "Избраната базова точка остава фиксирана в решетката. Обектът се преоразмерява спрямо тази точка."
#. J2shX
#: 05230100.xhp
@@ -28464,7 +28446,7 @@ msgctxt ""
"par_id3149784\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/possizetabpage/TSB_POSPROTECT\">Prevents changes to the position and size of the selected object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/possizetabpage/TSB_POSPROTECT\">Предотвратява промени в позицията или размера на избрания обект.</ahelp>"
#. jqJ6D
#: 05230100.xhp
@@ -28545,7 +28527,7 @@ msgctxt ""
"par_id841603276770477\n"
"help.text"
msgid "<variable id=\"AdaptNote\">Adapt is only available for Text Boxes. To adapt Shapes to text, use</variable> <menuitem>Format - Object - Text</menuitem>."
-msgstr ""
+msgstr "<variable id=\"AdaptNote\">Адаптирането е достъпно само за текстови полета. За да адаптирате фигури към текст, използвайте</variable> <menuitem>Форматиране - Обект - Текст</menuitem>."
#. fqg3X
#: 05230100.xhp
@@ -28554,7 +28536,7 @@ msgctxt ""
"par_id591602522244128\n"
"help.text"
msgid "<embedvar href=\"text/shared/01/05230100.xhp#AdaptNote\"/> <menuitem>Format - Text</menuitem>."
-msgstr ""
+msgstr "<embedvar href=\"text/shared/01/05230100.xhp#AdaptNote\"/> <menuitem>Форматиране - Текст</menuitem>."
#. F5Va7
#: 05230100.xhp
@@ -28563,7 +28545,7 @@ msgctxt ""
"par_id3145606\n"
"help.text"
msgid "<link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Anchor types\">Positioning Objects</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Anchor types\">Позициониране на обекти</link>"
#. jswWJ
#: 05230100.xhp
@@ -28572,7 +28554,7 @@ msgctxt ""
"par_id31456062468\n"
"help.text"
msgid "<link href=\"text/sdraw/guide/rotate_object.xhp\" name=\"Rotating Objects\">Rotating Objects</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/guide/rotate_object.xhp\" name=\"Rotating Objects\">Завъртане на обекти</link>"
#. NxdaT
#: 05230100.xhp
@@ -28581,7 +28563,7 @@ msgctxt ""
"par_id3145624967\n"
"help.text"
msgid "<link href=\"text/shared/01/05230300.xhp\" name=\"Rotation\">Rotation</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05230300.xhp\" name=\"Rotation\">Завъртане</link>"
#. UuCyG
#: 05230300.xhp
@@ -34089,7 +34071,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Distribute"
-msgstr ""
+msgstr "Разпределяне"
#. Wmrwt
#: 05360000.xhp
@@ -34098,7 +34080,7 @@ msgctxt ""
"bm_id21601641916305\n"
"help.text"
msgid "<bookmark_value>drawing objects;distribute</bookmark_value><bookmark_value>drawing objects;distribute evenly</bookmark_value><bookmark_value>distribute objects in drawings</bookmark_value><bookmark_value>distribute objects vertically</bookmark_value><bookmark_value>distribute objects;vertically evenly</bookmark_value><bookmark_value>distribute objects horizontally</bookmark_value><bookmark_value>distribute objects;horizontally evenly</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>графични обекти;разпределяне</bookmark_value><bookmark_value>графични обекти;равномерно разпределяне</bookmark_value><bookmark_value>разпределяне на обекти в рисунки</bookmark_value><bookmark_value>вертикално разпределяне на обекти</bookmark_value><bookmark_value>разпределяне на обекти;равномерно по вертикала</bookmark_value><bookmark_value>хоризонтално разпределяне на обекти</bookmark_value><bookmark_value>разпределяне на обекти;равномерно по хоризонтала</bookmark_value>"
#. suNMy
#: 05360000.xhp
@@ -34107,7 +34089,7 @@ msgctxt ""
"hd_id3154812\n"
"help.text"
msgid "<link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\">Distribute Selection</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\">Разпределяне на селекцията</link>"
#. qsB33
#: 05360000.xhp
@@ -34116,7 +34098,7 @@ msgctxt ""
"par_id3149119\n"
"help.text"
msgid "<ahelp hid=\".uno:DistributeSelection\">Distributes three or more selected objects evenly along the horizontal axis or the vertical axis. You can also evenly distribute the spacing between objects.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:DistributeSelection\">Разпределя три или повече обекта равномерно по хоризонтална или вертикална ос. Освен това можете да разпределите равномерно разстоянията между обектите.</ahelp>"
#. Zydiv
#: 05360000.xhp
@@ -34134,7 +34116,7 @@ msgctxt ""
"par_id311601648361449\n"
"help.text"
msgid "<image src=\"media/helpimg/sdraw/distribute-orig.svg\" id=\"img_id11601648361449\" width=\"416px\" height=\"300px\"><alt id=\"alt_id791601648361450\">Original object distribution</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sdraw/distribute-orig.svg\" id=\"img_id11601648361449\" width=\"416px\" height=\"300px\"><alt id=\"alt_id791601648361450\">Оригинално разпределение на обектите</alt></image>"
#. 3h7pC
#: 05360000.xhp
@@ -34161,7 +34143,7 @@ msgctxt ""
"hd_id3148990\n"
"help.text"
msgid "Horizontally Left"
-msgstr ""
+msgstr "Хоризонтално отляво"
#. wkTTC
#: 05360000.xhp
@@ -34170,7 +34152,7 @@ msgctxt ""
"par_id3159269\n"
"help.text"
msgid "<ahelp hid=\".uno:DistributeHorzLeft\">Distributes the selected objects, so that the left edges of the objects are evenly spaced from one another.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:DistributeHorzLeft\">Разпределя избраните обекти така, че левите им краища да са през равни разстояния.</ahelp>"
#. hQpFA
#: 05360000.xhp
@@ -34179,7 +34161,7 @@ msgctxt ""
"par_id381601648619454\n"
"help.text"
msgid "<image src=\"media/helpimg/sdraw/distribute-HL.svg\" id=\"img_id131601648619455\" width=\"416px\" height=\"300px\"><alt id=\"alt_id551601648619456\">Object distribution horizontally left</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sdraw/distribute-HL.svg\" id=\"img_id131601648619455\" width=\"416px\" height=\"300px\"><alt id=\"alt_id551601648619456\">Разпределяне на обектите хоризонтално отляво</alt></image>"
#. cT8gY
#: 05360000.xhp
@@ -34188,7 +34170,7 @@ msgctxt ""
"hd_id3150130\n"
"help.text"
msgid "Horizontally Center"
-msgstr ""
+msgstr "Хоризонтално центрирано"
#. JWvSE
#: 05360000.xhp
@@ -34197,7 +34179,7 @@ msgctxt ""
"par_id3153146\n"
"help.text"
msgid "<ahelp hid=\".uno:DistributeHorzCenter\">Distributes the selected objects, so that the horizontal centers of the objects are evenly spaced from one another.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:DistributeHorzCenter\">Разпределя избраните обекти така, че хоризонталните им центрове да са през равни разстояния.</ahelp>"
#. 8jGYq
#: 05360000.xhp
@@ -34206,7 +34188,7 @@ msgctxt ""
"par_id861601648972377\n"
"help.text"
msgid "<image src=\"media/helpimg/sdraw/distribute-HC.svg\" id=\"img_id101601648972378\" width=\"416px\" height=\"300px\"><alt id=\"alt_id321601648972379\">Object distribution horizontally center</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sdraw/distribute-HC.svg\" id=\"img_id101601648972378\" width=\"416px\" height=\"300px\"><alt id=\"alt_id321601648972379\">Разпределяне на обектите хоризонтално центрирано</alt></image>"
#. ZdBdK
#: 05360000.xhp
@@ -34215,7 +34197,7 @@ msgctxt ""
"hd_id3147574\n"
"help.text"
msgid "Horizontally Spacing"
-msgstr ""
+msgstr "Хоризонтално с равна разредка"
#. 6iCwM
#: 05360000.xhp
@@ -34224,7 +34206,7 @@ msgctxt ""
"par_id3148924\n"
"help.text"
msgid "<ahelp hid=\".uno:DistributeHorzDistance\">Distributes the selected objects horizontally, so that the objects are evenly spaced from one another.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:DistributeHorzDistance\">Разпределя избраните обекти хоризонтално така, че разстоянията помежду им да са еднакви.</ahelp>"
#. UpymG
#: 05360000.xhp
@@ -34233,7 +34215,7 @@ msgctxt ""
"par_id821601649033088\n"
"help.text"
msgid "<image src=\"media/helpimg/sdraw/distribute-HS.svg\" id=\"img_id411601649033089\" width=\"416px\" height=\"300px\"><alt id=\"alt_id651601649033090\">Object distribution horizontally spaced evenly</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sdraw/distribute-HS.svg\" id=\"img_id411601649033089\" width=\"416px\" height=\"300px\"><alt id=\"alt_id651601649033090\">Разпределяне на обектите хоризонтално през равни разстояния</alt></image>"
#. xjBSF
#: 05360000.xhp
@@ -34242,7 +34224,7 @@ msgctxt ""
"hd_id3155390\n"
"help.text"
msgid "Horizontally Right"
-msgstr ""
+msgstr "Хоризонтално отдясно"
#. FTkZn
#: 05360000.xhp
@@ -34251,7 +34233,7 @@ msgctxt ""
"par_id3153252\n"
"help.text"
msgid "<ahelp hid=\".uno:DistributeHorzRight\">Distributes the selected objects, so that the right edges of the objects are evenly spaced from one another.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:DistributeHorzRight\">Разпределя избраните обекти така, че десните им краища да са през равни разстояния.</ahelp>"
#. 4fC4G
#: 05360000.xhp
@@ -34260,7 +34242,7 @@ msgctxt ""
"par_id541601649087591\n"
"help.text"
msgid "<image src=\"media/helpimg/sdraw/distribute-HR.svg\" id=\"img_id321601649087592\" width=\"416px\" height=\"300px\"><alt id=\"alt_id811601649087593\">Object distribution horizontally right</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sdraw/distribute-HR.svg\" id=\"img_id321601649087592\" width=\"416px\" height=\"300px\"><alt id=\"alt_id811601649087593\">Разпределяне на обектите хоризонтално отдясно</alt></image>"
#. ppAtV
#: 05360000.xhp
@@ -34287,7 +34269,7 @@ msgctxt ""
"hd_id3153626\n"
"help.text"
msgid "Vertically Top"
-msgstr ""
+msgstr "Вертикално отгоре"
#. Jnbia
#: 05360000.xhp
@@ -34296,7 +34278,7 @@ msgctxt ""
"par_id3152361\n"
"help.text"
msgid "<ahelp hid=\".uno:DistributeVertTop\">Distributes the selected objects, so that the top edges of the objects are evenly spaced from one another.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:DistributeVertTop\">Разпределя избраните обекти така, че горните им краища да са през равни разстояния.</ahelp>"
#. FRub3
#: 05360000.xhp
@@ -34305,7 +34287,7 @@ msgctxt ""
"par_id901601655277555\n"
"help.text"
msgid "<image src=\"media/helpimg/sdraw/distribute-VT.svg\" id=\"img_id81601655277556\" width=\"416px\" height=\"300px\"><alt id=\"alt_id671601655277557\">Distribute objects vertically top</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sdraw/distribute-VT.svg\" id=\"img_id81601655277556\" width=\"416px\" height=\"300px\"><alt id=\"alt_id671601655277557\">Разпределяне на обектите вертикално отгоре</alt></image>"
#. t6Fxc
#: 05360000.xhp
@@ -34314,7 +34296,7 @@ msgctxt ""
"hd_id3147264\n"
"help.text"
msgid "Vertically Center"
-msgstr ""
+msgstr "Вертикално центрирано"
#. iJ5uJ
#: 05360000.xhp
@@ -34323,7 +34305,7 @@ msgctxt ""
"par_id3161656\n"
"help.text"
msgid "<ahelp hid=\".uno:DistributeVertCenter\">Distributes the selected objects, so that the vertical centers of the objects are evenly spaced from one another.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:DistributeVertCenter\">Разпределя избраните обекти така, че вертикалните им центрове да са през равни разстояния.</ahelp>"
#. kjsCh
#: 05360000.xhp
@@ -34332,7 +34314,7 @@ msgctxt ""
"par_id561601655348463\n"
"help.text"
msgid "<image src=\"media/helpimg/sdraw/distribute-VC.svg\" id=\"img_id911601655348464\" width=\"416px\" height=\"300px\"><alt id=\"alt_id71601655348465\">Distribute objects vertically center</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sdraw/distribute-VC.svg\" id=\"img_id911601655348464\" width=\"416px\" height=\"300px\"><alt id=\"alt_id71601655348465\">Разпределяне на обектите вертикално центрирано</alt></image>"
#. eenms
#: 05360000.xhp
@@ -34341,7 +34323,7 @@ msgctxt ""
"hd_id3150865\n"
"help.text"
msgid "Vertically Spacing"
-msgstr ""
+msgstr "Вертикално с равна разредка"
#. ZdQ2J
#: 05360000.xhp
@@ -34350,7 +34332,7 @@ msgctxt ""
"par_id3153360\n"
"help.text"
msgid "<ahelp hid=\".uno:DistributeVertDistance\">Distributes the selected objects vertically, so that the objects are evenly spaced from one another.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:DistributeVertDistance\">Разпределя избраните обекти вертикално така, че разстоянията помежду им да са еднакви.</ahelp>"
#. 6mwyB
#: 05360000.xhp
@@ -34359,7 +34341,7 @@ msgctxt ""
"par_id121601655395816\n"
"help.text"
msgid "<image src=\"media/helpimg/sdraw/distribute-VS.svg\" id=\"img_id711601655395817\" width=\"416px\" height=\"300px\"><alt id=\"alt_id711601655395818\">Object distribution horizontally spaced evenly</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sdraw/distribute-VS.svg\" id=\"img_id711601655395817\" width=\"416px\" height=\"300px\"><alt id=\"alt_id711601655395818\">Разпределяне на обектите хоризонтално през равни разстояния</alt></image>"
#. 6WiKJ
#: 05360000.xhp
@@ -34368,7 +34350,7 @@ msgctxt ""
"hd_id3154071\n"
"help.text"
msgid "Vertically Bottom"
-msgstr ""
+msgstr "Вертикално отдолу"
#. GsJmx
#: 05360000.xhp
@@ -34377,7 +34359,7 @@ msgctxt ""
"par_id3152771\n"
"help.text"
msgid "<ahelp hid=\".uno:DistributeVertBottom\">Distributes the selected objects, so that the bottom edges of the objects are evenly spaced from one another.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:DistributeVertBottom\">>Разпределя избраните обекти така, че долните им краища да са през равни разстояния.</ahelp>"
#. rSLFJ
#: 05360000.xhp
@@ -34386,7 +34368,7 @@ msgctxt ""
"par_id891601655444280\n"
"help.text"
msgid "<image src=\"media/helpimg/sdraw/distribute-VB.svg\" id=\"img_id931601655444281\" width=\"416px\" height=\"300px\"><alt id=\"alt_id191601655444282\">Distribute objects vertically bottom</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sdraw/distribute-VB.svg\" id=\"img_id931601655444281\" width=\"416px\" height=\"300px\"><alt id=\"alt_id191601655444282\">Разпределяне на обектите вертикално отдолу</alt></image>"
#. NLPgX
#: 05990000.xhp
@@ -37716,7 +37698,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Customize (Bullets and Numbering)"
-msgstr ""
+msgstr "Настройки (водачи и номерация)"
#. QChMa
#: 06050500.xhp
@@ -39768,7 +39750,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Menus (Customizing)"
-msgstr ""
+msgstr "Менюта (персонализиране)"
#. AovmE
#: 06140100.xhp
@@ -39813,7 +39795,7 @@ msgctxt ""
"par_id621514299131013\n"
"help.text"
msgid "Choose <menuitem>Tools - Customize - Menus</menuitem> tab."
-msgstr ""
+msgstr "Изберете раздела <menuitem>Настройки - Персонализиране - Менюта</menuitem>."
#. nzad5
#: 06140100.xhp
@@ -39858,7 +39840,7 @@ msgctxt ""
"hd_id551514302487751\n"
"help.text"
msgid "Available Commands"
-msgstr ""
+msgstr "Налични команди"
#. B7bPB
#: 06140100.xhp
@@ -39867,7 +39849,7 @@ msgctxt ""
"par_id831514302518564\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the results of the combination of the search string and category of the desired command.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Показва резултатите, които отговарят на търсения текст и избраната категория команди.</ahelp>"
#. NZ9Gq
#: 06140100.xhp
@@ -39921,7 +39903,7 @@ msgctxt ""
"par_id921514303969718\n"
"help.text"
msgid "<ahelp hid=\".\">Select the menu where the customization is to be applied.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Изберете менюто, в което да се приложи персонализирането.</ahelp>"
#. SCRFN
#: 06140100.xhp
@@ -39948,7 +39930,7 @@ msgctxt ""
"par_id811604400309745\n"
"help.text"
msgid "<image src=\"sfx2/res/actionaction013.png\" id=\"img_id381604400309745\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id131604400309745\">Gear Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"sfx2/res/actionaction013.png\" id=\"img_id381604400309745\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id131604400309745\">Икона със зъбно колело</alt></image>"
#. uniCg
#: 06140100.xhp
@@ -39957,7 +39939,7 @@ msgctxt ""
"par_id421604400309745\n"
"help.text"
msgid "Gear icon"
-msgstr ""
+msgstr "Икона със зъбно колело"
#. uWnv3
#: 06140100.xhp
@@ -39993,7 +39975,7 @@ msgctxt ""
"hd_id331604401016431\n"
"help.text"
msgid "Assigned Commands"
-msgstr ""
+msgstr "Присвоени команди"
#. oBFeq
#: 06140100.xhp
@@ -40002,7 +39984,7 @@ msgctxt ""
"par_id211604401156006\n"
"help.text"
msgid "Displays the commands that will be shown in the target menu."
-msgstr ""
+msgstr "Показва командите, които ще се виждат в менюто цел."
#. Fk4VQ
#: 06140100.xhp
@@ -40020,7 +40002,7 @@ msgctxt ""
"par_id941514303982378\n"
"help.text"
msgid "<ahelp hid=\".\">Click on the right arrow button to select a command on the left display box and copy to the right display box. This will add the command to the selected menu.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Щракнете върху бутона със стрелка надясно, за да изберете команда от левия списък и да я копирате в десния. Така ще я добавите в избраното меню.</ahelp>"
#. EvCkK
#: 06140100.xhp
@@ -40074,7 +40056,7 @@ msgctxt ""
"hd_id631604851974598\n"
"help.text"
msgid "Customize"
-msgstr ""
+msgstr "Персонализиране"
#. G2yK8
#: 06140100.xhp
@@ -40290,7 +40272,7 @@ msgctxt ""
"par_id531603928029282\n"
"help.text"
msgid "To assign or modify a shortcut key: select a command in the <emph>Function</emph> list, select the key combination to be assigned in the <emph>Shortcut Keys</emph> list, then click <emph>Modify</emph>."
-msgstr ""
+msgstr "За да присвоите или промените клавишна комбинация: изберете команда в списъка <emph>Функция</emph>, изберете клавишна комбинация, която да бъде присвоена, в списъка <emph>Клавишни комбинации</emph>, после щракнете върху <emph>Промяна</emph>."
#. BXkQm
#: 06140200.xhp
@@ -40299,7 +40281,7 @@ msgctxt ""
"par_id341603930297058\n"
"help.text"
msgid "If the selected function already has a shortcut key, it is displayed in the <emph>Keys </emph>list. It is possible to assign the same function to more than one key."
-msgstr ""
+msgstr "Ако избраната функция вече има клавишна комбинация, тя се показва в списъка <emph>Клавиши</emph>. Възможно е една и съща функция да се присвои на повече от един клавиш."
#. Fi6Jn
#: 06140200.xhp
@@ -40326,7 +40308,7 @@ msgctxt ""
"par_id3149811\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/accelconfigpage/shortcuts\">Lists the shortcut keys and the associated commands.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/accelconfigpage/shortcuts\">Изброява клавишните комбинации и свързаните с тях команди.</ahelp>"
#. GWDEX
#: 06140200.xhp
@@ -40380,7 +40362,7 @@ msgctxt ""
"par_id3159148\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/accelconfigpage/function\">Lists functions that can be assigned to a shortcut key.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/accelconfigpage/function\">Изброява функциите, които могат да бъдат присвоени на клавишна комбинация.</ahelp>"
#. Gfzcs
#: 06140200.xhp
@@ -40533,7 +40515,7 @@ msgctxt ""
"par_id261603929349350\n"
"help.text"
msgid "<link href=\"text/shared/main0400.xhp\" name=\"frequentkeys\">Shortcut Keys in %PRODUCTNAME</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/main0400.xhp\" name=\"frequentkeys\">Клавишни комбинации в %PRODUCTNAME</link>"
#. fybrb
#: 06140300.xhp
@@ -40542,7 +40524,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Context Menus (Customizing)"
-msgstr ""
+msgstr "Контекстни менюта (персонализиране)"
#. PGanB
#: 06140300.xhp
@@ -40587,7 +40569,7 @@ msgctxt ""
"par_id621514299131013\n"
"help.text"
msgid "Choose <menuitem>Tools - Customize - Context Menus</menuitem> tab."
-msgstr ""
+msgstr "Изберете раздела <menuitem>Настройки - Персонализиране - Контекстни менюта</menuitem>."
#. dTLGx
#: 06140300.xhp
@@ -40677,7 +40659,7 @@ msgctxt ""
"par_id921514303969718\n"
"help.text"
msgid "Select the Context Menu where the customization is to be applied."
-msgstr ""
+msgstr "Изберете контекстното меню, в което да се приложи персонализирането."
#. DLGB3
#: 06140300.xhp
@@ -40731,7 +40713,7 @@ msgctxt ""
"hd_id381604852428742\n"
"help.text"
msgid "Customize"
-msgstr ""
+msgstr "Персонализиране"
#. ASEww
#: 06140300.xhp
@@ -44601,7 +44583,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Snap Guides"
-msgstr ""
+msgstr "Помощни линии"
#. c8J5E
#: guides.xhp
@@ -44619,7 +44601,7 @@ msgctxt ""
"par_idN10562\n"
"help.text"
msgid "<link href=\"text/shared/01/guides.xhp\">Snap Guides</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/guides.xhp\">Помощни линии</link>"
#. XeU3j
#: guides.xhp
@@ -44628,7 +44610,7 @@ msgctxt ""
"par_id3146313\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the display options for snap guides.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Задава настройките за изобразяване на помощни линии.</ahelp>"
#. R26xc
#: guides.xhp
@@ -44637,7 +44619,7 @@ msgctxt ""
"par_idN1057B\n"
"help.text"
msgid "Display Snap Guides"
-msgstr ""
+msgstr "Видими помощни линии"
#. jQwEy
#: guides.xhp
@@ -44646,7 +44628,7 @@ msgctxt ""
"par_idN1057F\n"
"help.text"
msgid "Displays or hides snap guides that you can use to align objects on a page."
-msgstr ""
+msgstr "Показва или скрива помощните линии, чрез които можете да подравнявате обекти върху страница."
#. Wpp35
#: guides.xhp
@@ -44655,7 +44637,7 @@ msgctxt ""
"par_idN105C6\n"
"help.text"
msgid "Snap Guides to Front"
-msgstr ""
+msgstr "Помощните линии отпред"
#. euVcC
#: guides.xhp
@@ -44664,7 +44646,7 @@ msgctxt ""
"par_idN105CA\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the snap guides in front of the objects on the <switchinline select=\"appl\"><caseinline select=\"DRAW\">page</caseinline><caseinline select=\"IMPRESS\">slide</caseinline><defaultinline>page</defaultinline></switchinline>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Показва помощните линии пред обектите в <switchinline select=\"appl\"><caseinline select=\"DRAW\">страницата</caseinline><caseinline select=\"IMPRESS\">кадъра</caseinline><defaultinline>страницата</defaultinline></switchinline>.</ahelp>"
#. FELMB
#: image_compression.xhp
@@ -48165,7 +48147,7 @@ msgctxt ""
"hd_id2796411\n"
"help.text"
msgid "Archive (PDF/A, ISO 19005)"
-msgstr ""
+msgstr "Архив (PDF/A, ISO 19005)"
#. ELsXa
#: ref_pdf_export_general.xhp
@@ -48174,7 +48156,7 @@ msgctxt ""
"par_id5016327\n"
"help.text"
msgid "<ahelp hid=\".\">Converts to the PDF/A-1b, PDF/A-2b, or PDF/A-3b format. All fonts used in the source document are embedded in the generated PDF file, and PDF tags are written. The primary purpose is to create an electronic document whose appearance is device and application independent, making it suitable for long term preservation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Преобразува към формат PDF/A-1b, PDF/A-2b или PDF/A-3b. Всички шрифтове, използвани в документа източник, се вграждат в генерирания PDF файл и се записват PDF етикети. Основната цел е да се създаде електронен документ, чийто облик е независим от устройството и приложението, което го прави подходящ за дългосрочно съхранение.</ahelp>"
#. RyRdK
#: ref_pdf_export_general.xhp
@@ -48183,7 +48165,7 @@ msgctxt ""
"par_id301602634061241\n"
"help.text"
msgid "PDF/A-2b is recommended for most users, because it allows for layers and transparency with shapes and images. It also compresses better (JPEG 2000) than PDF/A-1b, usually producing smaller files. PDF/A-3b is identical to PDF/A-2b, but also accepts embedding of other file formats."
-msgstr ""
+msgstr "PDF/A-2b се препоръчва за повечето потребители, понеже позволява слоеве и прозрачност за фигури и изображения. Освен това той компресира по-добре (JPEG 2000) от PDF/A-1b, като обикновено дава като резултат по-малки файлове. PDF/A-3b е еднакъв с PDF/A-2b, но освен това приема вграждане на други файлови формати."
#. UTPZ7
#: ref_pdf_export_general.xhp
@@ -48291,7 +48273,7 @@ msgctxt ""
"hd_id671602451425200\n"
"help.text"
msgid "Structure"
-msgstr ""
+msgstr "Структура"
#. FWYXV
#: ref_pdf_export_general.xhp
@@ -48300,7 +48282,7 @@ msgctxt ""
"par_id51602451783950\n"
"help.text"
msgid "Sets options for diverse features such as bookmarks, comments, page layout."
-msgstr ""
+msgstr "Съдържа настройки за разнообразни възможности като показалци, коментари и оформление на страницата."
#. ZbwvD
#: ref_pdf_export_general.xhp
@@ -48309,7 +48291,7 @@ msgctxt ""
"hd_id8257087\n"
"help.text"
msgid "Export outlines"
-msgstr ""
+msgstr "Експортиране на план"
#. 72zLQ
#: ref_pdf_export_general.xhp
@@ -48318,7 +48300,7 @@ msgctxt ""
"par_id3479415\n"
"help.text"
msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<menuitem>Tools - Chapter Numbering</menuitem>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Указва експортиране на показалци от документи на Writer като показалци в PDF. Създават се показалци за всички абзаци от плана (<menuitem>Инструменти - Номерация на глави</menuitem>) и за всички записи от таблицата на съдържанието, на които сте приписали хипервръзки в документа източник.</ahelp>"
#. iTBMB
#: ref_pdf_export_general.xhp
@@ -48327,7 +48309,7 @@ msgctxt ""
"par_id71603283849925\n"
"help.text"
msgid "Only paragraphs with Outline level 1 - 10 will be exported. The name of the Paragraph Style is irrelevant. For example, the default version of Paragraph Style <emph>Title</emph> is not exported when its Outline level is <emph>Text Body</emph>. To see a paragraph’s Outline level, choose <menuitem>Format - Paragraph</menuitem> <emph> - Outline & Numbering</emph> tab."
-msgstr ""
+msgstr "Ще бъдат експортирани само абзаци с ниво 1 – 10 в плана. Името на абзацния стил няма значение. Например подразбираната версия на абзацния стил <emph>Заглавие на документ</emph> няма да се експортира, когато нивото ѝ в плана е <emph>Основен текст</emph>. За да видите нивото в плана на даден абзац, изберете <menuitem>Форматиране - Абзац</menuitem> <emph> - План и номерация</emph>."
#. PejFz
#: ref_pdf_export_general.xhp
@@ -48534,7 +48516,7 @@ msgctxt ""
"hd_id7464217\n"
"help.text"
msgid "Outlines and page"
-msgstr ""
+msgstr "План и страница"
#. 8e4Tz
#: ref_pdf_export_initial_view.xhp
@@ -48813,7 +48795,7 @@ msgctxt ""
"par_id9302346\n"
"help.text"
msgid "Specify how to export outlines and hyperlinks in your document."
-msgstr ""
+msgstr "Задайте настройките за експортиране на планове и хипервръзки в документа."
#. CDBGh
#: ref_pdf_export_links.xhp
@@ -48831,7 +48813,7 @@ msgctxt ""
"hd_id8296151\n"
"help.text"
msgid "Export outlines as named destinations"
-msgstr ""
+msgstr "Експортиране на план като наименувани местоназначения"
#. YmVwd
#: ref_pdf_export_links.xhp
@@ -49227,7 +49209,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Universal Accessibility (PDF Export)"
-msgstr ""
+msgstr "Универсална достъпност (експортиране на PDF)"
#. 9h83z
#: ref_pdf_export_universal_accessibility.xhp
@@ -49236,7 +49218,7 @@ msgctxt ""
"bm_id791603045631184\n"
"help.text"
msgid "<bookmark_value>PDF export;Universal Accessibility</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>PDF, експортиране;универсална достъпност</bookmark_value>"
#. EJegu
#: ref_pdf_export_universal_accessibility.xhp
@@ -49245,7 +49227,7 @@ msgctxt ""
"hd_id711602623643384\n"
"help.text"
msgid "<link href=\"text/shared/01/ref_pdf_export_universal_accessibility.xhp\">Universal Accessibility (PDF/UA)</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/ref_pdf_export_universal_accessibility.xhp\">Универсална достъпност (PDF/UA)</link>"
#. 5iM7L
#: ref_pdf_export_universal_accessibility.xhp
@@ -49254,7 +49236,7 @@ msgctxt ""
"par_id221602623934399\n"
"help.text"
msgid "Creates a universal accessibility-complaint PDF file that follows the requirements of PDF/UA (ISO 14289) specifications."
-msgstr ""
+msgstr "Създава PDF файл, отговарящ на изискванията на спецификацията PDF/UA (ISO 14289) за универсална достъпност."
#. 69kZa
#: ref_pdf_export_universal_accessibility.xhp
@@ -49263,7 +49245,7 @@ msgctxt ""
"par_id891603046173838\n"
"help.text"
msgid "then choose <emph>Universal Accessibility (PDF/UA)</emph>."
-msgstr ""
+msgstr "после изберете <emph>Универсална достъпност (PDF/UA)</emph>."
#. zBYd6
#: ref_pdf_export_universal_accessibility.xhp
@@ -49272,7 +49254,7 @@ msgctxt ""
"par_id151603044639549\n"
"help.text"
msgid "The specification defines the required structure and formatting of a document and PDF features that are better suited for accessibility. This specification can also be used to produce documents that achieve W3C's Web Content Accessibility Guidelines 2.0 (WCAG 2.0)."
-msgstr ""
+msgstr "Спецификацията дефинира изискваната структура и форматиране на документ и възможностите на PDF, които са по-подходящи от гледна точка на достъпността. Тази спецификация може да се използва и за генериране на документи, отговарящи на указанията на W3C за достъпност на уеб съдържание 2.0 (WCAG 2.0, Web Content Accessibility Guidelines 2.0)."
#. V8cE4
#: ref_pdf_export_universal_accessibility.xhp
@@ -49281,7 +49263,7 @@ msgctxt ""
"par_id701603046818148\n"
"help.text"
msgid "The present implementation (January 2020) checks the following:"
-msgstr ""
+msgstr "Текущата реализация (януари 2020 г.) проверява за следното:"
#. 2EEdB
#: ref_pdf_export_universal_accessibility.xhp
@@ -49290,7 +49272,7 @@ msgctxt ""
"par_id601603042936801\n"
"help.text"
msgid "Document title is set."
-msgstr ""
+msgstr "Зададено е заглавие на документа."
#. QsPya
#: ref_pdf_export_universal_accessibility.xhp
@@ -49299,7 +49281,7 @@ msgctxt ""
"par_id951603042978520\n"
"help.text"
msgid "Document language is set, or that all styles in use, have the language set."
-msgstr ""
+msgstr "Зададен е език на документа или всички използвани стилове имат зададен език."
#. oJPrg
#: ref_pdf_export_universal_accessibility.xhp
@@ -49308,7 +49290,7 @@ msgctxt ""
"par_id951603042984032\n"
"help.text"
msgid "All images, graphics, OLE objects have an \"alt\" text (or title in some objects)."
-msgstr ""
+msgstr "Всички изображения, графики, OLE обекти имат алтернативен (\"alt\") текст (или заглавие за някои обекти)."
#. LNFSf
#: ref_pdf_export_universal_accessibility.xhp
@@ -49317,7 +49299,7 @@ msgctxt ""
"par_id341603042991177\n"
"help.text"
msgid "Tables do not include splits or merges."
-msgstr ""
+msgstr "Таблиците не включват разделени или обединени клетки."
#. VQWFe
#: ref_pdf_export_universal_accessibility.xhp
@@ -49326,7 +49308,7 @@ msgctxt ""
"par_id481603043007920\n"
"help.text"
msgid "Only integrated numbering is used. No manual numbering (e.g., writing \"1.\" \"2.\" \"3.\" at the beginning of paragraphs)."
-msgstr ""
+msgstr "Използвано е само интегрирано номериране. Няма ръчно номериране (например изписване на „1.“, „2.“, „3.“ в началото на абзаците)."
#. ADFrw
#: ref_pdf_export_universal_accessibility.xhp
@@ -49335,7 +49317,7 @@ msgctxt ""
"par_id521603043012471\n"
"help.text"
msgid "Hyperlink text is not a hyperlink itself, and hyperlink is described."
-msgstr ""
+msgstr "Текстовете на хипервръзки не са хипервръзки сами по себе си и хипервръзките са описани."
#. CK2CF
#: ref_pdf_export_universal_accessibility.xhp
@@ -49344,7 +49326,7 @@ msgctxt ""
"par_id521603043019328\n"
"help.text"
msgid "Contrast between text and background meets the WCAG specification."
-msgstr ""
+msgstr "Контрастът между текста и фона отговаря на спецификацията WCAG."
#. SFkn5
#: ref_pdf_export_universal_accessibility.xhp
@@ -49353,7 +49335,7 @@ msgctxt ""
"par_id71603043022999\n"
"help.text"
msgid "No blinking text."
-msgstr ""
+msgstr "Няма мигащ текст."
#. NojG4
#: ref_pdf_export_universal_accessibility.xhp
@@ -49362,7 +49344,7 @@ msgctxt ""
"par_id251603043029601\n"
"help.text"
msgid "No footnotes and endnotes."
-msgstr ""
+msgstr "Няма бележки под линия и в края на текста."
#. EMMCG
#: ref_pdf_export_universal_accessibility.xhp
@@ -49371,7 +49353,7 @@ msgctxt ""
"par_id101603043034257\n"
"help.text"
msgid "Headings must increase incrementally with no skips (e.g., cannot have Heading 1 to Heading 3, skipping Heading 2)."
-msgstr ""
+msgstr "Нивата на заглавията трябва да се увеличават постепенно, без прескачане (например не може да се премине от „Заглавие 1“ към „Заглавие 3“, прескачайки „Заглавие 2“)."
#. vfTEE
#: ref_pdf_export_universal_accessibility.xhp
@@ -49380,7 +49362,7 @@ msgctxt ""
"par_id281603043041040\n"
"help.text"
msgid "Text does not convey additional meaning with (direct) formatting."
-msgstr ""
+msgstr "Текстът не изразява допълнително значение чрез (пряко) форматиране."
#. V7hAY
#: ref_pdf_export_universal_accessibility.xhp
@@ -49389,7 +49371,7 @@ msgctxt ""
"par_id311603047235460\n"
"help.text"
msgid "Check Accessibility before trying to export with <menuitem>Tools - Check Accessibility</menuitem>"
-msgstr ""
+msgstr "Проверете достъпността, преди да се опитате да експортирате, чрез <menuitem>Инструменти - Проверка за достъпност</menuitem>."
#. ihxeF
#: ref_pdf_export_user_interface.xhp
@@ -49605,7 +49587,7 @@ msgctxt ""
"hd_id9053926\n"
"help.text"
msgid "Collapse Outlines"
-msgstr ""
+msgstr "Свиване на плана"
#. cKYhi
#: ref_pdf_export_user_interface.xhp
@@ -49614,7 +49596,7 @@ msgctxt ""
"hd_id1941892\n"
"help.text"
msgid "Show All"
-msgstr ""
+msgstr "Показване на всичко"
#. m3Aft
#: ref_pdf_export_user_interface.xhp
@@ -49623,7 +49605,7 @@ msgctxt ""
"par_id341807\n"
"help.text"
msgid "<ahelp hid=\".\">Select to show all outline levels as bookmarks when the reader opens the PDF file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Изберете за показване на всички нива на плана, когато четецът отвори PDF файла.</ahelp>"
#. MtH4p
#: ref_pdf_export_user_interface.xhp
@@ -49632,7 +49614,7 @@ msgctxt ""
"hd_id486770\n"
"help.text"
msgid "Visible levels"
-msgstr ""
+msgstr "Видими нива"
#. r8MX6
#: ref_pdf_export_user_interface.xhp
@@ -49641,7 +49623,7 @@ msgctxt ""
"par_id4850001\n"
"help.text"
msgid "<ahelp hid=\".\">Select to show bookmarks down to the selected level when the reader opens the PDF file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Изберете за показване на показалците до избраното ниво, когато четецът отвори PDF файла.</ahelp>"
#. 5AeZF
#: ref_pdf_send_as.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/02.po b/source/bg/helpcontent2/source/text/shared/02.po
index 5a137548b9c..bd2518b3c04 100644
--- a/source/bg/helpcontent2/source/text/shared/02.po
+++ b/source/bg/helpcontent2/source/text/shared/02.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-05 10:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-21 15:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562357690.000000\n"
@@ -789,7 +789,7 @@ msgctxt ""
"par_id3148645\n"
"help.text"
msgid "Right-click the control and choose <menuitem>Control Properties</menuitem>. A dialog opens where you can define the properties of the control."
-msgstr ""
+msgstr "Щракнете с десния бутон върху контролата и изберете <menuitem>Свойства на контрола</menuitem>. Ще се отвори диалогов прозорец, в който можете да задавате свойствата на контролата."
#. WTQie
#: 01170000.xhp
@@ -11033,14 +11033,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr "<bookmark_value>абзаци; намаляване отстъпа на</bookmark_value><bookmark_value>намаляване отстъпа на абзац</bookmark_value>"
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Намаляване на отстъпа\">Намаляване на отстъпа</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr "<variable id=\"decreaseindent_h1\"><link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Намаляване на отстъпа</link></variable>"
#. DCXbA
#: 02130000.xhp
@@ -11060,14 +11060,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Ако преди това сте увеличили отстъпите на няколко едновременно избрани абзаца, тази команда може да намали отстъпите на всички избрани абзаци.</caseinline><caseinline select=\"CALC\">Съдържанието на клетката се подчинява на текущата стойност във <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Форматиране - Клетки - Подравняване</emph></link>.</caseinline></switchinline>"
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Икона</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Икона</alt></image>"
#. 9iqpg
#: 02130000.xhp
@@ -11105,14 +11105,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr "<bookmark_value>абзаци; увеличаване отстъпа на</bookmark_value><bookmark_value>увеличаване отстъпа на абзац</bookmark_value>"
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Увеличаване на отстъпа\">Увеличаване на отстъпа</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Увеличаване на индекса</link></variable>"
#. FBggx
#: 02140000.xhp
@@ -11132,14 +11132,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Ако са избрани няколко абзаца, ще се увеличат отстъпите на всички избрани абзаци.</caseinline><caseinline select=\"CALC\">Съдържанието на клетките се подчинява на текущата стойност, зададена във <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Форматиране - Клетки - Подравняване</emph></link>.</caseinline></switchinline>"
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Икона</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Икона</alt></image>"
#. bAyat
#: 02140000.xhp
@@ -16674,7 +16674,7 @@ msgctxt ""
"bm_id571605452705033\n"
"help.text"
msgid "<bookmark_value>cell widths; using ruler</bookmark_value><bookmark_value>cell widths; using mouse</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ширини на клетки; чрез скалата</bookmark_value><bookmark_value>ширини на клетки; чрез мишката</bookmark_value>"
#. EFuiR
#: 13020000.xhp
@@ -16728,7 +16728,7 @@ msgctxt ""
"par_id3156136\n"
"help.text"
msgid "<image id=\"img_id3153750\" src=\"media/helpimg/linleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153750\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153750\" src=\"media/helpimg/linleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153750\">Икона</alt></image>"
#. JJcBs
#: 13020000.xhp
@@ -16746,7 +16746,7 @@ msgctxt ""
"par_id3150774\n"
"help.text"
msgid "<image id=\"img_id3145071\" src=\"media/helpimg/linright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145071\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145071\" src=\"media/helpimg/linright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145071\">Икона</alt></image>"
#. Wr4CA
#: 13020000.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/guide.po b/source/bg/helpcontent2/source/text/shared/guide.po
index d9c1f40a4b1..0ecc3d14ec7 100644
--- a/source/bg/helpcontent2/source/text/shared/guide.po
+++ b/source/bg/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-05 10:35+0000\n"
+"PO-Revision-Date: 2020-11-17 16:43+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562356897.000000\n"
@@ -11922,7 +11922,7 @@ msgctxt ""
"par_id951604586347866\n"
"help.text"
msgid "<image src=\"cmd/32/pushbutton.png\" id=\"img_id741604586347866\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id641604586347866\">Push Button Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/32/pushbutton.png\" id=\"img_id741604586347866\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id641604586347866\">Икона за бутон</alt></image>"
#. 4GWCF
#: formfields.xhp
@@ -11958,7 +11958,7 @@ msgctxt ""
"par_idN107B2\n"
"help.text"
msgid "Right-click the button and choose <menuitem>Control Properties</menuitem>."
-msgstr ""
+msgstr "Щракнете с десния бутон върху бутона и изберете <menuitem>Свойства на контрола</menuitem>."
#. Atf22
#: formfields.xhp
@@ -12012,7 +12012,7 @@ msgctxt ""
"par_idN10828\n"
"help.text"
msgid "Right-click the button and choose <menuitem>Form Properties</menuitem>."
-msgstr ""
+msgstr "Щракнете с десния бутон върху бутона и изберете <menuitem>Свойства на формуляр</menuitem>."
#. kGATC
#: formfields.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/optionen.po b/source/bg/helpcontent2/source/text/shared/optionen.po
index 897a1e859f8..fa0185c0b6c 100644
--- a/source/bg/helpcontent2/source/text/shared/optionen.po
+++ b/source/bg/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-10-30 22:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-21 15:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562351576.000000\n"
@@ -9150,7 +9150,7 @@ msgctxt ""
"par_id3151114\n"
"help.text"
msgid "<ahelp hid=\".\">Click a color. Click the <emph>None</emph> button to remove a background color.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Щракнете върху цвят. Щракнете върху бутона <emph>Няма</emph>, за да премахнете фоновия цвят.</ahelp>"
#. YvDPU
#: 01060000.xhp
@@ -11861,32 +11861,32 @@ msgctxt ""
msgid "Snap"
msgstr "Прилепване"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
+msgid "To snap guides"
msgstr "Към помощните линии"
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr "<variable id=\"anlinie\"><ahelp hid=\".\">Прилепва ръба на плъзган обект към най-близката линия за прилепване, когато отпуснете бутона на мишката.</ahelp></variable>"
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "Можете да зададете тази настройка и чрез иконата <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Прилепване към помощните линии\"><emph>Прилепване към помощните линии</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Прилепване към помощните линии\"><emph>Прилепване към помощните линии</emph></link></caseinline><defaultinline><emph>Прилепване към помощните линии</emph></defaultinline></switchinline> от лентата <emph>Настройки</emph> в презентация или рисунка."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr "Можете да зададете тази настройка и чрез иконата <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Прилепване към помощните линии</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Прилепване към помощните линии</emph></link></caseinline><defaultinline><emph>Прилепване към помощните линии</emph></defaultinline></switchinline> от лентата <emph>Настройки</emph> в презентация или рисунка."
#. eUCCJ
#: 01070300.xhp
diff --git a/source/bg/helpcontent2/source/text/simpress/02.po b/source/bg/helpcontent2/source/text/simpress/02.po
index 9ada927451f..ae036c1c2b0 100644
--- a/source/bg/helpcontent2/source/text/simpress/02.po
+++ b/source/bg/helpcontent2/source/text/simpress/02.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
-"PO-Revision-Date: 2020-02-01 14:31+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-21 15:35+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress02/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1557754620.000000\n"
#. AiACn
@@ -5695,40 +5695,40 @@ msgctxt ""
msgid "Exit all groups"
msgstr "Изход от всички групи"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr "Прилепване към помощните линии"
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Прилепване към помощните линии\">Прилепване към помощните линии</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Прилепване към помощните линии</link>"
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Икона</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Икона</alt></image>"
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr "Прилепване към помощните линии"
#. oXWsX
diff --git a/source/bg/helpcontent2/source/text/swriter.po b/source/bg/helpcontent2/source/text/swriter.po
index 690f06e5e60..671e18f9fb8 100644
--- a/source/bg/helpcontent2/source/text/swriter.po
+++ b/source/bg/helpcontent2/source/text/swriter.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
-"PO-Revision-Date: 2020-11-10 20:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-21 15:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/bg/>\n"
"Language: bg\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "От ляво надясно"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">икона „от ляво надясно“</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">Икона „от ляво надясно“</alt></image>"
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "От дясно наляво"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">икона „от дясно наляво“</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">Икона „от дясно наляво“</alt></image>"
#. TMwGp
#: main0202.xhp
diff --git a/source/bg/helpcontent2/source/text/swriter/00.po b/source/bg/helpcontent2/source/text/swriter/00.po
index a8c87ec935e..eb67926fcd8 100644
--- a/source/bg/helpcontent2/source/text/swriter/00.po
+++ b/source/bg/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-10-30 22:35+0000\n"
+"PO-Revision-Date: 2020-11-19 19:35+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter00/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1547853218.000000\n"
#. E9tti
@@ -824,7 +824,7 @@ msgctxt ""
"par_id3154197\n"
"help.text"
msgid "<variable id=\"sectionindents\">Choose <menuitem>Insert > Section > Indents</menuitem> tab or choose <menuitem>Format > Sections</menuitem> - <widget>Options</widget> button - <emph>Indents</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"sectionindents\">Изберете раздела <menuitem>Вмъкване > Раздел > Отстъпи</menuitem> или изберете <menuitem>Форматиране > Раздели</menuitem> - бутон <widget>Настройки</widget> - раздел <emph>Отстъпи</emph>.</variable>"
#. oCG8Q
#: 00000404.xhp
@@ -1616,7 +1616,7 @@ msgctxt ""
"par_id3149298\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> - <emph>Page Styles</emph> - open context menu for selected page style - <menuitem>Modify/New - Columns</menuitem> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> - <emph>Стилове за страници</emph> - отворете контекстното меню за избрания стил за страници - раздел <menuitem>Промяна/Нов - Колони</menuitem>."
#. 9sMo7
#: 00000405.xhp
@@ -1643,7 +1643,7 @@ msgctxt ""
"par_id3143276\n"
"help.text"
msgid "Choose <menuitem>Insert - Section - Columns</menuitem> tab."
-msgstr ""
+msgstr "Изберете раздела <menuitem>Вмъкване - Раздел - Колони</menuitem>."
#. ZCfVD
#: 00000405.xhp
@@ -1652,7 +1652,7 @@ msgctxt ""
"par_id461604680991423\n"
"help.text"
msgid "Choose <menuitem>Format - Section - </menuitem><widget>Options</widget> button - <menuitem>Columns</menuitem> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Форматиране - Раздел - </menuitem> бутон <widget>Настройки</widget> - раздел <menuitem>Колони</menuitem>."
#. Gdf8J
#: 00000405.xhp
diff --git a/source/bg/helpcontent2/source/text/swriter/01.po b/source/bg/helpcontent2/source/text/swriter/01.po
index eab4f9b93c8..8fa94efed63 100644
--- a/source/bg/helpcontent2/source/text/swriter/01.po
+++ b/source/bg/helpcontent2/source/text/swriter/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-05 10:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-21 15:35+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562351067.000000\n"
@@ -683,14 +683,14 @@ msgctxt ""
msgid "Navigator"
msgstr "Навигатор"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
-msgstr ""
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
+msgstr "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Навигатор</link></variable>"
#. uXgCi
#: 02110000.xhp
@@ -710,14 +710,14 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr "За да отворите Навигатора, изберете <menuitem>Изглед - Навигатор</menuitem> (<keycode>F5</keycode>). За да преместите прозореца на Навигатора, плъзнете заглавната му лента. За да закачите Навигатора, плъзнете го до левия, десния или долния край на работната площ. За да откачите Навигатора, задръжте клавиша <keycode>Ctrl</keycode> и щракнете двукратно върху празно място в него."
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
-msgstr "Щракнете върху символа плюс (<keycode>+</keycode>) пред дадена категория в Навигатора, за да се покажат елементите в категорията. За да видите броя на елементите в дадена категория, поставете показалеца на мишката върху името на категорията в Навигатора. За да преминете към даден елемент, щракнете двукратно върху името на елемента в Навигатора."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgstr "Щракнете върху символа плюс (<widget>+</widget>) (или стрелката) пред дадена категория в Навигатора, за да се покажат елементите в категорията. За да видите броя на елементите в дадена категория, поставете показалеца на мишката върху името на категорията в Навигатора. За да преминете към даден елемент, щракнете двукратно върху името на елемента в Навигатора."
#. WD2Zz
#: 02110000.xhp
@@ -726,7 +726,7 @@ msgctxt ""
"par_id3149106\n"
"help.text"
msgid "To jump to the next or previous item in a document, use the <emph>Navigate by</emph> box to select the item category, and then click the up or down arrows."
-msgstr ""
+msgstr "За да отидете на предишен или следващ елемент в документ, използвайте полето <emph>Навигация по</emph>, за да изберете категорията на елемента, после щракайте върху стрелките нагоре или надолу."
#. 87cKG
#: 02110000.xhp
@@ -764,14 +764,14 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Преминаване към предишния елемент в документа. За да зададете типа на елемента, щракнете върху иконата <emph>Навигация</emph>, а после – върху категория, например „Изображения“.</ahelp> Преминаване към предишния елемент в документа, както е зададено в <emph>Навигация по</emph>."
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
-msgstr "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Икона за предишен обект</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgstr "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Икона за предишен обект</alt></image>"
#. z3HC5
#: 02110000.xhp
@@ -800,14 +800,14 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Преминаване към следващия елемент в документа. За да зададете типа на елемента, щракнете върху иконата <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Навигация</emph></link>, а после – върху категория, например „Изображения“.</ahelp> Преминаване към следващия елемент в документа, както е зададено в <emph>Навигация по</emph>."
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
-msgstr "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Икона за следващ обект</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgstr "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Икона за следващ обект</alt></image>"
#. xyGWM
#: 02110000.xhp
@@ -888,7 +888,7 @@ msgctxt ""
"par_id531603287134620\n"
"help.text"
msgid "Icon"
-msgstr ""
+msgstr "Икона"
#. FpEuq
#: 02110000.xhp
@@ -897,7 +897,7 @@ msgctxt ""
"par_id911603287134620\n"
"help.text"
msgid "Category"
-msgstr ""
+msgstr "Категория"
#. Ja23j
#: 02110000.xhp
@@ -906,16 +906,16 @@ msgctxt ""
"par_id31603287134620\n"
"help.text"
msgid "Context Menu"
-msgstr ""
+msgstr "Контекстно меню"
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
-msgstr ""
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgstr "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Икона за заглавия</alt></image>"
#. KF8gH
#: 02110000.xhp
@@ -924,16 +924,16 @@ msgctxt ""
"par_id581603287134620\n"
"help.text"
msgid "Headings"
-msgstr ""
+msgstr "Заглавия"
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
-msgstr ""
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgstr "Свиване/Разгъване на всички, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Изпращане на плана към клипборда</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Видимост на съдържанието в плана</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Проследяване в плана</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Ниво в плана</link>"
#. uH7Av
#: 02110000.xhp
@@ -942,16 +942,16 @@ msgctxt ""
"par_id151603291732283\n"
"help.text"
msgid "Heading item"
-msgstr ""
+msgstr "Елементи заглавия"
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
-msgstr ""
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgstr "Свиване/Разгъване на всички, Преход, Избиране, Изтриване, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Повишаване на глава</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Понижаване на глава</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Повишаване на ниво</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Понижаване на ниво</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Видимост на съдържанието в плана</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Проследяване в плана</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Ниво в плана</link>"
#. bdbZB
#: 02110000.xhp
@@ -960,7 +960,7 @@ msgctxt ""
"par_id721603287623090\n"
"help.text"
msgid "<image src=\"cmd/sc_inserttable.svg\" id=\"img_id301603287623090\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861603287623090\">Tables Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_inserttable.svg\" id=\"img_id301603287623090\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861603287623090\">Икона за таблици</alt></image>"
#. jAnQW
#: 02110000.xhp
@@ -969,7 +969,7 @@ msgctxt ""
"par_id611603290378376\n"
"help.text"
msgid "Tables"
-msgstr ""
+msgstr "Таблици"
#. hiFCt
#: 02110000.xhp
@@ -978,7 +978,7 @@ msgctxt ""
"par_id531603530756147\n"
"help.text"
msgid "Table items"
-msgstr ""
+msgstr "Елементи таблици"
#. Kj4pw
#: 02110000.xhp
@@ -987,7 +987,7 @@ msgctxt ""
"par_id291603290382271\n"
"help.text"
msgid "Go to, Select, Edit, Delete, Rename"
-msgstr ""
+msgstr "Преход, Избиране, Редактиране, Изтриване, Преименуване"
#. raARd
#: 02110000.xhp
@@ -996,7 +996,7 @@ msgctxt ""
"par_id771603291076318\n"
"help.text"
msgid "<image src=\"cmd/sc_insertframe.svg\" id=\"img_id861603291076318\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861603291076318\">Frames icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertframe.svg\" id=\"img_id861603291076318\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861603291076318\">Икона за рамки</alt></image>"
#. HakR3
#: 02110000.xhp
@@ -1005,7 +1005,7 @@ msgctxt ""
"par_id191603290368002\n"
"help.text"
msgid "Frames"
-msgstr ""
+msgstr "Рамки"
#. qDEB2
#: 02110000.xhp
@@ -1014,7 +1014,7 @@ msgctxt ""
"par_id801603532799021\n"
"help.text"
msgid "<image src=\"cmd/sc_imagebutton.svg\" id=\"img_id1001603532799021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Images Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_imagebutton.svg\" id=\"img_id1001603532799021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Икона за изображения</alt></image>"
#. 4Zuo5
#: 02110000.xhp
@@ -1023,7 +1023,7 @@ msgctxt ""
"par_id581603532733359\n"
"help.text"
msgid "Images"
-msgstr ""
+msgstr "Изображения"
#. s8NFi
#: 02110000.xhp
@@ -1032,7 +1032,7 @@ msgctxt ""
"par_id8016035394621021\n"
"help.text"
msgid "<image src=\"cmd/sc_insertobject.svg\" id=\"img_id1001603543299021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">OLE Objects Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertobject.svg\" id=\"img_id1001603543299021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Икона за OLE обекти</alt></image>"
#. DF7be
#: 02110000.xhp
@@ -1041,7 +1041,7 @@ msgctxt ""
"par_id581603532723769\n"
"help.text"
msgid "OLE Objects"
-msgstr ""
+msgstr "OLE обекти"
#. gY9hD
#: 02110000.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"par_id801636822799021\n"
"help.text"
msgid "<image src=\"cmd/sc_insertbookmark.svg\" id=\"img_id1001660982799021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Bookmarks Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertbookmark.svg\" id=\"img_id1001660982799021\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171603532799021\">Икона за показалци</alt></image>"
#. FABsh
#: 02110000.xhp
@@ -1059,7 +1059,7 @@ msgctxt ""
"par_id581603532733956\n"
"help.text"
msgid "Bookmarks"
-msgstr ""
+msgstr "Показалци"
#. Vk58Q
#: 02110000.xhp
@@ -1068,7 +1068,7 @@ msgctxt ""
"par_id411603531074035\n"
"help.text"
msgid "Frame, Image, OLE Objects, Bookmark items"
-msgstr ""
+msgstr "Рамка, Изображение, OLE обекти, Елементи показалци"
#. ZqgVB
#: 02110000.xhp
@@ -1077,7 +1077,7 @@ msgctxt ""
"par_id611603290373033\n"
"help.text"
msgid "Go to, Edit, Delete, Rename"
-msgstr ""
+msgstr "Преход, Редактиране, Изтриване, Преименуване"
#. wRDwv
#: 02110000.xhp
@@ -1086,7 +1086,7 @@ msgctxt ""
"par_id741603570764762\n"
"help.text"
msgid "<image src=\"cmd/sc_insertsection.svg\" id=\"img_id641603570764762\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821603570764762\">Sections Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertsection.svg\" id=\"img_id641603570764762\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821603570764762\">Икона за раздели</alt></image>"
#. SLmBP
#: 02110000.xhp
@@ -1095,7 +1095,7 @@ msgctxt ""
"par_id621603570764762\n"
"help.text"
msgid "Sections"
-msgstr ""
+msgstr "Раздели"
#. EQFyT
#: 02110000.xhp
@@ -1104,7 +1104,7 @@ msgctxt ""
"par_id111603570764762\n"
"help.text"
msgid "Section items"
-msgstr ""
+msgstr "Елементи раздели"
#. ZFCBK
#: 02110000.xhp
@@ -1113,7 +1113,7 @@ msgctxt ""
"par_id291694280382271\n"
"help.text"
msgid "Go to, Select, Edit, Rename"
-msgstr ""
+msgstr "Преход, Избиране, Редактиране, Преименуване"
#. RTDr9
#: 02110000.xhp
@@ -1122,7 +1122,7 @@ msgctxt ""
"par_id461603570542532\n"
"help.text"
msgid "<image src=\"cmd/sc_inserthyperlink.svg\" id=\"img_id721603570542532\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id911603570542532\">Hyperlinks Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_inserthyperlink.svg\" id=\"img_id721603570542532\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id911603570542532\">Икона за хипервръзки</alt></image>"
#. yve5A
#: 02110000.xhp
@@ -1131,7 +1131,7 @@ msgctxt ""
"par_id801603570516284\n"
"help.text"
msgid "Hyperlinks"
-msgstr ""
+msgstr "Хипервръзки"
#. YCGxB
#: 02110000.xhp
@@ -1140,7 +1140,7 @@ msgctxt ""
"par_id81603570505590\n"
"help.text"
msgid "Hyperlink items"
-msgstr ""
+msgstr "Елементи хипервръзки"
#. RT7Pi
#: 02110000.xhp
@@ -1149,7 +1149,7 @@ msgctxt ""
"par_id961603570483539\n"
"help.text"
msgid "Go to, Edit, Delete, Rename"
-msgstr ""
+msgstr "Преход, Редактиране, Изтриване, Преименуване"
#. MmCsC
#: 02110000.xhp
@@ -1158,7 +1158,7 @@ msgctxt ""
"par_id901603571492300\n"
"help.text"
msgid "<image src=\"cmd/sc_insertreferencefield.svg\" id=\"img_id771603571492300\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id271603571492300\">References Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertreferencefield.svg\" id=\"img_id771603571492300\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id271603571492300\">Икона за препратки</alt></image>"
#. iDyLx
#: 02110000.xhp
@@ -1167,7 +1167,7 @@ msgctxt ""
"par_id91603571492300\n"
"help.text"
msgid "References"
-msgstr ""
+msgstr "Препратки"
#. AdAzM
#: 02110000.xhp
@@ -1176,7 +1176,7 @@ msgctxt ""
"par_id121603573019324\n"
"help.text"
msgid "<image src=\"cmd/sc_insertindexesentry.svg\" id=\"img_id901603573019324\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id341603573019324\">Indexes Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertindexesentry.svg\" id=\"img_id901603573019324\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id341603573019324\">Икона за указатели</alt></image>"
#. DJW2V
#: 02110000.xhp
@@ -1185,7 +1185,7 @@ msgctxt ""
"par_id591603573019324\n"
"help.text"
msgid "Indexes"
-msgstr ""
+msgstr "Указатели"
#. SpEBB
#: 02110000.xhp
@@ -1194,7 +1194,7 @@ msgctxt ""
"par_id911603571492300\n"
"help.text"
msgid "References, Indexes items"
-msgstr ""
+msgstr "Препратки, Елементи указатели"
#. JJh5o
#: 02110000.xhp
@@ -1203,7 +1203,7 @@ msgctxt ""
"par_id29160996782271\n"
"help.text"
msgid "Go to"
-msgstr ""
+msgstr "Преход"
#. DY5cm
#: 02110000.xhp
@@ -1212,7 +1212,7 @@ msgctxt ""
"par_id741603572161942\n"
"help.text"
msgid "<image src=\"cmd/lc_shownote.svg\" id=\"img_id521603572161942\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id521603572161942\">Comments Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_shownote.svg\" id=\"img_id521603572161942\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id521603572161942\">Икона за коментари</alt></image>"
#. BRGDd
#: 02110000.xhp
@@ -1221,7 +1221,7 @@ msgctxt ""
"par_id41603572161942\n"
"help.text"
msgid "Comments"
-msgstr ""
+msgstr "Коментари"
#. XJRCd
#: 02110000.xhp
@@ -1230,7 +1230,7 @@ msgctxt ""
"par_id711603572473016\n"
"help.text"
msgid "Show All, Hide All, Delete All"
-msgstr ""
+msgstr "Показване на всички, Скриване на всички, Изтриване на всички"
#. WMdde
#: 02110000.xhp
@@ -1239,7 +1239,7 @@ msgctxt ""
"par_id751603572161943\n"
"help.text"
msgid "Comments items"
-msgstr ""
+msgstr "Елементи коментари"
#. VzhmF
#: 02110000.xhp
@@ -1248,7 +1248,7 @@ msgctxt ""
"par_id291604453382271\n"
"help.text"
msgid "Go to, Edit, Delete"
-msgstr ""
+msgstr "Преход, Редактиране, Изтриване"
#. E5dpv
#: 02110000.xhp
@@ -1257,7 +1257,7 @@ msgctxt ""
"par_id951603571856944\n"
"help.text"
msgid "<image src=\"cmd/sc_insertdraw.png\" id=\"img_id221603571856944\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id751603571856944\">Drawing objects Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertdraw.png\" id=\"img_id221603571856944\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id751603571856944\">Икона за графични обекти</alt></image>"
#. apAFN
#: 02110000.xhp
@@ -1266,7 +1266,7 @@ msgctxt ""
"par_id351603571856944\n"
"help.text"
msgid "Drawing objects"
-msgstr ""
+msgstr "Графични обекти"
#. PnfNJ
#: 02110000.xhp
@@ -1275,7 +1275,7 @@ msgctxt ""
"par_id461603571856945\n"
"help.text"
msgid "Drawing objects items"
-msgstr ""
+msgstr "Елементи графични обекти"
#. DDAda
#: 02110000.xhp
@@ -1284,7 +1284,7 @@ msgctxt ""
"par_id291603347382271\n"
"help.text"
msgid "Go to, Delete, Rename"
-msgstr ""
+msgstr "Преход, Изтриване, Преименуване"
#. vGwzZ
#: 02110000.xhp
@@ -1293,7 +1293,7 @@ msgctxt ""
"par_id781603291428300\n"
"help.text"
msgid "All"
-msgstr ""
+msgstr "Всички"
#. AChDj
#: 02110000.xhp
@@ -1302,7 +1302,7 @@ msgctxt ""
"par_id711603291482148\n"
"help.text"
msgid "<link href=\"text/swriter/01/02110000.xhp#dragmode\" name=\"Drag Mode\">Drag Mode</link>, <link href=\"text/swriter/01/02110000.xhp#display\" name=\"display\">Display</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/02110000.xhp#dragmode\" name=\"Drag Mode\">Режим при плъзгане</link>, <link href=\"text/swriter/01/02110000.xhp#display\" name=\"display\">Показване</link>"
#. SMFgG
#: 02110000.xhp
@@ -1509,7 +1509,7 @@ msgctxt ""
"hd_id3150507\n"
"help.text"
msgid "<variable id=\"outlinelvl\">Outline Level</variable>"
-msgstr ""
+msgstr "<variable id=\"outlinelvl\">Ниво в плана</variable>"
#. rjaS7
#: 02110000.xhp
@@ -1599,7 +1599,7 @@ msgctxt ""
"hd_id3151338\n"
"help.text"
msgid "<variable id=\"promotelevel\">Promote Level</variable>"
-msgstr ""
+msgstr "<variable id=\"promotelevel\">Повишаване на ниво</variable>"
#. KzmQ5
#: 02110000.xhp
@@ -1635,7 +1635,7 @@ msgctxt ""
"hd_id3153714\n"
"help.text"
msgid "<variable id=\"demotelevel\">Demote Level</variable>"
-msgstr ""
+msgstr "<variable id=\"demotelevel\">Понижаване на ниво</variable>"
#. LKaFU
#: 02110000.xhp
@@ -1671,7 +1671,7 @@ msgctxt ""
"hd_id3145571\n"
"help.text"
msgid "<variable id=\"promotechap\">Promote Chapter</variable>"
-msgstr ""
+msgstr "<variable id=\"promotechap\">Повишаване на глава</variable>"
#. CXMjY
#: 02110000.xhp
@@ -1707,7 +1707,7 @@ msgctxt ""
"hd_id3154424\n"
"help.text"
msgid "<variable id=\"demotechap\">Demote Chapter</variable>"
-msgstr ""
+msgstr "<variable id=\"demotechap\">Понижаване на глава</variable>"
#. GFDsR
#: 02110000.xhp
@@ -1752,7 +1752,7 @@ msgctxt ""
"hd_id3154292\n"
"help.text"
msgid "<variable id=\"dragmode\">Drag Mode</variable>"
-msgstr ""
+msgstr "<variable id=\"dragmode\">Режим при плъзгане</variable>"
#. G5FvJ
#: 02110000.xhp
@@ -1842,7 +1842,7 @@ msgctxt ""
"hd_id3147340\n"
"help.text"
msgid "<variable id=\"display\">Open Documents</variable>"
-msgstr ""
+msgstr "<variable id=\"display\">Отворени документи</variable>"
#. rZmAa
#: 02110000.xhp
@@ -1869,7 +1869,7 @@ msgctxt ""
"hd_id541603882412689\n"
"help.text"
msgid "<variable id=\"outlinetracking\">Outline Tracking</variable>"
-msgstr ""
+msgstr "<variable id=\"outlinetracking\">Проследяване в плана</variable>"
#. nrCtR
#: 02110000.xhp
@@ -1878,7 +1878,7 @@ msgctxt ""
"par_id501603882441409\n"
"help.text"
msgid "Set Navigator’s mode of outline tracking. This feature applies only to outline entries under <menuitem>Headings</menuitem> in the Content View frame of Navigator. To see, enable, or change the mode, right-click on <menuitem>Headings</menuitem> or an item under Headings and choose <menuitem>Outline Tracking</menuitem>. The selected mode is applied to the entire document."
-msgstr ""
+msgstr "Задава режима на Навигатора за проследяване в плана. Тази функционалност важи само за елементите от плана в списъка <menuitem>Заглавия</menuitem> в рамката „Изглед на съдържанието“ в Навигатора. За да видите, включите или промените режима, щракнете с десния бутон върху <menuitem>Заглавия</menuitem> или върху елемент заглавие и изберете <menuitem>Проследяване в плана</menuitem>. Избраният режим се прилага върху целия документ."
#. XxJB2
#: 02110000.xhp
@@ -1887,7 +1887,7 @@ msgctxt ""
"par_id161603966072360\n"
"help.text"
msgid "In <menuitem>Default</menuitem> and <menuitem>Focus</menuitem> mode, Navigator will automatically select the nearest heading before the current cursor position in the document."
-msgstr ""
+msgstr "В режимите <menuitem>По подразбиране</menuitem> и <menuitem>Фокус</menuitem> Навигаторът автоматично ще избира най-близкото заглавие преди текущата позиция на курсора в документа."
#. 85sNR
#: 02110000.xhp
@@ -1896,7 +1896,7 @@ msgctxt ""
"par_id571603887044019\n"
"help.text"
msgid "In <menuitem>Default</menuitem> mode, the display of outline entries in Navigator is never changed, only an outline entry is selected."
-msgstr ""
+msgstr "В режим <menuitem>По подразбиране</menuitem> визуализацията на елементите от плана в Навигатора никога не се променя, само се избира елемент от плана."
#. GoL6Y
#: 02110000.xhp
@@ -1905,7 +1905,7 @@ msgctxt ""
"par_id201603965501777\n"
"help.text"
msgid "In <menuitem>Focus</menuitem> mode, Navigator shows only the headings for the selected outline level, relative to the next higher outline level. For example, if a level 2 heading is selected, then all level 2 headings under the same level 1 heading are shown, while any level 3-10 headings (under the same level 1 heading) are collapsed. Other headings, not under the same level 1 heading, are also collapsed."
-msgstr ""
+msgstr "В режим <menuitem>Фокус</menuitem> Навигаторът показва само заглавията за избраното ниво от плана, свързани със следващото по-високо ниво в плана. Например, ако е избрано заглавие от ниво 2, ще се показват всички заглавия от ниво 2 под същото заглавие от ниво 1, а всички заглавия от нива 3 – 10 (под същото заглавие от ниво 1) ще бъдат свити. Другите заглавия, които не са под същото заглавие от ниво 1, също ще бъдат свити."
#. aehES
#: 02110000.xhp
@@ -1914,7 +1914,7 @@ msgctxt ""
"par_id81603965538425\n"
"help.text"
msgid "Choose <menuitem>Off</menuitem> to disable Outline Tracking."
-msgstr ""
+msgstr "Изберете <menuitem>Изключено</menuitem>, за да изключите функцията „Проследяване в плана“."
#. zV9BS
#: 02110000.xhp
@@ -1923,7 +1923,7 @@ msgctxt ""
"par_id1001603575103843\n"
"help.text"
msgid "<link href=\"text/swriter/guide/arrange_chapters.xhp\" name=\"chapnavigation\">Using Navigator to Arrange Headings</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/guide/arrange_chapters.xhp\" name=\"chapnavigation\">Пренареждане на заглавия с Навигатора</link>"
#. QGQEs
#: 02110100.xhp
@@ -5082,7 +5082,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Indents (Sections)"
-msgstr ""
+msgstr "Отстъпи (раздели)"
#. ZHUTB
#: 04020200.xhp
@@ -6954,7 +6954,7 @@ msgctxt ""
"par_id3155537\n"
"help.text"
msgid "To quickly insert a field from the <emph>Select</emph> list, double-click the field."
-msgstr ""
+msgstr "За да вмъкнете бързо поле от списъка <emph>Избор</emph>, щракнете двукратно върху полето."
#. zVKLG
#: 04090001.xhp
@@ -6981,7 +6981,7 @@ msgctxt ""
"par_id3150138\n"
"help.text"
msgid "<variable id=\"datetimeformat\">When you click \"Additional formats\", the <link href=\"text/shared/01/05020300.xhp\" name=\"Number Format\"><emph>Number Format</emph></link> dialog opens, where you can define a custom format. </variable>"
-msgstr ""
+msgstr "<variable id=\"datetimeformat\">Когато изберете „Допълнителни формати“, се отваря диалоговият прозорец <link href=\"text/shared/01/05020300.xhp\" name=\"Number Format\"><emph>Числов формат</emph></link>, където можете да дефинирате формат по избор. </variable>"
#. ECQSr
#: 04090001.xhp
@@ -6990,7 +6990,7 @@ msgctxt ""
"par_id3154867\n"
"help.text"
msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><menuitem>Tools - Chapter numbering</menuitem></link> are not displayed."
-msgstr ""
+msgstr "Ако изберете „Номер на глава без разделител“ за полето за глава, няма да се показват разделителите за номер на глава, зададени в <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><menuitem>Инструменти - Номерация на глави</menuitem></link>."
#. EfteG
#: 04090001.xhp
@@ -6999,7 +6999,7 @@ msgctxt ""
"par_id3156079\n"
"help.text"
msgid "If you choose \"chapter number\" as the <emph>format</emph> for reference fields, only the number of the chapter heading containing the referenced object is displayed in the field. If the paragraph style for the chapter heading is not numbered, the field is left blank."
-msgstr "Ако изберете \"номер на глава\" като <emph>форматиране</emph> за свързано поле, в полето ще се показва само номера на главата съдържаща свързания обект. Ако стилът на абзац за заглавието на главата не е номериран, полето ще остане празно."
+msgstr "Ако изберете „номер на глава“ като <emph>формат</emph> за поле от тип препратка, в полето ще се показва само номерът на главата, съдържаща сочения от препратката обект. Ако стилът на абзац за заглавието на главата не е номериран, полето ще остане празно."
#. xDYYF
#: 04090001.xhp
@@ -7035,7 +7035,7 @@ msgctxt ""
"par_id3154580\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/level\">Enter outline level of the chapter to be displayed. The inserted field will display the value taken from last paragraph with the specified outline level placed before the inserted field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/level\">Въведете нивото в плана на главата, която да се покаже. Вмъкнатото поле ще показва стойността, взета от последния абзац със зададеното ниво, разположен преди полето.</ahelp>"
#. GtaP3
#: 04090001.xhp
@@ -7071,7 +7071,7 @@ msgctxt ""
"par_id3154948\n"
"help.text"
msgid "If you want to change the actual page number and not the displayed number, do not use the <emph>Offset</emph> value. To change page numbers, read the <link href=\"text/swriter/guide/pagenumbers.xhp\" name=\"Page Numbers\"><emph>Page Numbers</emph></link> guide."
-msgstr "Ако искате да промените действителния номер на страница не се показвания номер, не използвайте стойността <emph>Отместване</emph>. За да промените номера на страницата прочете ръководството <link href=\"text/swriter/guide/pagenumbers.xhp\" name=\"Номера на страници\"><emph>Номера на страници</emph></link>"
+msgstr "Ако искате да промените действителния номер на страница, а не показвания номер, не използвайте стойността <emph>Отместване</emph>. За да промените номера на страницата, прочете ръководството <link href=\"text/swriter/guide/pagenumbers.xhp\" name=\"Page Numbers\"><emph>Номера на страници</emph></link>"
#. FzJ8M
#: 04090001.xhp
@@ -7089,7 +7089,7 @@ msgctxt ""
"par_id3154899\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/offset\">Enter the offset that you want to apply to a date or time field.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/offset\">Въведете отместването което искате да приложите за поле за дата или време.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/offset\">Въведете отместването, което искате да приложите върху поле за дата или час.</ahelp>"
#. 5EfAy
#: 04090002.xhp
@@ -7107,7 +7107,7 @@ msgctxt ""
"hd_id3153641\n"
"help.text"
msgid "<link href=\"text/swriter/01/04090002.xhp\" name=\"Cross-references\">Cross-reference</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04090002.xhp\" name=\"Препратки\">Препратка</link>"
#. 58E48
#: 04090002.xhp
@@ -7116,7 +7116,7 @@ msgctxt ""
"par_id3155142\n"
"help.text"
msgid "<variable id=\"reftext\"><ahelp hid=\".\">This is where you insert the references or referenced fields into the current document. References are referenced fields within the same document or within sub-documents of a master document.</ahelp></variable>"
-msgstr "<variable id=\"reftext\"><ahelp hid=\".\">От тук се вмъкват обръщения или полета за обръщения в текущия документ. Обръщенията са полета за обръщения в същия документ или във под документи на главния документ.</ahelp></variable>"
+msgstr "<variable id=\"reftext\"><ahelp hid=\".\">От тук се вмъкват препратки или полета с местоназначения за препратки в текущия документ. Препратките са полета местоназначения в същия документ или в поддокументи на главен документ.</ahelp></variable>"
#. 4BgfB
#: 04090002.xhp
@@ -7665,7 +7665,7 @@ msgctxt ""
"hd_id3154922\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "Стойност"
#. DCA8i
#: 04090002.xhp
@@ -7674,7 +7674,7 @@ msgctxt ""
"par_id3153049\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/offset\">Enter the contents that you want to add to a user-defined field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/offset\">Въведете съдържанието, което искате да добавите в потребителското поле.</ahelp>"
#. zRBwU
#: 04090002.xhp
@@ -8349,7 +8349,7 @@ msgctxt ""
"par_id3149692\n"
"help.text"
msgid "<ahelp hid=\".\">DocInformation fields contain information about the properties of a document, such as the date a document was created. To view the properties of a document, choose <menuitem>File - Properties</menuitem>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Полетата „Информация за документа“ съдържат информация за свойствата на документа, например датата на създаване. За за прегледате свойствата на документа, изберете <menuitem>Файл - Свойства</menuitem>.</ahelp>"
#. uXwon
#: 04090004.xhp
@@ -8403,7 +8403,7 @@ msgctxt ""
"par_id3147490\n"
"help.text"
msgid "Inserts the comments as entered in the <emph>Description</emph> tab page of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><menuitem>File - Properties</menuitem></link> dialog."
-msgstr ""
+msgstr "Вмъква коментарите, както са въведени в раздела <emph>Описание</emph> на диалоговия прозорец <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><menuitem>Файл - Свойства</menuitem></link>."
#. fZJ33
#: 04090004.xhp
@@ -8439,7 +8439,7 @@ msgctxt ""
"par_id3154784\n"
"help.text"
msgid "Inserts the contents of the properties found on the <emph>Custom Properties</emph> tab of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><menuitem>File - Properties</menuitem></link> dialog. (Only shown if Custom properties are added.)"
-msgstr ""
+msgstr "Вмъква съдържанието на свойствата от раздела <emph>Свойства по избор</emph> на диалоговия прозорец <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><menuitem>Файл - Свойства</menuitem></link>. (Вижда се само ако има добавени потребителски свойства.)"
#. GZvq9
#: 04090004.xhp
@@ -8457,7 +8457,7 @@ msgctxt ""
"par_id3150912\n"
"help.text"
msgid "Inserts the keywords as entered in the <emph>Description</emph> tab of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><menuitem>File - Properties</menuitem></link> dialog."
-msgstr ""
+msgstr "Вмъква ключовите думи, както са въведени в раздела <emph>Описание</emph> на диалоговия прозорец <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><menuitem>Файл - Свойства</menuitem></link>."
#. 2CUCo
#: 04090004.xhp
@@ -8529,7 +8529,7 @@ msgctxt ""
"par_id3146942\n"
"help.text"
msgid "Inserts the subject as entered in the <emph>Description</emph> tab of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><menuitem>File - Properties</menuitem></link> dialog."
-msgstr ""
+msgstr "Вмъква темата, както е въведена в раздела <emph>Описание</emph> на диалоговия прозорец <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><menuitem>Файл - Свойства</menuitem></link>."
#. BeCQj
#: 04090004.xhp
@@ -8547,7 +8547,7 @@ msgctxt ""
"par_id3150033\n"
"help.text"
msgid "Inserts the title as entered in the <emph>Description</emph> tab of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><menuitem>File - Properties</menuitem></link> dialog."
-msgstr ""
+msgstr "Вмъква заглавието, както е въведено в раздела <emph>Описание</emph> на диалоговия прозорец <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><menuitem>Файл - Свойства</menuitem></link>."
#. nK4Xe
#: 04090004.xhp
@@ -8556,7 +8556,7 @@ msgctxt ""
"par_id3150108\n"
"help.text"
msgid "Total editing time"
-msgstr ""
+msgstr "Общо време на редактиране"
#. fnmmz
#: 04090004.xhp
@@ -8574,7 +8574,7 @@ msgctxt ""
"par_id0902200804290272\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the available fields for the field type selected in the <emph>Type</emph> list. To insert a field, click the field, and then click <emph>Insert</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Показва възможните полета за типа поле, избран от списъка <emph>Tип</emph>. За да вмъкнете поле, изберете го и натиснете бутона <emph>Вмъкване</emph>.</ahelp>"
#. NDsUM
#: 04090004.xhp
@@ -8700,7 +8700,7 @@ msgctxt ""
"par_id3150996\n"
"help.text"
msgid "Defines a variable and its value. You can change the value of a variable by clicking in front of the variable field, and then choosing <menuitem>Edit - Field</menuitem>."
-msgstr ""
+msgstr "Задава променлива и нейната стойност. Можете да промените стойността, като щракнете пред полето с променлива и изберете <menuitem>Редактиране - Полета</menuitem>."
#. WjgAZ
#: 04090005.xhp
@@ -16405,7 +16405,7 @@ msgctxt ""
"hd_id3155625\n"
"help.text"
msgid "Settings"
-msgstr ""
+msgstr "Настройки"
#. eEhFJ
#: 05040500.xhp
@@ -16450,7 +16450,7 @@ msgctxt ""
"par_id971604735234085\n"
"help.text"
msgid "Tooltips describe each predefined selection."
-msgstr ""
+msgstr "Всеки от предварително дефинираните варианти е описан с подсказка."
#. 2Dr2B
#: 05040500.xhp
@@ -16477,7 +16477,7 @@ msgctxt ""
"par_id321604744698332\n"
"help.text"
msgid "The following two options are only available when formatting sections."
-msgstr ""
+msgstr "Следващите две настройки са достъпни само при форматиране на раздели."
#. znZph
#: 05040500.xhp
@@ -16540,7 +16540,7 @@ msgctxt ""
"par_id3147176\n"
"help.text"
msgid "If the <emph>AutoWidth</emph> check box is not selected, enter the width and spacing options for the columns."
-msgstr ""
+msgstr "Ако не е отметнато полето <emph>Автоматична ширина</emph>, въведете ширината и разредката за колоните."
#. WKBWJ
#: 05040500.xhp
@@ -16549,7 +16549,7 @@ msgctxt ""
"hd_id3147562\n"
"help.text"
msgid "Column"
-msgstr ""
+msgstr "Колона"
#. EQzit
#: 05040500.xhp
@@ -16585,7 +16585,7 @@ msgctxt ""
"par_id3149287\n"
"help.text"
msgid "<image id=\"img_id3149750\" src=\"res/sc06301.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149750\">Left Arrow Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149750\" src=\"res/sc06301.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149750\">Икона със стрелка наляво</alt></image>"
#. xFUCF
#: 05040500.xhp
@@ -16621,7 +16621,7 @@ msgctxt ""
"par_id3152938\n"
"help.text"
msgid "<image id=\"img_id3152948\" src=\"res/sc06300.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152948\">Right Arrow Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152948\" src=\"res/sc06300.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152948\">Икона със стрелка надясно</alt></image>"
#. EFqg6
#: 05040500.xhp
@@ -16693,7 +16693,7 @@ msgctxt ""
"hd_id3155775\n"
"help.text"
msgid "Style"
-msgstr ""
+msgstr "Стил"
#. yYDqn
#: 05040500.xhp
@@ -16711,7 +16711,7 @@ msgctxt ""
"hd_id931604684769944\n"
"help.text"
msgid "Width"
-msgstr ""
+msgstr "Ширина"
#. H2vfk
#: 05040500.xhp
@@ -16720,7 +16720,7 @@ msgctxt ""
"par_id931604684783303\n"
"help.text"
msgid "Enter width of the separator line."
-msgstr ""
+msgstr "Въведете дебелината на разделителната линия."
#. jT4PA
#: 05040500.xhp
@@ -16729,7 +16729,7 @@ msgctxt ""
"hd_id421604684687071\n"
"help.text"
msgid "Color"
-msgstr ""
+msgstr "Цвят"
#. CuuBH
#: 05040500.xhp
@@ -16738,7 +16738,7 @@ msgctxt ""
"par_id601604684699407\n"
"help.text"
msgid "Select a color for the separator line."
-msgstr ""
+msgstr "Изберете цвета на разделителната линия."
#. u3jAb
#: 05040500.xhp
@@ -24055,7 +24055,7 @@ msgctxt ""
"par_id3147514\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/overwrite\">Replaces styles in the current document that have the same name as the styles you are loading. No warning message is given.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/overwrite\">Замества стиловете в текущия документ, които имат същите имена като зарежданите стилове. Не се показва предупредително съобщение.</ahelp>"
#. EqEyd
#: 05170000.xhp
@@ -24064,7 +24064,7 @@ msgctxt ""
"par_id3150358\n"
"help.text"
msgid "Only applied styles and modified styles are loaded from a document or template. The styles shown in the sidebar cannot be used as a guide."
-msgstr ""
+msgstr "От документ или шаблон се зареждат само приложените и променените стилове. Стиловете, показани в страничната лента, не могат да се използват за ориентир."
#. ivfvH
#: 05170000.xhp
@@ -24523,7 +24523,7 @@ msgctxt ""
"par_idN1062D\n"
"help.text"
msgid "<link href=\"text/shared/01/01100400.xhp\" name=\"File - Properties - Statistics\"><menuitem>File - Properties - Statistics</menuitem> </link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/01100400.xhp\" name=\"File - Properties - Statistics\"><menuitem>Файл - Свойства - Статистика</menuitem> </link>"
#. qinJr
#: 06060000.xhp
@@ -30105,6 +30105,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Отваря диалоговия прозорец <emph>Получатели за циркулярни писма</emph>.</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr "Видимост на съдържанието в плана"
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr "<bookmark_value>видимост на съдържанието в плана;разрешаване</bookmark_value>"
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr "Видимост на съдържанието в плана"
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr "Скрива и показва цялото съдържание под заглавията, включително текст, изображения, таблици, рамки, фигури и текстови полета."
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr "Тази функционалност е експериментална. Смята се, че е стабилна, но е възможно неочаквано или нестабилно поведение.<br/><br/>За да я включите, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, после все още в <menuitem>Настройки</menuitem> изберете <emph>%PRODUCTNAME Writer (или %PRODUCTNAME Writer/Web) - Изглед</emph> и отметнете квадратчето <menuitem>Показване на бутон за видимост на съдържанието в плана</menuitem>."
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr "В Навигатора (<keycode>F5</keycode>) (за <emph>Заглавия</emph> в изгледа на съдържанието)"
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr "С мишката (върху заглавие)"
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr "С тази функционалност можете да скривате и показвате съдържание избирателно под всички абзаци, които имат ненулево ниво в плана (наричани обикновено заглавия и подзаглавия). В %PRODUCTNAME заглавията представляват абзаци с нива в плана от 1 до 10, като 1 е най-високото ниво, а 10 – най-ниското. Например, абзац с ниво в плана 3 е под-подзаглавие на абзац с ниво в плана 1. Тази функция може да бъде използвана за избирателно скриване и показване на съдържанието само за едно заглавие или за подзаглавията, свързани с избрано ниво в плана."
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr "<bookmark_value>Навигатор;видимост на съдържанието в плана</bookmark_value><bookmark_value>видимост на съдържанието в плана;с Навигатора</bookmark_value>"
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr "Използване на „Видимост на съдържанието в плана“ с Навигатора"
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr "В Навигатора всички команди се показват в контекстното меню за <emph>Заглавия</emph> и елементите под <emph>Заглавия</emph>. Щракнете с десния бутон където и да е в прозореца с изгледа на съдържанието, за да отворите контекстното меню за избрания елемент (включително иконата „Заглавия“), после изберете <menuitem>Видимост на съдържанието в плана</menuitem> и една от следващите команди според това какво е избрано в момента."
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr "Скриване на съдържанието за всички нива"
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr "Избрана е иконата „Заглавия“. Щракнете с десния бутон и изберете <menuitem>Видимост на съдържанието в плана - Скриване на всички</menuitem>."
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Икона за заглавия</alt></image>"
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr "Икона „Заглавия“"
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr "Показване на съдържанието за всички заглавия"
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr "Избрана е иконата „Заглавия“. Щракнете с десния бутон и изберете <menuitem>Видимост на съдържанието в плана - Показване на всички</menuitem>."
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr "Скриване на съдържанието за всички подзаглавия, свързани с дадено ниво от плана"
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr "Избрано е заглавие с подзаглавия. Щракнете с десния бутон и изберете <menuitem>Видимост на съдържанието в плана - Скриване на всички</menuitem>, за да скриете цялото съдържание до следващото заглавие от същото ниво в плана."
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr "Показване на съдържанието за всички подзаглавия, свързани с дадено ниво от плана"
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr "Избрано е заглавие с подзаглавия. Щракнете с десния бутон и изберете <menuitem>Видимост на съдържанието в плана - Показване на всички</menuitem>, за да се покаже цялото съдържание до следващото заглавие от същото ниво в плана."
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr "Когато е скрито съдържанието за едно или повече (но не всички) подзаглавия, контекстното меню на заглавието от по-високо ниво ще съдържа и двете команди <menuitem>Показване на всички</menuitem> и <menuitem>Скриване на всички</menuitem>."
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr "Скриване или показване на съдържанието под едно заглавие"
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr "За избраното заглавие щракнете с десния бутон и изберете <menuitem>Видимост на съдържанието в плана - Превключване</menuitem>."
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr "Командите променят дали съдържанието се показва в документа. Те не променят какво се показва в Навигатора. За тази цел използвайте знаците <widget>-</widget> и <widget>+</widget> (или стрелки) или командите <menuitem>Свиване на всички / Разгъване на всички</menuitem> в <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">контекстното меню</link> за заглавия."
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr "<bookmark_value>видимост на съдържанието в плана;с мишката</bookmark_value>"
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr "Използване на „Видимост на съдържанието в плана“ с мишката"
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr "Върху заглавие"
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr "Натиснете клавиша <keycode>Ctrl</keycode>. Преместете мишката върху (или близо до ред със) заглавие.<br/>(Стрелката в лявото бяло поле служи за визуален ориентир.)"
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr "Когато показалецът на мишката се превърне в ръка, са възможни следните команди:"
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr "<variable id=\"click-toggle\">Щракнете, за да превключите <variable id=\"visibility\">видимостта на съдържанието от избраното заглавие до следващото заглавие.</variable></variable>"
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr "<variable id=\"rightclick\">Щракнете с десния бутон, за да скриете или покажете цялото съдържание от избраното заглавие (и всичките му подзаглавия) до следващото заглавие от същото ниво в плана.</variable>"
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr "Стрелки в лявото бяло поле"
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr "Преместете мишката в лявото бяло поле близо до заглавие. (Ако е показано съдържание, ще се появи стрелка.)"
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr "Персонализирано управление"
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr "За по-удобно управление можете да добавите следните команди като бутони в лента с инструменти, като елементи в меню или контекстно меню, или на клавишни комбинации."
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr "<emph>Показване на бутон за видимост на съдържанието в плана</emph> разрешава и забранява тази функционалност (и за мишката, и за Навигатора)."
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr "<emph>Превключване видимостта на съдържанието в плана</emph> превключва <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr "Поставете курсора в документа. Използвайте командата <menuitem>Превключване</menuitem>, за да скриете съдържанието, свързано с първото заглавие над позицията на курсора."
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr "Според извършената персонализация командата <menuitem>Превключване</menuitem> може да е достъпна като бутон в лента с инструменти, елемент от меню, в контекстно меню (препоръчва се за „Цел“ да изберете „Текст“) или с клавишна комбинация."
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr "Записване на конфигурацията"
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr "Документите, записани във формат .odt, запазват текущата конфигурация на скрито и показано съдържание. Обърнете внимание, че промяната във видимостта на съдържанието не променя документа. Ако промените видимостта след записване на документа, трябва да го запишете отново, за да запазите промените във видимостта."
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Задаване на нивото на абзац в плана</link>"
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Промяна на нивата на заглавията в плана</link>"
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Добавяне на бутон към лента с инструменти</link>"
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Персонализиране на контекстно меню</link>"
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Създаване на клавишна комбинация</link>"
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/swriter/guide.po b/source/bg/helpcontent2/source/text/swriter/guide.po
index bb4530bc47c..2f71ba1f3c2 100644
--- a/source/bg/helpcontent2/source/text/swriter/guide.po
+++ b/source/bg/helpcontent2/source/text/swriter/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-10 20:35+0000\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"PO-Revision-Date: 2020-11-21 15:35+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/bg/>\n"
"Language: bg\n"
@@ -2381,7 +2381,7 @@ msgctxt ""
"bm_id3149909\n"
"help.text"
msgid "<bookmark_value>calculating; in text</bookmark_value> <bookmark_value>formulas; calculating in text</bookmark_value> <bookmark_value>references;in Writer tables</bookmark_value> <bookmark_value>=;in Writer tables</bookmark_value> <bookmark_value>tables;starting cell with =</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>изчисляване; в текст</bookmark_value> <bookmark_value>формули; изчисляване в текст</bookmark_value> <bookmark_value>обръщения;в таблици на Writer</bookmark_value> <bookmark_value>=;в таблици на Writer</bookmark_value> <bookmark_value>таблици;започване на клетки с =</bookmark_value>"
#. ArJvi
#: calculate.xhp
@@ -2444,7 +2444,7 @@ msgctxt ""
"hd_id971605353826552\n"
"help.text"
msgid "Cell Entries that Start with Equal Sign (<keycode>=</keycode>)"
-msgstr ""
+msgstr "Клетки, чието съдържание започва със знак за равенство (<keycode>=</keycode>)"
#. hXyjD
#: calculate.xhp
@@ -2453,7 +2453,7 @@ msgctxt ""
"par_id981605353389582\n"
"help.text"
msgid "To make a table cell entry that starts with <keycode>=</keycode> sign, first enter a space, then the <keycode>=</keycode> sign, and then delete the space."
-msgstr ""
+msgstr "За да въведете в таблична клетка текст, който започва със знак <keycode>=</keycode>, първо въведете интервал, после знака <keycode>=</keycode>, после изтрийте интервала."
#. i3E8j
#: calculate_clipboard.xhp
@@ -7792,50 +7792,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Поставяне на отстъп в абзаци</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr "За да смените мерните единици, изберете <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Инструменти - Настройки</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Общи</item>, и изберете нова мерна единица в областта „Настройки“."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "Можете да смените отстъпите за текущия абзац, за всички избрани абзаци или за абзацен стил."
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "Можете да смените отстъпите за текущия абзац, за всички избрани абзаци или за абзацен стил."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "Изберете <item type=\"menuitem\">Форматиране - Абзац - Отстъпи и разредка</item>, за да промените за да промените отстъпите за текущия абзац или за всички избрани абзаци. Също така можете да <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">задавате отстъпи чрез скалата</link>."
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "Освен това можете да <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">задавате отстъпи чрез скалата</link>. За да видите скалата, изберете <item type=\"menuitem\">Изглед - Скала</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr "Щракнете с десния бутон върху абзац и изберете <menuitem>Абзац - Редактиране на стил - Отстъпи и разредка</menuitem>, за да промените отстъпите за всички абзаци със същия абзацен стил."
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "Изберете <item type=\"menuitem\">Форматиране - Абзац - Отстъпи и разредка</item>, за да промените за да промените отстъпите за текущия абзац или за всички избрани абзаци. Също така можете да <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">задавате отстъпи чрез скалата</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "Освен това можете да <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">задавате отстъпи чрез скалата</link>. За да видите скалата, изберете <item type=\"menuitem\">Изглед - Скала</item>."
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "Щракнете с десния бутон върху абзац и изберете <item type=\"menuitem\">Редактиране на стила на абзаца - Отстъпи и разредка</item>, за да промените отстъпите за всички абзаци със същия абзацен стил."
+msgid "Positioning indents"
+msgstr "Позициониране на отстъпи"
#. qUxKq
#: indenting.xhp
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "Отстъпите се изчисляват относително спрямо лявото и дясното бяло поле на страницата. Ако искате абзацът да се разпростира в страничното поле, въведете отрицателно число."
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr "За да смените мерните единици, изберете <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Инструменти - Настройки</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Общи</item>, и изберете нова мерна единица в областта „Настройки“."
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "Отстъпите са различни според посоката на писане. Да вземем параметъра за отстъп <item type=\"menuitem\">Преди текста</item> при език с посока на писане от ляво на дясно. Левият край на абзаца е вдаден навътре спрямо лявото поле на страницата. При език с посока на писане от дясно на ляво, десният край на абзаца е навътре спрямо дясното поле на страницата."
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr "Висящи отстъпи"
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "За да получите висящ абзац, въведете положителна стойност за <item type=\"menuitem\">Преди текста</item> и отрицателна – за <item type=\"menuitem\">Първи ред</item>."
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr "Иконата <emph>Висящ отстъп</emph> се намира в областта „Абзац“ на страничната лента „Свойства“. Щракнете върху тази икона, за да размените стойностите на <menuitem>Преди текста</menuitem> и <menuitem>Първи ред</menuitem>. Това ви позволява да превключвате абзац между първи ред с отстъп и висящ отстъп."
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr "За да създадете висящ отстъп: въведете желаната големина на отстъпа като отстъп за първия ред, после щракнете върху иконата „Висящ отстъп“, за да създадете висящия отстъп."
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Икона за висящ отстъп</alt></image>"
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr "Икона „Висящ отстъп“"
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr "Командата <emph>Висящ отстъп</emph> може да бъде добавена като <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">бутон в лента с инструменти</link>, <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">елемент в меню</link> или <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">контекстно меню</link> или <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">клавишна комбинация</link>."
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,14 +10294,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "Включване и изключване разпознаването на числа в таблици"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>числа, разпознаване в текстови таблици</bookmark_value><bookmark_value>таблици; числа, разпознаване</bookmark_value><bookmark_value>дати;автоматично форматиране в таблици</bookmark_value><bookmark_value>разпознаване;числа</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10267,14 +10330,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Направете едно от следните неща:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "Щракнете с десния бутон в клетка от таблица и изберете <item type=\"menuitem\">Разпознаване на числа</item>. Когато този режим е включен, пред командата <item type=\"menuitem\">Разпознаване на числа</item> има отметка."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr "Изберете <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Свойства</caseinline><defaultinline>Инструменти - Настройки</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Таблица</item> и отметнете или изчистете полето за отметка <item type=\"menuitem\">Разпознаване на числа</item>."
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12209,7 +12290,25 @@ msgctxt ""
"par_idN106DE\n"
"help.text"
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
-msgstr "Когато създавате документ, който желаете да отпечатате като брошура, ползвайте ориентация \"портрет\" за страниците. Writer ще приложи оформлението като брошура когато отпечатвате документа."
+msgstr "Когато създавате документ, който искате да отпечатате като брошура, използвайте ориентация „портрет“ за страниците. Writer ще приложи оформлението като брошура, когато отпечатвате документа."
+
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr "%PRODUCTNAME не е проектиран да печата автоматично в режим на брошура документи, които съдържат страници в ориентация „пейзаж“, но печатането на такива документи е възможно."
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr "Не е възможно да се отпечата голямо изображение, обхващащо две съседни страници. Разрежете изображението на две части и вмъкнете всяка от тях на съответната страница."
#. BGTYA
#: print_brochure.xhp
@@ -12256,50 +12355,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "Тъй като брошурите винаги се отпечатват в режим „пейзаж“, ако принтерът печата двустранно, трябва да изберете „двустранно – къса страна“ в диалоговия прозорец за настройки на принтера."
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
-msgstr "Върнете се в диалоговия прозорец <emph>Печат</emph> и отворете раздела <emph>Подредба на страниците</emph>."
+msgid "Return to <emph>Print</emph> dialog."
+msgstr "Върнете се в диалоговия прозорец <emph>Печат</emph>."
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
-msgstr "Изберете <emph>Брошура</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
+msgstr "В областта <emph>Подредба на страниците</emph> изберете <emph>Брошура</emph>."
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "За принтер, който автоматично печата и от двете страни на хартията, задайте „Всички страници“."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr "За принтер, който автоматично печата от двете страни на страницата, задайте в областта <emph>Обхват и копия</emph> да се включат <emph>Четни и нечетни страници</emph>."
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Натиснете бутона <emph>OK</emph>."
+msgid "Click <emph>Print</emph>."
+msgstr "Натиснете <emph>Печат</emph>."
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "Ако %PRODUCTNAME печата страниците в погрешен ред, отворете раздела <emph>Настройки</emph>, отметнете <emph>Печат в обратен ред</emph> и отпечатайте документа отново."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr "Ако %PRODUCTNAME печата страниците в погрешен ред, отметнете <emph>Печат в обратен ред</emph> в областта <emph>Обхват и копия</emph>, после отпечатайте документа наново."
#. FgeK4
#: print_preview.xhp
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">Файл - Мостра за печат</link>."
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr "Избиране какво да се отпечата"
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr "<bookmark_value>избиране; страници за отпечатване</bookmark_value><bookmark_value>печатане;диапазон от страници</bookmark_value><bookmark_value>печатане;селекция</bookmark_value>"
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Избиране какво да се отпечата</link></variable>"
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr "Можете да изберете да се отпечатат отделни страници, диапазон от страници или селекция от документа."
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr "Отпечатване на една страница"
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr "Изберете <menuitem>Файл > Печат</menuitem>, за да отворите диалоговия прозорец <emph>Печат</emph>."
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr "В областта <emph>Обхват и копия</emph> изберете настройката <emph>Страници</emph>. Текстовото поле ще показва номера на текущата страница."
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr "Въведете номера на страницата, която искате да отпечатате."
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr "Полето за мостра отляво ще покаже избраната страница."
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr "Отпечатване на диапазон от страници"
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr "Изберете <menuitem>Файл > Печат</menuitem>, за да отворите диалоговия прозорец <emph>Печат</emph>."
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr "В областта <emph>Обхват и копия</emph> изберете настройката <emph>Страници</emph>. Текстовото поле ще показва номера на текущата страница."
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr "Въведете номерата на страниците за отпечатване."
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr "• Използвайте <literal>-</literal> за диапазон от страници (например с <input>1–4</input> ще се отпечатат всички страници от 1 до 4)."
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr "• Допускат се и частични диапазони."
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr "С <input>-5</input> ще се отпечатат всички страници до тази с номер 5 включително."
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr "С <input>10-</input> ще се отпечата всичко от страница 10 до края на документа."
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr "• Използвайте <literal>,</literal> или <literal>;</literal> за списък от страници. (Например с <input>1,3;7</input> ще се отпечатат страници 1, 3 и 7. Интервалите не са задължителни. 1, 3, 7 също ще работи.)"
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr "• Възможни са и комбинации (например с <input>1, 3, 5-10, 15-</input> ще се отпечатат страници 1, 3, от 5 до 10 и от 15 до края на документа)."
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr "Полето за мостра отляво ще покаже избраните страници."
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr "Отпечатване на селекция от текст или графика"
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr "Изберете съдържанието, което да бъде отпечатано."
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr "Изберете <menuitem>Файл > Печат</menuitem>, за да отворите диалоговия прозорец <emph>Печат</emph>."
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr "В областта <emph>Обхват и копия</emph> изберете настройката <emph>Селекция</emph>."
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr "В полето за мостра ще се покаже избраният материал."
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,32 +12724,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Отпечатване на няколко страници върху един лист\">Отпечатване на няколко страници върху един лист</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
-msgstr "Чрез раздела <emph>Подредба на страниците</emph> във <item type=\"menuitem\">Файл - Печат</item>можете да печатате няколко страници върху един лист."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
+msgstr "В областта <emph>Подредба на страниците</emph> от диалога <menuitem>Файл - Печат</menuitem> можете да укажете отпечатване на няколко страници на един лист."
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
-msgstr "Изберете <emph>Файл - Печат</emph> и отворете раздела <emph>Подредба на страниците</emph>."
+msgid "Choose <menuitem>File - Print</menuitem>"
+msgstr "Изберете <menuitem>Файл - Печат</menuitem>."
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Направете едно от следните неща:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr "В областта <emph>Подредба на страниците</emph> направете едно от следните неща:"
#. G8yiU
#: print_small.xhp
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Печатане с редовата разредка на страницата</link></variable>"
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
@@ -13496,7 +13820,7 @@ msgctxt ""
"par_idN1068C\n"
"help.text"
msgid "Open the Styles window (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>), click the Paragraph Style you want to exempt, right-click that style, choose <emph>Modify</emph>. In the dialog, click the <link href=\"text/shared/01/05030100.xhp\" name=\"formatparagraph2\"><emph>Indents & Spacing</emph></link> tab."
-msgstr ""
+msgstr "Отворете прозореца „Стилове“ (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>), щракнете върху абзацния стил, който искате да изключите, щракнете с десния бутон върху него и изберете <emph>Промяна</emph>. В диалоговия прозорец отворете раздела <link href=\"text/shared/01/05030100.xhp\" name=\"formatparagraph2\"><emph>Отстъпи и разредка</emph></link>."
#. rzTBT
#: registertrue.xhp
@@ -13730,7 +14054,7 @@ msgctxt ""
"bm_id8186284\n"
"help.text"
msgid "<bookmark_value>rulers;using rulers</bookmark_value><bookmark_value>horizontal rulers</bookmark_value><bookmark_value>vertical rulers</bookmark_value><bookmark_value>indents; setting on rulers</bookmark_value><bookmark_value>page margins on rulers</bookmark_value><bookmark_value>table cells;adjusting the width on rulers</bookmark_value><bookmark_value>showing;rulers</bookmark_value><bookmark_value>hiding;rulers</bookmark_value><bookmark_value>adjusting page margins</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>скали;работа със скалите</bookmark_value><bookmark_value>хоризонтални скали</bookmark_value><bookmark_value>вертикални скали</bookmark_value><bookmark_value>отстъпи;настройки чрез скалите</bookmark_value><bookmark_value>бели полета на скалите</bookmark_value><bookmark_value>таблични клетки;задаване ширина чрез скалите</bookmark_value><bookmark_value>показване;скали</bookmark_value><bookmark_value>скриване;скали</bookmark_value><bookmark_value>регулиране на белите полета</bookmark_value>"
#. FTeNL
#: ruler.xhp
@@ -16061,7 +16385,7 @@ msgctxt ""
"par_id3149615\n"
"help.text"
msgid "<image id=\"img_id3149622\" src=\"cmd/sc_optimizetable.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149622\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149622\" src=\"cmd/sc_optimizetable.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149622\">Икона</alt></image>"
#. BErzm
#: table_sizing.xhp
diff --git a/source/bg/helpcontent2/source/text/swriter/menu.po b/source/bg/helpcontent2/source/text/swriter/menu.po
index 58843221292..3a406136f57 100644
--- a/source/bg/helpcontent2/source/text/swriter/menu.po
+++ b/source/bg/helpcontent2/source/text/swriter/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-01 10:35+0000\n"
+"PO-Revision-Date: 2020-11-17 16:43+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textswritermenu/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1475579890.000000\n"
#. tP5yN
@@ -194,7 +194,7 @@ msgctxt ""
"par_id911601651828340\n"
"help.text"
msgid "<ahelp hid=\".\">Submenu with additional row, column, and page breaks</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Подменю с допълнителни знаци за нов ред, нова колона и нова страница</ahelp>"
#. t534N
#: submenu_more_breaks.xhp
@@ -221,7 +221,7 @@ msgctxt ""
"bm_id651604885957774\n"
"help.text"
msgid "<bookmark_value>text documents; inserting column breaks</bookmark_value><bookmark_value>column breaks; inserting</bookmark_value><bookmark_value>inserting; manual column breaks</bookmark_value><bookmark_value>manual column breaks</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>текстови документи; вмъкване знаци за нова колона</bookmark_value><bookmark_value>знаци за нова колона; вмъкване</bookmark_value><bookmark_value>вмъкване; ръчни знаци за нова колона</bookmark_value><bookmark_value>ръчни знаци за нова колона</bookmark_value>"
#. XBU67
#: submenu_more_breaks.xhp
diff --git a/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
index c2c91634005..c93f9157e22 100644
--- a/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bg/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-10 19:35+0000\n"
+"PO-Revision-Date: 2020-11-17 20:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1564897305.000000\n"
#. W5ukN
@@ -13574,7 +13574,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Regular Triangle"
-msgstr ""
+msgstr "Равностранен триъгълник"
#. BUJ28
#: Effects.xcu
@@ -29886,7 +29886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show ~Tracked Changes"
-msgstr ""
+msgstr "Показване на проследените промени"
#. sMgCx
#: WriterCommands.xcu
diff --git a/source/bg/sc/messages.po b/source/bg/sc/messages.po
index 0657823ca15..069cf9afd59 100644
--- a/source/bg/sc/messages.po
+++ b/source/bg/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-04 20:47+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562424086.000000\n"
#. kBovX
@@ -1469,7 +1469,7 @@ msgstr "Импортиране от Dif"
#: sc/inc/globstr.hrc:272
msgctxt "STR_STYLENAME_STANDARD"
msgid "Default"
-msgstr ""
+msgstr "По подразбиране"
#. TG9pD
#: sc/inc/globstr.hrc:273
@@ -14683,7 +14683,7 @@ msgstr "Резултатът на функцията, ако критерият
#: sc/inc/scfuncs.hrc:3606
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Compares expression against list of value/result pairs, and returns result for first value that matches the expression. If expression does not match any value, a default result is returned, if it is placed as final item in parameter list without a value."
-msgstr ""
+msgstr "Сравнява израз със списък от двойки стойност/резултат и връща резултата за първата стойност, която съответства на израза. Когато изразът не съответства на никоя стойност, се връща подразбиран резултат, ако е зададен като последен елемент без стойност в списъка с параметри."
#. PneN8
#: sc/inc/scfuncs.hrc:3607
@@ -14695,7 +14695,7 @@ msgstr "Израз"
#: sc/inc/scfuncs.hrc:3608
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Value to be compared against value1…valueN (N ≤ 127)"
-msgstr ""
+msgstr "Стойност, която да бъде сравнявана със стойност2…стойностN (N ≤ 127)."
#. 9wcvj
#: sc/inc/scfuncs.hrc:3609
@@ -14707,7 +14707,7 @@ msgstr "Стойност"
#: sc/inc/scfuncs.hrc:3610
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Value to compare against expression. If no result is given, then value is returned as default result."
-msgstr ""
+msgstr "Стойност, която да бъде сравнявана с израза. Ако не е даден резултат, стойността се връща като подразбиран резултат."
#. dsARv
#: sc/inc/scfuncs.hrc:3611
@@ -25214,13 +25214,13 @@ msgstr "Акцент 3"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2653
msgctxt "notebookbar_groupedbar_full|Header1"
msgid "Heading 1"
-msgstr ""
+msgstr "Заглавие 1"
#. 6Ej4G
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2661
msgctxt "notebookbar_groupedbar_full|Header2"
msgid "Heading 2"
-msgstr ""
+msgstr "Заглавие 2"
#. sqE94
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2675
@@ -28624,38 +28624,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr "Указва, че когато поставяте клетки от клипборда върху област, която не е празна, ще се появява предупреждение."
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr "Enter поставя и изчиства клипборда"
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Форматиране на текста чрез метриките на принтера"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "Указва, че метриките на принтера се използват както за печатане, така и за форматиране на изображението за екрана."
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Осветяване _заглавията на избраните редове/колони"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr "Определя дали да се осветяват заглавията на избраните редове или колони."
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Обновяване на обръщенията при сортиране на клетки"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Настройки за въвеждане"
diff --git a/source/bg/sfx2/messages.po b/source/bg/sfx2/messages.po
index dc976ec96dd..91527600303 100644
--- a/source/bg/sfx2/messages.po
+++ b/source/bg/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-10-31 11:35+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/bg/>\n"
@@ -1655,286 +1655,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Затваряне на панела"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Закачване"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Откачване"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Още настройки"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Затваряне на страничната лента"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Настройки на страничната лента"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Персонализиране"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Връщане на подразбираните"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Затваряне на страничната лента"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Ализарин"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Кошер"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Синя крива"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Чертеж"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Ярко синьо"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Стилно червено"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ДНК"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Фокус"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Горска птица"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Вдъхновение"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Светлини"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Сочно зелено"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Метрополис"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Тъмно синьо"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Природна илюстрация"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Молив"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Пиано"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Портфолио"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Прогрес"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Залез"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Старомоден"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Семпъл"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Автобиография"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "По подразбиране"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Съвременен"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Съвременно бизнес писмо, безсерифен шрифт"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Съвременно бизнес писмо, серифен шрифт"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Визитка с лого"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Прост"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Премахване"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Изчистване на всичко"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Дължина на паролата"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Въведената от вас парола причинява проблеми със съвместимостта. Моля, въведете парола, по-къса от 52 байта или по-дълга от 55 байта."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "Щракнете с %{key} за отваряне на хипервръзката: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Щракнете за отваряне на хипервръзката: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(използва се от: %STYLELIST)"
@@ -4165,6 +4129,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Изтриване..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/bg/starmath/messages.po b/source/bg/starmath/messages.po
index d6c29e6a306..2e4f1f1164b 100644
--- a/source/bg/starmath/messages.po
+++ b/source/bg/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-04 20:47+0000\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/bg/>\n"
"Language: bg\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "or"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Знак +"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Знак -"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Знак +-"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Знак -+"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Булево НЕ"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Събиране +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Изваждане -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Умножение (точка)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Умножение (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Умножение (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Деление (наклонена черта)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Деление (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Деление (дроб)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
-msgstr ""
+msgstr "Дроб"
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Наклонена черта в кръг"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Точка в кръг"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Минус в кръг"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Плюс в кръг"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Тензорно произведение"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Булево И"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Булево ИЛИ"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Равно"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Не равно"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "По-малко"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "По-голямо"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "По-малко или равно"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "По-голямо или равно"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "По-малко или равно"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "По-голямо или равно"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Много по-малко"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Много по-голямо"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Се дефинира като"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Конгруентно"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Приблизително равно"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Подобно"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Приблизително равно или равно"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Пропорционално"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Ортогонално"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Успоредно"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Клони към"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Съответства на (ляво)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Съответства на (дясно)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Принадлежи"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Не принадлежи"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Съдържа"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Обединение"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Сечение"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Разлика"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
-msgstr ""
+msgstr "Частно множество"
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Подмножество"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Подмножество или равно"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Надмножество"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Надмножество или равно"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Не подмножество"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Не подмножество или равно"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Не надмножество"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Не надмножество или равно"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr "Обща функция"
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Абсолютна стойност"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Факториел"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Квадратен корен"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N-ти корен"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Експоненциална функция"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Експоненциална функция"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Натурален логаритъм"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Логаритъм"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Синус"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Косинус"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Тангенс"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Котангтенс"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Аркуссинус"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Аркускосинус"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Аркустангенс"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Аркускотангенс"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Хиперболичен синус"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Хиперболичен косинус"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Хиперболичен тангенс"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Хиперболичен котангтенс"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Хиперболичен ареасинус"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Хиперболичен ареакосинус"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Хиперболичен ареатангенс"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Хиперболичен ареакотангтенс"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr "Общ оператор"
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr "Общ оператор, индекс отдолу"
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr "Общ оператор, индекс отгоре"
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr "Общ оператор, горен/долен индекс"
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Сума"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Долен индекс на сума"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Горен индекс на сума"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Индекси на сума"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Произведение"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Долен индекс на произведение"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Горен индекс на произведение"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Индекси на произведение"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Koпроизведение"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Долен индекс на копроизведение"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Горен индекс на копроизведение"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Индекси на копроизведение"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Граница"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Долен индекс на граница"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Горен индекс на граница"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Индекси на граница"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Долна граница, limes inferior"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Долен индекс на долна граница"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Горен индекс на долна граница"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Горен/долен индекс на долна граница"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Горна граница, limes superior"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Долен индекс на горна граница"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Горен индекс на горна граница"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Горен/долен индекс на горна граница"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Квантор за съществуване"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Не съществува"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Квантор за общност"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Интеграл"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Долен индекс на интеграл"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Горен индекс на интеграл"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Индекси на интеграл"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Двоен интеграл"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Долен индекс на двоен интеграл"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Горен индекс на двоен интеграл"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Индекси на двоен интеграл"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Троен интеграл"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Долен индекс на троен интеграл"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Горен индекс на троен интеграл"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Индекси на троен интеграл"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Криволинеен интеграл"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Долен индекс на криволинеен интеграл"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Горен индекс на криволинеен интеграл"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Индекси на криволинеен интеграл"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Двоен криволинеен интеграл"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Долен индекс на двоен криволинеен интеграл"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Горен индекс на двоен криволинеен интеграл"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Индекси на двоен криволинеен интеграл"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Троен криволинеен интеграл"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Долен индекс на троен криволинеен интеграл"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Горен индекс на троен криволинеен интеграл"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Индекси на троен криволинеен интеграл"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Ударение наляво"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Линия отгоре"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Брева"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Обърнат циркумфлекс"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Кръгче"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Точка"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Две точки"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Три точки"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Ударение надясно"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Циркумфлекс"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Тилда"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Стрелка за вектор"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Харпун"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Долна линия"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Горна линия"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Зачертаване"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Прозрачност"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Получер шрифт"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Курсивен шрифт"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Преоразмеряване"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Смяна на шрифт"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Черен цвят"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Син цвят"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Зелен цвят"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Червен цвят"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
-msgstr ""
+msgstr "Синьо-зелен цвят"
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
-msgstr ""
+msgstr "Цикламен цвят"
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Сив цвят"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Цвят лайм"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Кестеняв цвят"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Тъмносин цвят"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Маслинен цвят"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Пурпурен цвят"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Сребърен цвят"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Синьозелен цвят"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Жълт цвят"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "Цвят RGB"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
-msgstr ""
+msgstr "Цвят RGB"
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
-msgstr ""
+msgstr "Цвят, шестнадесетично"
+
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr "Коралов цвят"
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr "Кървавочервен цвят"
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr "Цвят полунощно синьо"
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr "Виолетов цвят"
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr "Оранжев цвят"
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr "Оранжево-червен цвят"
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr "Морско зелен цвят"
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr "Цвят индиго"
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr "Ярко розов цвят"
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr "Цвят лавандула"
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr "Снежнобял цвят"
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Групиращи скоби"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Кръгли скоби"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Квадратни скоби"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Двойни квадратни скоби"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Фигурни скоби"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Счупени скоби"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Горни скоби"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Долни скоби"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Единични линии"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Двойни линии"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Операторни скоби"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Кръгли скоби (мащабируеми)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Квадратни скоби (мащабируеми)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Двойни квадратни скоби (мащабируеми)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Фигурни скоби (мащабируеми)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Счупени скоби (мащабируеми)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Закръгляване нагоре (мащабируемо)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Закръгляване надолу (мащабируемо)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Единични линии (мащабируеми)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Двойни линии (мащабируеми)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Операторни скоби (мащабируеми)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Изчислено за"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Фигурна скоба отгоре (мащабируема)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Фигурна скоба отдолу (мащабируема)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
-msgstr ""
+msgstr "Изчисляване"
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
-msgstr ""
+msgstr "Изчисляване, долен индекс отдолу"
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
-msgstr ""
+msgstr "Изчисляване, горен индекс отгоре"
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
-msgstr ""
+msgstr "Изчисляване, горен/долен индекс"
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Долен индекс отдясно"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Степен"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Долен индекс отляво"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Горен индекс отляво"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Долен индекс отдолу"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Горен индекс отгоре"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Малка междина"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Празнина"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Нов ред"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Вертикално разполагане (2 елемента)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Вертикално разполагане"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Разполагане в матрица"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Подравняване отляво"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Центрирано подравняване"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Подравняване отдясно"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Алеф"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Празно множество"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Реална част"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Имагинерна част"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Безкрайност"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Частна производна"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Набла"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr "Трансформация на Лаплас"
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr "Трансформация на Фурие"
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Символ на Вайерщрас"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Точки в средата"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Точки до горе"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Точки до долу"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Точки отдолу"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Вертикални точки"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Конкатенация"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Деление (широка наклонена черта)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Деление (обратна широка наклонена черта)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Дели"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Не дели"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Двойна стрелка наляво"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Двойна стрелка наляво и надясно"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Двойна стрелка надясно"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Множество на естествените числа"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Множество на целите числа"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Множество на рационалните числа"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Множество на реалните числа"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Множество на комплексните числа"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Голям циркумфлекс"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Голяма тилда"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Голяма стрелка за вектор"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Голям харпун"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h черта"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Ламбда черта"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Стрелка наляво"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Стрелка надясно"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Стрелка нагоре"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Стрелка надолу"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Без интервал"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Предхожда"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Предхожда или е равно на"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Предхожда или е еквивалентно на"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Следва"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Следва или е равно на"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Следва или е еквивалентно на"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Не предхожда"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Не следва"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Едноместни/двуместни операции"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Релации"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Операции с множества"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Функции"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Оператори"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Атрибути"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Скоби"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Формати"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Други"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Примери"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Обиколка"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Еквивалентност маса – енергия"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Теорема на Питагор"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
-msgstr ""
+msgstr "Ред на Тейлър"
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Разпределение на Гаус"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
-msgstr ""
+msgstr "Уравнение на Ойлер-Лагранж"
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
-msgstr ""
+msgstr "Фундаментална теорема на анализа"
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
-msgstr ""
+msgstr "Уравнение на хаоса"
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
-msgstr ""
+msgstr "Равенство на Ойлер"
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
-msgstr ""
+msgstr "Втори закон на Нютон"
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
-msgstr ""
+msgstr "Обща теория на относителността"
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
-msgstr ""
+msgstr "Специална теория на относителността"
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Стандартен"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Курсив"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Получер"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "черно"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "синьо"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "зелено"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "червено"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
-msgstr ""
+msgstr "аква"
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
-msgstr ""
+msgstr "цикламено"
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "сиво"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "лайм"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "кестеняво"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "тъмносино"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "маслиново"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "пурпурно"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "сребърно"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "синьозелено"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "жълто"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr "коралово"
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr "кървавочервено"
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr "полунощно синьо"
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr "виолетово"
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr "оранжево"
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr "оранжево-червено"
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr "лавандула"
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr "снежнобяло"
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr "морско зелено"
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr "индиго"
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr "ярко розово"
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
-msgstr ""
+msgstr "rgba"
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
-msgstr ""
+msgstr "шестнадесетично"
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "скриване"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "размер"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "шрифт"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "отляво"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "центриране"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "отдясно"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Команди"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Формула"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Запазва се документ..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION – формула"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ГРЕШКА: "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Неочакван знак"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Неочакван символ"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Очаква се \"{\""
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Очаква се \"}\""
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Очаква се \"(\""
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Очаква се \")\""
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Несъответстващи си ляв и десен символ"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Очаква се „fixed“, „sans“ или „serif“"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "Неочакван символ след „size“"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Не е разрешено двойно подравняване"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Не са разрешени двойни долни или горни индекси"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
-msgstr ""
+msgstr "Очаква се число"
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Очаква се \"#\""
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Очаква се цвят"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Очаква се \"RIGHT\""
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Съдържание"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Заглавие"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Текст на формула"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Кантове"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Размер"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Оригинален размер"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Побиране в страницата"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "Мащабиране"
diff --git a/source/bg/svtools/messages.po b/source/bg/svtools/messages.po
index 9e26fdf4ed5..a3be4a10d82 100644
--- a/source/bg/svtools/messages.po
+++ b/source/bg/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-04 20:47+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/bg/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Отмяна: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Връщане: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Повтаряне: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Неформатиран текст"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Неформатиран текст (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Растерно изображение (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Метафайл на Graphics Device Interface (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Форматиран текст (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Форматиран текст (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Рисунка на %PRODUCTNAME"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Изображение/анимация на StarView (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Информация за състоянието от вътрешна връзка на Svx"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Връзка на %PRODUCTNAME (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Показалец на Netscape"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Сървърен формат на Star"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Обектен формат на Star"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Обект аплет"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Обект приставка"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Обект – StarWriter 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Обект – StarWriter 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Обект – StarWriter 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Обект – StarWriter/Web 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Обект – StarWriter/Web 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Обект – StarWriter/Master 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Обект – StarWriter/Master 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Обект – StarDraw"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Обект – StarDraw 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Обект – StarImpress 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Обект – StarDraw 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Обект – StarCalc"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Обект – StarCalc 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Обект – StarCalc 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Обект – StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Обект – StarChart 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Обект – StarChart 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Обект – StarImage"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Обект – StarImage 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Обект – StarImage 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Обект – StarMath"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Обект – StarMath 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Обект – StarMath 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Обект – StarObject Paint"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (опростен HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE връзка)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Обект - Microsoft Word"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Обект - StarFrameSet"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Обект - офис документ"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Информация за документ на Notes"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Документ Sfx"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Обект - StarChart 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Графичен обект"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 - обект на Writer"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 - обект на Writer/Web"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 - обект на Writer/Master"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 - обект на Draw"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 - обект на Impress"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 - обект на Calc"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 - обект на Chart"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 - обект на Math"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Метафайл на Windows"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Обект - източник на данни"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Таблица - източник на данни"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Заявка на SQL"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 - диалогов прозорец"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Връзка"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Формат HTML без коментари"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Не бе възможно вмъкването на обект %."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Не бе възможно вмъкването на обект от файла %."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Още обекти"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Непознат източник"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Байта"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "кБ"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "МБ"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "ГБ"
@@ -501,1234 +501,1234 @@ msgstr "ГБ"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Букви и цифри"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Обикновен"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Знаков набор"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Речник"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Пинйън"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Щрихи"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Радикали"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Уникод"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Жуйън"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Телефонен указател"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Фонетично (букви и цифри в началото)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Фонетично (букви и цифри в края)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Букви и цифри"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Речник"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Пинйън"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Радикали"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Щрихи"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Жуйън"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Фонетично (букви и цифри в началото, групиране по срички)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Фонетично (букви и цифри в началото, групиране по съгласни)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Фонетично (букви и цифри в края, групиране по срички)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Фонетично (букви и цифри в края, групиране по съгласни)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Светъл"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Светъл курсив"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Обикновен"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Курсив"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Получер"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Получер курсив"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Чер"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Чер курсив"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Книгов"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Получер наклонен"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Сбит"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Сбит получер"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Сбит получер курсив"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Сбит получер наклонен"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Сбит курсив"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Сбит наклонен"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Много светъл"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Много светъл курсив"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Наклонен"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Плътен"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Плътен курсив"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Един и същ шрифт ще бъде използван за принтера и за екрана."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Това е шрифт за принтер. На екрана може да изглежда различно."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Това начертание ще бъде симулирано или ще се използва най-близкото подобно начертание."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Този шрифт не е инсталиран. Ще бъде използван най-близкият наличен шрифт."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Преместване в началото"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Преместване наляво"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Преместване надясно"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Преместване в края"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Добавяне"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Хоризонтална скала"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Вертикална скала"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 бит, с праг"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 бит, с дифузия"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 бита, степени на сивото"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4-битов цвят"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 бита, степени на сивото"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8-битов цвят"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 бита (пълноцветно изображение)"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Изображението заема около %1 КБ памет."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Изображението заема около %1 КБ памет, а размерът на файла е %2 КБ."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Размерът на файла е %1 КБ."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "хост"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "порт"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Друга CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Готово"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Пауза"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Предстоящо изтриване"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Зает"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Инициализиране"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Изчакване"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Загряване"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Обработка"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Печатане"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Офлайн"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Грешка"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Непознат сървър"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Засядане на хартията"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Няма хартия"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Ръчно подаване"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Проблем с хартията"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "Активен В/И"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Изходната касета е пълна"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Тонерът свършва"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Няма тонер"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Изтриване на страница"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Нужна е намеса на потребителя"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Недостатъчно памет"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Капакът е отворен"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Енергоспестяващ режим"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Подразбиран принтер"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d документ(а)"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<няма>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Компания"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Отдел"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Собствено име"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Фамилно име"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Улица"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Държава"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Пощенски код"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Град"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Звание"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Длъжност"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Обръщение"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Инициали"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Завършек на писмо"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Домашен телефон"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Служебен телефон"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Факс"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Е-поща"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Бележка"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Потребителско 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Потребителско 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Потребителско 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Потребителско 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Щат/област"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Служ. телефон"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Пейджър"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Мобилен телефон"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Друг телефон"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Календар"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Покана"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ на $user$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME изисква среда за изпълнение на Java (Java Runtime Environment – JRE), за да изпълни тази задача. Моля, инсталирайте JRE и рестартирайте %PRODUCTNAME. %FAQLINK"
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME изисква %BITNESS-битова среда за изпълнение на Java (Java Runtime Environment – JRE), за да изпълни тази задача. Моля, инсталирайте JRE и рестартирайте %PRODUCTNAME. %FAQLINK"
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr "За да изпълни тази задача в macOS 10.10 или по-нова версия, %PRODUCTNAME изисква Java Development Kit на Oracle. Моля, инсталирайте го и рестартирайте %PRODUCTNAME. %FAQLINK"
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Конфигурацията на %PRODUCTNAME е променена. От %PRODUCTNAME - Preferences - %PRODUCTNAME - Разширени изберете средата за изпълнение на Java, която желаете %PRODUCTNAME да използва."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Конфигурацията на %PRODUCTNAME е променена. От Инструменти - Настройки - %PRODUCTNAME - Разширени изберете средата за изпълнение на Java, която желаете %PRODUCTNAME да използва."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME изисква среда за изпълнение на Java (Java Runtime Environment - JRE), за да изпълни задачата. Избраната JRE е дефектна. Моля, изберете друга версия или инсталирайте нова JRE и я изберете от %PRODUCTNAME - Preferences - %PRODUCTNAME - Разширени."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME изисква среда за изпълнение на Java (Java Runtime Environment - JRE), за да изпълни задачата. Избраната JRE е дефектна. Моля, изберете друга версия или инсталирайте нова JRE и я изберете от Инструменти - Настройки - %PRODUCTNAME - Разширени."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Изисква се JRE"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Избор на JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE е дефектна"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Изходен код"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Файл с показалци"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Графика"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Конфигурационен файл"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Приложение"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Таблица от БД"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Системен файл"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Документ на MS Word"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Файл на помощта"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Документ на HTML"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Архивен файл"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Файл дневник"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "База от данни на StarOffice"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Главен документ на StarWriter 4.0 / 5.0"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Изображение на StarOffice"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Текстов файл"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Връзка"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Шаблон на StarOffice 3.0 - 5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Документ на MS Excel"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Шаблон на MS Excel"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Файл за пакетна обработка"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Файл"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Папка"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Текстов документ"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Електронна таблица"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Презентация"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Рисунка"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Документ на HTML"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Главен документ"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Формула"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "База от данни"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 – шаблон за електронна таблица"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 – шаблон за рисунка"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 – шаблон за презентация"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 – шаблон за текстов документ"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Локално устройство"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Дисково устройство"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM устройство"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Мрежова връзка"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Документ на MS PowerPoint"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Шаблон на MS PowerPoint"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Прожекция на MS PowerPoint"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 – формула"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 - диаграма"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 – рисунка"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 – електронна таблица"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 – презентация"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 - текстов документ"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 – главен документ"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Документ на MathML"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument - база от данни"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument – рисунка"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument – формула"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument – главен документ"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument – презентация"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument – електронна таблица"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument - текст"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument – шаблон за електронна таблица"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument – шаблон за рисунка"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument – шаблон за презентация"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument – шаблон за текст"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Разширение на %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Правописна проверка с Hunspell"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Сричкопренасяне с Libhyphen"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Синонимен речник MyThes"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Списък с игнорирани думи"
diff --git a/source/bg/svx/messages.po b/source/bg/svx/messages.po
index 6bd83bb9367..58675dc2abd 100644
--- a/source/bg/svx/messages.po
+++ b/source/bg/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-04 20:47+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562357387.000000\n"
#. 3GkZj
@@ -16330,10 +16330,10 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Заместители"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
+msgid "Comme_nts"
msgstr "Коментари"
#. z68pk
diff --git a/source/bg/sw/messages.po b/source/bg/sw/messages.po
index a15235dd0dd..1ac85df24ed 100644
--- a/source/bg/sw/messages.po
+++ b/source/bg/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-04 20:47+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562504032.000000\n"
#. v3oJv
@@ -98,13 +98,13 @@ msgstr "Таблиците не трябва да съдържат заглав
#: sw/inc/AccessibilityCheckStrings.hrc:29
msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
-msgstr ""
+msgstr "Спазвайте подредбата на нивата на заглавията. Заглавие от ниво %LEVEL_CURRENT% не трябва да бъде след ниво %LEVEL_PREV%."
#. gkDzg
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr ""
+msgstr "Избягвайте да използвате Fontworks в документите си. Уверете се, че се използва само за показване на примери или друг незначителен текст."
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -614,13 +614,13 @@ msgstr "Номерирани абзаци"
#: sw/inc/inspectorproperties.hrc:31
msgctxt "RID_CHAR_DIRECTFORMAT"
msgid "Character Direct Formatting"
-msgstr ""
+msgstr "Пряко знаково форматиране"
#. fYAUc
#: sw/inc/inspectorproperties.hrc:32
msgctxt "RID_PARA_DIRECTFORMAT"
msgid "Paragraph Direct Formatting"
-msgstr ""
+msgstr "Пряко абзацно форматиране"
#. YUbUQ
#. Format names
@@ -5750,19 +5750,19 @@ msgstr "Изключено"
#: sw/inc/strings.hrc:646
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Щракнете, за да превключите видимостта на съдържанието."
#. 44jEc
#: sw/inc/strings.hrc:647
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
-msgstr ""
+msgstr "Щракнете с десния бутон за включване на поднивата."
#. kDbnu
#: sw/inc/strings.hrc:648
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Щракнете, за да превключите видимостта на съдържанието."
#. rkD8H
#: sw/inc/strings.hrc:649
@@ -17438,86 +17438,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr "Въведете желания брой на редовете в таблицата."
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr "Предупреждение: големите таблици може да се отразят върху бързодействието и съвместимостта."
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Общи"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "_Заглавна част"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr "Включва заглавен ред в таблицата."
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Повтаряне заглавните редове на нова страница"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr "Повтаря заглавието на таблицата в горния край на всяка следваща страница, ако таблицата се разполага в няколко страници."
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "_Таблицата да не се разделя между страници"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr "Предотвратява пренасянето на част от таблицата върху друга страница."
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr "Изберете броя на редовете, които да се използват за заглавна част."
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Заглавни редове:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Настройки"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr "Показва мостра на текущия избор."
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr "Изберете предварително дефиниран стил за новата таблица."
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Стилове"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr "Вмъква таблица в документа. Можете също така да щракнете върху стрелката, да плъзнете през желания брой редове и колони в таблицата и да щракнете в последната клетка."
@@ -20031,289 +20037,289 @@ msgid "Text"
msgstr "Текст"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Превключване на изгледа Образец"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Превключва между изглед Главен документ и нормален изглед, когато е отворен главен документ."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr "Преминаване към страница"
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr "Въведете номер на страница и натиснете Enter. Използвайте стрелките, за да преминете към предишната или следващата страница."
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Изглед за навигация в съдържанието"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr "Превключва между показване на всички категории в Навигатора и показване само на избраната категория."
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Горен колонтитул"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr "Премества курсора от текстовата област на документа в горния колонтитул или обратно."
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Долен колонтитул"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr "Премества курсора от текстовата област на документа в долния колонтитул или обратно."
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Котва<->Текст"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr "Служи за преминаване между текста и котвата на бележка под линия."
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Задаване на напомняне"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Щракнете тук за да зададете напомняне за текущата позиция на курсора. Може да се зададат до пет напомняния. За да се прехвърлите към напомняне, натиснете иконата Навигация, от прозореца Навигация натиснете иконата Напомняне, и натиснете бутона Предишно или Следващо."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Показани нива на заглавия"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr "Щракнете върху тази икона, след което изберете нивото на заглавията от плана, които искате да виждате в Навигатора."
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Списъчно поле - вкл./изкл."
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr "Показва или скрива списъка в прозореца Навигатор."
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Повишаване на ниво"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Повишава с единица нивото от плана на избраното заглавие и неговите подзаглавия. За да повишите нивото само на заглавието, без подзаглавията, задръжте Ctrl и щракнете върху иконата."
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Понижаване на ниво"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Понижава с единица нивото от плана на избраното заглавие и подзаглавията му. За да се понижи нивото само на заглавието без подзаглавията му, задръжте Ctrl и щракнете върху иконата."
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Повишаване на глава"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Премества избраното заглавие и текста под него с една позиция нагоре в Навигатора и в документа. За да преместите само избраното заглавие без текста му, задръжте Ctrl и щракнете върху тази икона."
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Понижаване на глава"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Премества избраното заглавие и текста под него с една позиция надолу в Навигатора и в документа. За да преместите само избраното заглавие без текста му, задръжте Ctrl и щракнете върху тази икона."
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Режим при плъзгане"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr "Задава настройките за вмъкване на елементи от Навигатора в документа с плъзгане и пускане, например като хипервръзка. Щракнете върху тази икона и изберете желаната настройка."
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Документ"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Активен прозорец"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Превключване на изгледа Образец"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Превключва между изглед Главен документ и нормален изглед, когато е отворен главен документ."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Редактиране"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr "Редактирайте съдържанието на компонента, избран в списъка на прозореца Навигатор. Ако селекцията е файл, той ще бъде отворен за редактиране. Ако селекцията е указател, ще се отвори диалоговият прозорец Указател."
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Обновяване"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Щракнете и изберете съдържанието, което желаете да се обнови."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Вмъкване"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Вмъква файл, указател или нов документ в главния документ."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Записване и на съдържанието"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr "Записва копие от съдържанието на свързаните файлове в главния документ. Така е сигурно, че текущото съдържание ще бъде налично дори ако свързаните файлове са недостъпни."
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Преместване нагоре"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr "Премества селекцията с една позиция нагоре в списъка на навигатора."
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Преместване надолу"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr "Премества селекцията с една позиция надолу в списъка на навигатора."
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Селекция"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Индекси"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Връзки"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Всичко"
@@ -23683,7 +23689,7 @@ msgstr "Еднакво съдържание:"
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:95
msgctxt "pagefooterpanel|footertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Бели полета:"
#. xepvQ
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:107
@@ -23773,7 +23779,7 @@ msgstr "Еднакво съдържание:"
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:95
msgctxt "pageheaderpanel|headertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Бели полета:"
#. PAGRJ
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:107
diff --git a/source/bn-IN/helpcontent2/source/text/scalc/01.po b/source/bn-IN/helpcontent2/source/text/scalc/01.po
index 9368cf3929b..dc4d768304f 100644
--- a/source/bn-IN/helpcontent2/source/text/scalc/01.po
+++ b/source/bn-IN/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2018-11-12 13:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr ""
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/sdraw.po b/source/bn-IN/helpcontent2/source/text/sdraw.po
index 27edaf47505..57c25d13033 100644
--- a/source/bn-IN/helpcontent2/source/text/sdraw.po
+++ b/source/bn-IN/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 10:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.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 d1999830e5f..a79bd681824 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/00.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "ক্রেতা, ক্রয়ের পরিমাণ এবং চালান সারণি সম্বলিত ডাটাবেসের মাধ্যমে রিলেশনাল ডাটাবেসের ভাল উদাহরণ হতে পারে। চালন সারণিতে, কোন প্রকৃত ক্রেতা অথবা ক্রয় সম্পর্কিত ডাটা থাকেনা; সারণিটিতে শুধুমাত্র রিলেশনাল লিঙ্কের রেফারেন্স, অথবা একটি সংশ্লিষ্ট ক্রেতা এবং ক্রয় সম্পর্কিত সারণি ক্ষেত্রের মধ্যে রিলেশন থাকে (যেমন, ক্রেতা সারণি থেকে ক্রেতার ID ক্ষেত্র )।"
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>register-true; definition</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "রেজিস্টার-ট্রু"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/bn-IN/helpcontent2/source/text/shared/01.po b/source/bn-IN/helpcontent2/source/text/shared/01.po
index c7309d48c4e..758500c31bc 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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr ""
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr ""
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr ""
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,13 +9376,13 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr ""
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
msgstr ""
#. 3Lq2G
@@ -9430,13 +9412,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr ""
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
msgstr ""
#. nRB3E
@@ -9466,13 +9448,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr ""
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
msgstr ""
#. F4J5u
@@ -9601,13 +9583,13 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr ""
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
msgstr ""
#. ijR7M
@@ -9709,13 +9691,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr ""
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
msgstr ""
#. ADEyJ
@@ -9745,13 +9727,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
msgstr ""
#. GqEUL
@@ -9781,13 +9763,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
msgstr ""
#. DLEGF
diff --git a/source/bn-IN/helpcontent2/source/text/shared/02.po b/source/bn-IN/helpcontent2/source/text/shared/02.po
index 5d49c0ac928..99a33506112 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/02.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 13:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">ইনডেন্ট কমানো</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11059,14 +11059,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">আইকন</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr ""
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">ইনডেন্ট বাড়ানো</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11131,14 +11131,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">আইকন</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/bn-IN/helpcontent2/source/text/shared/optionen.po b/source/bn-IN/helpcontent2/source/text/shared/optionen.po
index 0c4064a47c7..f2a1ff05523 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/optionen.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11860,32 +11860,32 @@ msgctxt ""
msgid "Snap"
msgstr "স্ন্যাপ"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "স্ন্যাপ রেখায়"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Guides\"><emph>সহায়িকাতে ছবি নেয়া</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Guides\"><emph>সহায়িকাতে ছবি নেয়া</emph></link></caseinline><defaultinline><emph>সহায়িকাতে ছবি নেয়া</emph></defaultinline></switchinline> আইকন ব্যবহার করে এই বৈশিষ্ট্যটি নির্ধারণ করতে পারেন, যা উপস্থাপনা অথবা আঁকার বস্তুতে <emph>অপশন</emph> বারে সহজেই খুঁজে পাওয়া যায়।"
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr ""
#. eUCCJ
#: 01070300.xhp
diff --git a/source/bn-IN/helpcontent2/source/text/simpress/02.po b/source/bn-IN/helpcontent2/source/text/simpress/02.po
index 73bfdae3b52..cb550ffc34c 100644
--- a/source/bn-IN/helpcontent2/source/text/simpress/02.po
+++ b/source/bn-IN/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 10:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5695,40 +5695,40 @@ msgctxt ""
msgid "Exit all groups"
msgstr "সকল গ্রুপ ত্যাগ করুন"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Guides\">নির্দেশাবলীর স্ন্যাপ</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">আইকন</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
#. oXWsX
diff --git a/source/bn-IN/helpcontent2/source/text/swriter.po b/source/bn-IN/helpcontent2/source/text/swriter.po
index 87413248219..a74a5c4dc80 100644
--- a/source/bn-IN/helpcontent2/source/text/swriter.po
+++ b/source/bn-IN/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-10-23 07:26+0000\n"
"Last-Translator: biraj <brnet00@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "বাম-থেকে-ডানে"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">ডানের আইকনের বামে</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "ডান-থেকে-বামে"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">বামের আইকনের ডানে</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/bn-IN/helpcontent2/source/text/swriter/01.po b/source/bn-IN/helpcontent2/source/text/swriter/01.po
index c60b7493925..30b4c407647 100644
--- a/source/bn-IN/helpcontent2/source/text/swriter/01.po
+++ b/source/bn-IN/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-10-21 20:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "ন্যাভিগেটর"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\"><emph>বার্তা একত্রিতকরণ প্রাপক</emph> ডায়ালগ খোলা হয়।</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/swriter/guide.po b/source/bn-IN/helpcontent2/source/text/swriter/guide.po
index 7cc38fc52a8..5f2f572f679 100644
--- a/source/bn-IN/helpcontent2/source/text/swriter/guide.po
+++ b/source/bn-IN/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-12 13:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7792,50 +7792,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">অনুচ্ছেদ ইনডেন্ট করা হচ্ছে</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr ""
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "আপনি বর্তমান অনুচ্ছেদ, অথবা সন নির্বাচিত অনুচ্ছেদ, অথবা একটি অনুচ্ছেদ শৈলীর জন্য ইনডেন্ট পরিবর্তন করতে পারেন।"
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "আপনি বর্তমান অনুচ্ছেদ, অথবা সন নির্বাচিত অনুচ্ছেদ, অথবা একটি অনুচ্ছেদ শৈলীর জন্য ইনডেন্ট পরিবর্তন করতে পারেন।"
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "বর্তমান অনুচ্ছেদ অথবা সব নির্বাচিত অনুচ্ছেদের ইনডেন্ট পরিবর্তন করার জন্য <item type=\"menuitem\">বিন্যাস - অনুচ্ছেদ - ইনডেন্ট & ফাঁকা স্থান</item> পছন্দ করুন। আপনি মাপকাঠি ব্যবহার করেও <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">ইনডেন্ট নির্ধারণ করতে পারেন</link>।"
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "আপনি<link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">মাপকাঠি ব্যবহার করে ইনডেন্ট নির্ধারণ করতে পারেন</link>। মাপকাঠি প্রদর্শন করতে, <item type=\"menuitem\">দর্শন - মাপকাঠি</item>পছন্দ করুন।"
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "বর্তমান অনুচ্ছেদ অথবা সব নির্বাচিত অনুচ্ছেদের ইনডেন্ট পরিবর্তন করার জন্য <item type=\"menuitem\">বিন্যাস - অনুচ্ছেদ - ইনডেন্ট & ফাঁকা স্থান</item> পছন্দ করুন। আপনি মাপকাঠি ব্যবহার করেও <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">ইনডেন্ট নির্ধারণ করতে পারেন</link>।"
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "আপনি<link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">মাপকাঠি ব্যবহার করে ইনডেন্ট নির্ধারণ করতে পারেন</link>। মাপকাঠি প্রদর্শন করতে, <item type=\"menuitem\">দর্শন - মাপকাঠি</item>পছন্দ করুন।"
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "একটি অনুচ্ছেদে ডান-ক্লিক করুন এবং একই অনুচ্ছেদ শৈলীর সব অনুচ্ছেদের ইনডেন্ট পরিবর্তন করতে <item type=\"menuitem\">অনুচ্ছেদ শৈলী সম্পাদনা করুন - ইনডেন্ট & স্থান ফাঁকা করা</item> পছন্দ করুন।"
+msgid "Positioning indents"
+msgstr ""
#. qUxKq
#: indenting.xhp
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "বাম এবং ডান মার্জিন অনুসারে ইনডেন্ট গণনা করা হয়। যদি আপনি অনুচ্ছেদটি পৃষ্ঠা কিনারার বেতরে সম্প্রসারিত করতে চান, একটি ঋনাত্মক সংখ্যা সন্নিবেশ করান।"
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr ""
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "একটি হ্যাংগিং ইনডেন্টের জন্য, <item type=\"menuitem\">পাঠ্যের পূর্বে</item> এর জন্য একটি ধনাত্মক মান এবং <item type=\"menuitem\">প্রথম রেখা</item> এর জন্য একটি ঋনাত্মক মান দিন।"
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,14 +10294,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "সারণিতে নম্বর শনাক্তকরণ চালু অথবা বন্ধ করা হচ্ছে"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10267,13 +10330,22 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "নিম্নের যেকোনো একটি করুন:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
msgstr ""
#. hDANA
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr ""
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12211,6 +12292,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "যখন আপনি একটি নথিই তৈরি করবেন যা আপনি একটি বিবরণপত্র হিসেবে মুদ্রণ করতে চান, পৃষ্ঠার জন্য প্রতিকৃতি প্রমান ব্যবহার করুন। নথিটি মুদ্রণ করার সময় Writer বিবরণপত্র বিন্যাস প্রয়োগ করে।"
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12256,49 +12355,49 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "যদি আপনার মুদ্রণ যন্ত্রের দ্বিগুণ মুদ্রণ করে, এবং বিবরণপত্র সর্বদা অনুভূমিক ধরনে মুদ্রণ করে, আপনার মুদ্রণ বিন্যাস ডায়ালগে \"ডুপ্লেক্স - সংক্ষিপ্ত কিনারা\" বিন্যাস ব্যবহার করা প্রয়োজন।"
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
+msgid "Return to <emph>Print</emph> dialog."
msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "<emph>ঠিক আছে</emph> ক্লিক করুন।"
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
msgstr ""
#. FgeK4
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr ""
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,32 +12724,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr ""
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
+msgid "Choose <menuitem>File - Print</menuitem>"
msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "নিম্নের যেকোনো একটি করুন:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/bn-IN/sc/messages.po b/source/bn-IN/sc/messages.po
index 4562580d1ea..4eeb7bc2c2a 100644
--- a/source/bn-IN/sc/messages.po
+++ b/source/bn-IN/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29208,38 +29208,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "পাঠ্য বিন্যাসের জন্য মুদ্রণযন্ত্রের মেট্রিক্স ব্যবহার করুন"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "সুনির্দিষ্ট করুন যে মুদ্রণের জন্য মুদ্রক ম্যাট্রিক্স প্রয়োগ করা হয় এবং পর্দার প্রদর্শন বিন্যাসের জন্যও করা হয়।"
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "কলাম/সারি শিরোনামে নির্বাচন হাইলাইট করুন (_c)"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "সেলের রেঞ্জ বাছাই করার জন্য রেফারেন্স অাপডেট করুন"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "ইনপুট সেটিং"
diff --git a/source/bn-IN/sfx2/messages.po b/source/bn-IN/sfx2/messages.po
index 82ded2ed4da..6e4864c73df 100644
--- a/source/bn-IN/sfx2/messages.po
+++ b/source/bn-IN/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-11 07:50+0000\n"
"Last-Translator: somu7777 <Soumya.chowdhury7777@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1629,287 +1629,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "প্যান বন্ধ করুন"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "ডক"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "আনডক"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "অারো বিকল্প"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "পার্শ্ববার ডেক বন্ধ করুন"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "সাইডবার সেটিংস"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "স্বনির্ধারণ"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "ডিফল্ট পুনঃস্থাপন করুন"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "সাইডবার বন্ধ করুন"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "মৌচাক"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "নীল কার্ভ"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "ব্লুপ্রিন্ট পরিকল্পনা"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "উজ্জল নীল"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "ক্লাসিক লাল"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ডিএনএ"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "কেন্দ্রবিন্দু"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "ছাপ"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "অনুপ্রেরণা"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "আলো"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "লুস সবুজ"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "মহানগরী"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "মাঝরাতের নিল"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "প্রকৃতি চিত্রণ"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "পেন্সিল"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "পিয়ানো"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "অগ্রগতি"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "সূর্যাস্ত"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "মদ"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "প্রাণবন্ত"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "সিভি"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "জীবনবৃত্তান্ত"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "অাধুনিক"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "আধুনিক ব্যবসা চিঠি সানস-সরিফ"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "আধুনিক ব্যবসা চিঠি serif"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "লোগো সঙ্গে ব্যবসা কার্ড"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "সরিয়ে ফেলুন"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "সব মুছে ফেলুন"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "পাসওয়ার্ড দৈর্ঘ্য"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4138,6 +4101,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "মুছে ফেলুন..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/bn-IN/starmath/messages.po b/source/bn-IN/starmath/messages.po
index 6f24f296c17..4ebd97a377c 100644
--- a/source/bn-IN/starmath/messages.po
+++ b/source/bn-IN/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-11 06:35+0000\n"
"Last-Translator: biraj <brnet00@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "অথবা"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+ চিহ্ন"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr " - চিহ্ন"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+ - চিহ্ন"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr " - + চিহ্ন"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "বুলিয়ান NOT"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "যোগ +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "বিয়োগ -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "গুণ (ডট)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "গুণ (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "গুণ (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "ভাগ (স্ল্যাশ)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "ভাগ (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "ভাগ (ভগ্নাংশ)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "বৃত্তাকার স্ল্যাশ"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "বৃত্তাকার বিন্দু"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "বৃত্তাকার বিয়োগচিহ্ন"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "বৃত্তাকার য়োগচিহ্ন"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "টেন্সর পণ্য"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "বুলিয়ান AND"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "বুলিয়ান OR"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "সমান"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "সমান নয়"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "অপেক্ষাকৃত ছোট"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "অপেক্ষাকৃত বড়"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "অপেক্ষাকৃত ছোট বা সমান"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "অপেক্ষাকৃত বড় বা সমান"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "অপেক্ষাকৃত ছোট বা সমান"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "অপেক্ষাকৃত বড় বা সমান"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "অপেক্ষাকৃত অনেক কম"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "অপেক্ষাকৃত অনেক বড়"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "হিসাবে সংজ্ঞায়িত করা হয়"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "এর সর্বসম"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "প্রায় সমান"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "একই রকম"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "একই রকম বা সমান"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "সমানুপাতিক"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "এর সাথে সমকৌণিক"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "এর সাথে সমান্তরাল"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "দিকে"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "(বামে) অনুরূপ"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "(ডানে) অনুরূপ"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "এতে আছে"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "এতে নেই"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "বিদ্যমান"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "সংযোগ"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "ছেদ"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "পার্থক্য"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "উপসেট"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "উপসেট অথবা সমান"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "সুপারসেট"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "সুপারসেট অথবা সমান"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "উপসেট নয়"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "উপসেট অথবা সমান নয়"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "সুপারসেট নয়"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "সুপারসেট নয় অথবা সমান"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "পরম মান"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "উৎপাদক"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "বর্গমূল"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N-তম মূল"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "সূচকীয় ফাংশন"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "সূচকীয় ফাংশন"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "সাধারণ লগারিদম"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "লগারিদম"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "সাইন"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "কোসাইন"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "ট্যানজেন্ট"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "কোট্যানজেন্ট"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "আর্কসাইন"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "আর্ককোসাইন"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "আর্কট্যানজেন্ট"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "আর্ককোট্যানজেন্ট"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "অধিবৃত্তিক সাইন"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "অধিবৃত্তিক কোসাইন"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "অধিবৃত্তিক ট্যানজেন্ট"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "অধিবৃত্তিক কোট্যানজেন্ট"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "এলাকা অধিবৃত্তিক সাইন"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "এলাকা অধিবৃত্তিক কোসাইন"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "এলাকা অধিবৃত্তিক ট্যানজেন্ট"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "এলাকা অধিবৃত্তিক কোট্যানজেন্ট"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "যোগফল"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "সাম সাবস্ক্রিপ্ট বোতাম"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "সাম সুপারস্ক্রিপ্ট টপ"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "সাম সুপার/সাব স্ক্রিপ্ট"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "গুণফল"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "প্রোডাক্ট সাবস্ক্রিপ্ট বটম"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "প্রোডাক্ট সুপারস্ক্রিপ্ট টপ"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "প্রোডাক্ট সুপার/সাব স্ক্রিপ্ট"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "উপ-গুণফল"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "কো-প্রোডাক্ট সাবস্ক্রিপ্ট বটম"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "কো-প্রোডাক্ট সুপারস্ক্রিপ্ট টপ"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "কো-প্রোডাক্ট সুপার/সাব স্ক্রিপ্ট"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "লাইম"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "লাইম সাবস্ক্রিপ্ট বটম"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "লাইম সুপারস্ক্রিপ্ট টপ"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "লাইম সুপার/সাব স্ক্রিপ্ট"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "সীমার অধীন"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "সীমার অধীন সাবস্ক্রিপ্ট নীচে"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "সীমার অধীন সাবস্ক্রিপ্ট উপরে"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "সীমার অধীন সুপ/সাব স্ক্রিপ্ট"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "উচ্চতর সীমা"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "উচ্চতর সীমার সাবস্ক্রিপ্ট নীচে"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "উচ্চতর সীমার সাবস্ক্রিপ্ট উপরে"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "উচ্চতর সীমার সুপ/সাব স্ক্রিপ্ট"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "বিদ্যমান আছে"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "বিদ্যমান নেই"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "সকলের জন্য"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "যোগজ"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "ইন্টিগ্রেল সাবস্ক্রিপ্ট বটম"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "ইন্টিগ্রল সুপারস্ক্রিপ্ট টপ"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "ইন্টিগ্র্যাল সুপার/সাব স্ক্রিপ্ট"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "দ্বি-যোগজ"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "ডাবল ইন্টিগ্র্যাল সাবস্ক্রিপ্ট বটম"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "ডাবল ইন্টিগ্র্যাল সুপারস্ক্রিপ্ট টপ"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "ডাবল ইন্টিগ্র্যাল সুপার/সাব স্ক্রিপ্ট"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "ত্রি-যোগজ"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "ট্রিপল ইন্টিগ্র্যাল সাবস্ক্রিপ্ট বটম"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "ট্রিপল ইন্টিগ্র্যাল সুপারস্ক্রিপ্ট টপ"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "ট্রিপল ইন্টিগ্র্যাল সুপারআসাব স্ক্রিপ্ট"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "কার্ভ ইন্টিগ্রাল"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "কার্ভ ইন্টিগ্র্যাল সাবস্ক্রিপ্ট বটম"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "কার্ভ ইন্টিগ্র্যাল সুপারস্ক্রিপ্ট টপ"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "কার্ভ ইন্টিগ্র্যাল সুপার/সাব স্ক্রিপ্ট"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "ডবল-কার্ভ যোগজ "
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "ডাবল কার্ভ ইন্টিগ্র্যাল সাবস্ক্রিপ্ট বটম"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "ডাবল কার্ভ ইন্টিগ্র্যাল সুপারস্ক্রিপ্ট টপ"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "ডাবল কার্ভ ইন্টিগ্র্যাল সুপার/সাব স্ক্রিপ্ট"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "ট্রিপল-কার্ভ যোগজ"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "ট্রিপল কার্ভ ইন্টিগ্র্যাল সাবস্ক্রিপ্ট বটম"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "ট্রিপল কার্ভ ইন্টিগ্র্যাল সুপারস্ক্রিপ্ট টপ"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "ট্রিপল কার্ভ ইন্টিগ্র্যাল সুপার/সাব স্ক্রিপ্ট"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "একিউট অ্যাকসেন্ট"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "উপরের লাইন"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "ব্রীভ"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "উল্টানো সারকামফ্লেক্স"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "বৃত্ত"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "ডট"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "ডবল ডট"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "তিনটি ডট"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "গ্রেভ অ্যাকসেন্ট"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "সারকামফ্লেক্স"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "টিল্ড"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "ভেক্টর তীরচিহ্ন"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "নিচের রেখা"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "উপরের রেখা"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "মধ্য রেখা"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "স্বচ্ছ"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "গাঢ় ফন্ট"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "তির্যক ফন্ট"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "আকার পরিবর্তন"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "ফন্ট পরিবর্তন"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "রঙ কালো"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "রঙ নীল"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "রঙ সবুজ"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "রঙ লাল"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "রঙ ধূসর"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "রঙ লাইম"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "রঙ মেরুন"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "রঙ অাকাশি"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "রঙ সবুজ"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "রঙ পার্পেল"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "রঙ সিলভার"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "রঙ টিল"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "রঙ হলুদ"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "গ্রুপ বন্ধনী"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "বৃত্তাকার বন্ধনী"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "বর্গাকার বন্ধনী"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "ডবল বর্গাকার বন্ধনী"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "বক্রবন্ধনী"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "কৌণিক বন্ধনী"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "অাপার সেল"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "ফ্লর"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "একক লাইন"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "ডবল লাইন"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "অপারেটর বন্ধনী"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "বৃত্তাকার বন্ধনী (আকার পরিবর্তনযোগ্য)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "বর্গাকার বন্ধনী (আকার পরিবর্তনযোগ্য)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "ডবল বর্গাকার বন্ধনী (আকার পরিবর্তনযোগ্য)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "বক্রবন্ধনী (আকার পরিবর্তনযোগ্য)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "কৌণিক বন্ধনী (আকার পরিবর্তনযোগ্য)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "সেলিং (স্কেলযোগ্য)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "ফ্লোর (স্কেলেবল)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "একক লাইন (আকার পরিবর্তনযোগ্য)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "ডবল লাইন (আকার পরিবর্তনযোগ্য)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "অপারেটর বন্ধনী (আকার পরিবর্তনযোগ্য)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "যেখানে মূল্যায়ন করা হয়েছিল"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "উপরের বক্রবন্ধনী (আকার পরিবর্তনযোগ্য)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "নিচের বক্রবন্ধনী (আকার পরিবর্তনযোগ্য)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "ডান নিম্নলেখ "
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "ঘাত"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "বাম নিম্নলেখ"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "বাম ঊর্ধ্বলিপি"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "নিচের নিম্নলেখ"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "উপরের ঊর্ধ্বলিপি"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "কম ফাঁকা"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "ফাঁকা"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "নতুন লাইন"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "উল্লম্ব স্ট্যাক (২টি উপাদান)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "উল্লম্ব স্ট্যাক"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "ম্যাট্রিক্স স্ট্যাক"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "বামে সাজান"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "কেন্দ্রে সাজান"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "ডানে সাজান"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Aleph"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "ফাঁকা সেট"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "বাস্তব অংশ"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "কাল্পনিক অংশ"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "অসীম"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "আংশিক"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "ন্যাবলা"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "মাঝে ডট"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "উপরের দিকে ডট"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "নিচের দিকে ডট"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "নিচে ডট"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "উল্লম্বভাবে ডট দিন"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "কনক্যাটেনেট"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "ভাগ (ওয়াইডস্ল্যাশ)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "বিভাজন (কাউন্টার ওয়াইড-স্ল্যাশ)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "ভাগ করে"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "ভাগ করে না"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "বামমূখী ডবল তীরচিহ্ন"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "বাম এবং ডানমূখী ডবল তীরচিহ্ন "
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "ডানমূখী ডবল তীরচিহ্ন "
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "স্বাভাবিক সংখ্যার সেট"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "পূর্ণ সংখ্যার সেট"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "মূলদ সংখ্যার সেট"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "বাস্তব সংখ্যার সেট"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "জটিল সংখ্যার সেট"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "বড় সারকামফ্লেক্স"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "বড় টিল্ড"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "বড় ভেক্টর তীর"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h বার"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "ল্যামডা বার"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "বাম তীর"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "ডান তীর"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "ঊর্ধ্ব তীর"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "নিম্ন তীর"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "কোনো স্থান নেই"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "অগ্রবর্তী হয়"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "অগ্রবর্তীতে বা সমান"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "অগ্রবর্তীতে অথবা সমতুল্য"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "পশ্চাতে আসে"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "পশ্চাতে বা সমান"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "পশ্চাতে বা সমতুল্য"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "অগ্রবর্তী হয়না"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "পশ্চাতে আসেনা"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "ইউনারী/বাইনারি অপারেটর"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "অন্বয়"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "সেট অপারেশন"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "ফাংশন"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "অপারেটর"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "বৈশিষ্ট্য"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "বন্ধনী"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "বিন্যাস"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "অন্যান্য"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "উদাহরণ"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "আদর্শ"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "তির্যক"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "গাঢ়"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "কালো"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "নীল"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "সবুজ"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "লাল"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "ধূসর"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "লাইম"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "মেরুন"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "নেভী"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "জলপাই রং"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "রক্তবর্ণ"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "রূপালী"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "টিল"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "হলুদ"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "আড়াল করুন"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "আকার"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "ফন্ট"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "বাঁদিকে"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "কেন্দ্র"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "ডানদিকে"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "কমান্ড"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "সূত্র"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "নথি সংরক্ষণ করা হচ্ছে..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION সূত্র"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "অপ্রত্যাশিত অক্ষর"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "অপ্রত্যাশিত টোকেন"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' প্রত্যাশিত"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' প্রত্যাশিত"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' প্রত্যাশিত"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' প্রত্যাশিত"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "বাম এবং ডান চিহ্ন মেলেনি"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans', বা 'serif' প্রত্যাশিত"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "একটি অপ্রত্যাশিত টোকেনের পর 'আকার' আসবে"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "দুটি সারিকরণ করার অনুমতি দেওয়া হয় না"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "দুটি সাব/সুপারস্ক্রিপ্ট অনুমোদিত নয়"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' প্রত্যাশিত"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "রঙ প্রয়োজন"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' প্রত্যাশিত"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "বিষয়বস্তু"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "শিরোনাম (~T)"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "ফর্মূলা টেক্সট (~F)"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "সীমানা (~o)"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "আকার"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "মূল আকার (~r)"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "পৃষ্ঠার সাথে মানানসই করা হবে (~p)"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "আকার পরিবর্তন (_S)"
diff --git a/source/bn-IN/svtools/messages.po b/source/bn-IN/svtools/messages.po
index 0f85823d3d1..440ff2113e7 100644
--- a/source/bn-IN/svtools/messages.po
+++ b/source/bn-IN/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "পূর্বাবস্থায় ফিরিয়ে আনা:"
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "পুনরাবৃত্তি: (~R)"
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "অবিন্যাসিত লেখ"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx অভ্যন্তরীণ সংযোগের অবস্থার তথ্য"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "নেটস্কেপ বুকমার্ক"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "স্টার সার্ভার বিন্যাস"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "স্টার অবজেক্ট বিন্যাস"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "অ্যাপলেট অবজেক্ট"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "প্লাগ-ইন অবজেক্ট"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "স্টার রাইটার ৩.০ অবজেক্ট"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "স্টার রাইটার ৪.০ অবজেক্ট"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "স্টার রাইটার ৫.০ অবজেক্ট"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "স্টার রাইটার/ওয়েব ৪.০ অবজেক্ট"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "স্টার রাইটার/ওয়েব ৫.০ অবজেক্ট"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "স্টার রাইটার/মাস্টার ৪.০ অবজেক্ট"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "স্টার রাইটার/মাস্টার ৫.০ অবজেক্ট"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "স্টার ড্র অবজেক্ট"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "স্টার ড্র ৪.০ অবজেক্ট"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "স্টার-ইমপ্রেস ৫.০ অবজেক্ট"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "স্টার ড্র ৫.০ অবজেক্ট"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "স্টার ক্যালক অবজেক্ট"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "স্টার-ক্যালক ৪.০ অবজেক্ট"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "স্টার-ক্যালক ৫.০ অবজেক্ট"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "স্টার-চার্ট অবজেক্ট"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "স্টার-চার্ট ৪.০ অবজেক্ট"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "স্টার-চার্ট ৫.০ অবজেক্ট"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "স্টার-ইমেজ অবজেক্ট"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "স্টার-ইমেজ ৪.০ অবজেক্ট"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "স্টার-ইমেজ ৫.০ অবজেক্ট"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "স্টার ম্যাথ অবজেক্ট"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "স্টার ম্যাথ ৪.০ অবজেক্ট"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "স্টার ম্যাথ ৫.০ অবজেক্ট"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "স্টার-অবজেক্ট অঙ্কন অবজেক্ট"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "মাইক্রোসফট ওয়ার্ড অবজেক্ট"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "স্টার-ফ্রেম-সেট অবজেক্ট"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "অফিস নথির অবজেক্ট"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "নোট নথির তথ্য"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx নথি"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "স্টার-চার্ট ৫.০ অবজেক্ট"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "গ্রাফিক বস্তু"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 রাইটার অবজেক্ট"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 রাইটার/ওয়েব অবজেক্ট"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 রাইটার/মাস্টার অবজেক্ট"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 অঙ্কন অবজেক্ট"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 ইম্প্রেস অবজেক্ট"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 ক্যাল অবজেক্ট"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 চার্ট অবজেক্ট"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 ম্যাথ অবজেক্ট"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "উইন্ডোজ মেটাফাইল"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "ডাটা উৎসের অবজেক্ট"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "ডাটা উৎসের টেবিল"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL কোয়েরি"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 ডায়ালগ"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "লিংক"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "মন্তব্যহীন HTML ফরম্যাট"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "% অবজেক্ট সন্নিবেশ করা যাবে না।"
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "% ফাইলের অবজেক্ট সন্নিবেশ করা যায়নি।"
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "পরবর্তী অবজেক্ট"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "অজানা উৎস"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "বাইট"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "কিলোবাইট"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "মেগাবাইট"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "গিগাবাইট"
@@ -501,399 +501,399 @@ msgstr "গিগাবাইট"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "আলফানিউমেরিক"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "স্বাভাবিক"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "অক্ষর সমষ্টি"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "অভিধান"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "পিনইন"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "কলমের আঁক"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "মৌলিক"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "ইউনিকোড"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "জুইন"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "ফোন বুক"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "ফোনেটিক (প্রথমে আলফানিউমেরিক)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "ফোনেটিক (শেষে আলফানিউমেরিক)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "আলফানিউমেরিক"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "অভিধান"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "পিনইন"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "মৌলিক"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "কলমের আঁক"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "জুইন"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "ফোনেটিক (প্রথমে আলফানিউমেরিক, সিলাবল ভিত্তিক গ্রুপ)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "ফোনেটিক (প্রথমে আলফানিউমেরিক , ব্যঞ্জনবর্ণ ভিত্তিক গ্রুপ)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "ফোনেটিক (শেষে আলফানিউমেরিক, সিলাবল ভিত্তিক গ্রুপ)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "ফোনেটিক (শেষে আলফানিউমেরিক, ব্যঞ্জনবর্ণ ভিত্তিক গ্রুপ)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "সামান্য"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "সামান্য তির্যক"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "স্বাভাবিক"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "তির্যক"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "গাঢ়"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "গাঢ় তির্যক"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "কালো"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "কালো তির্যক"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
#, fuzzy
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "বই"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "সংক্ষিপ্ত"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "অর্ধ-গাঢ়"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "মুদ্রণযন্ত্র ও পর্দায় একই ফন্ট ব্যবহৃত হবে।"
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "এটি একটি মুদ্রণযন্ত্রের ফন্ট। পর্দার দেখতে ভিন্ন হতে পারে।"
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "এই ফন্ট শৈলী সিমিউলেট করা হবে বা কাছাকাছি সমতুল্য শৈলী ব্যবহার করা হবে।"
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "এই ফন্টটি ইনস্টল করা হয়নি। কাছাকাছি বিদ্যমান ফন্ট ব্যবহৃত হবে।"
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "প্রধান পাতায় স্থানান্তর"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "বামে সরানো"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "ডানে সরানো"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "শেষে স্থানান্তর"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "যোগ করুন"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "অনুভূমিক মানদন্ড"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "উল্লম্ব মানদন্ড"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "১ বিট থ্রেশোল্ড"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "১ বিট ডিথারকৃত"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "৪ বিট গ্রেস্কেল"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "৪ বিট রং"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "৮ বিট গ্রেস্কেল"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "৮ বিট রং"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "২৪ বিট ট্রু রং"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "ছবিটির %1 কিবা মেমরির প্রয়োজন।"
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
@@ -902,843 +902,843 @@ msgstr ""
"ফাইলের আকার %2 কিবা। "
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "ফাইলের আকার %1 কিবা। "
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "মূল্য"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "সাজান"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "প্রস্তুত"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "থামানো"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "অসমাপ্ত অপসারণ"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "ব্যস্ত"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "শুরু হচ্ছে"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "অপেক্ষমাণ"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "প্রস্তুতি নিচ্ছে"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "প্রক্রিয়া চলছে"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "মুদ্রণ করা হচ্ছে"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "অফলাইন"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "ত্রুটি "
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "অজানা সার্ভার"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "কাগজ আটকে গেছে"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "যথেষ্ট পরিমাণ কাগজ নেই"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "স্বনির্ধারিত ফিড"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "কাগজ ত্রুটি"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O কার্যকর"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "আউটপুট বিন সম্পূর্ণ"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "কালি কম"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "কোনো কালি নেই"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "পৃষ্ঠা মুছে ফেলা"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "ব্যবহারকারীর হস্তক্ষেপ প্রয়োজন"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "অপর্যাপ্ত মেমোরি"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "আবরণ খোলা"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "বিদ্যুৎ সংরক্ষণ মোড"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "পূর্বনির্ধারিত মুদ্রণযন্ত্র"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d নথি"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<কোনটি না>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "কোম্পানি"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "বিভাগ"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "নামের প্রথমাংশ"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "নামের শেষাংশ"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "রাস্তা"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "দেশ"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "জিপ কোড"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "শহর"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "শিরোনাম"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "অবস্থান"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "ঠিকানা ফরম"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "আদ্যক্ষর"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "প্রসংসামূলক সমাপ্তি"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "টেলিফোন: বাসা"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "টেলিফোন: কর্মস্থল"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "নোট"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "ব্যবহারকারী ১"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "ব্যবহারকারী ২"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "ব্যবহারকারী ৩"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "ব্যবহারকারী ৪"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "রাষ্ট্র"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "টেলিফোন: অফিস"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "পেজার"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "মোবাইল"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "টেলিফোন: অন্যান্য"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "বর্ষপঞ্জী"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "আমন্ত্রণ"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME কনফিগারেশন পরিবর্তিত হয়েছে। %PRODUCTNAME - পছন্দসই - %PRODUCTNAME - উন্নত-এ, %PRODUCTNAME দ্বারা ব্যবহার করাতে চাওয়া Java রানটাইম এনভায়রনমেন্ট নির্বাচন করুন।"
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME কনফিগারেশন পরিবর্তন করা হয়েছে। সরঞ্জাম - বিকল্প - %PRODUCTNAME - উন্নত -এ, %PRODUCTNAME দ্বারা ব্যবহার করাতে চাওয়া Java রানটাইম এনভায়রনমেন্ট নির্বাচন করুন।"
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "এই কাজটি করতে, %PRODUCTNAME -এর একটি Java রানটাইম এনভায়রনমেন্ট (JRE) চাই। নির্বাচিত JRE অচল। দয়া করে অপর একটি সংস্করণ নির্বাচন করুন বা একটি নতুন JRE ইনস্টল করুন এবং তা %PRODUCTNAME - পছন্দসই - %PRODUCTNAME - উন্নত -এ নির্বাচন করুন।"
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "এই কাজটি করতে, %PRODUCTNAME -এর একটি Java রানটাইম এনভায়রনমেন্ট (JRE) চাই। নির্বাচিত JRE অচল। দয়া করে, অপর একটি সংস্করণ নির্বাচন করুন বা একটি নতুন JRE ইনস্টল করুন এবং তা সরঞ্জাম - বিকল্প - %PRODUCTNAME - উন্নত-এ নির্বাচন করুন।"
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE প্রয়োজন"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE নির্বাচন করুন"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE ত্রুটিপূর্ণ"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "সোর্স কোড"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "বুকমার্ক ফাইল"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "গ্রাফিক্স"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "কনফিগারেশন ফাইল"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "অ্যাপ্লিকেশন"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "ডাটাবেস টেবিল"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "সিস্টেম ফাইল"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "এমএস ওয়ার্ড নথি"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "সহায়তা ফাইল"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML নথি"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "আর্কাইভ ফাইল"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "লগ ফাইল"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice ডাটাবেস"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 মাস্টার নথি"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice অঙ্কন"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "লেখা ফাইল"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "লিংক"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 ফর্মা"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "এমএস Excel নথি"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "এমএস Excel ফর্মা"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "ব্যাচ ফাইল"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ফাইল"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ফোল্ডার"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "লেখা নথি"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "স্প্রেডশীট"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "উপস্থাপনা"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "অঙ্কন"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML নথি"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "মাস্টার নথি"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "সূত্র"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "ডাটাবেস "
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 স্প্রেডশীট টেমপ্লেট"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 অঙ্কন টেমপ্লেট"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 উপস্থাপনা টেমপ্লেট"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 টেক্সট ডকুমেন্ট টেমপ্লেট"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "স্থানীয় ড্রাইভ"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "ডিস্ক ড্রাইভ"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM ড্রাইভ"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "নেটওয়ার্ক সংযোগ"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "এমএস PowerPoint নথি"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "এমএস PowerPoint ফর্মা"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "এমএস PowerPoint প্রদর্শনী"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 সূত্র"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 ছক"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 অঙ্কন"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 স্প্রেডশীট"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 উপস্থাপনা"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 টেক্সট ডকুমেন্ট"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 মাস্টার ডকুমেন্ট"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML নথি"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "ওপেন-ডকুমেন্ট ডাটাবেস"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "ওপেন-ডকুমেন্ট অঙ্কন"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "ওপেন-ডকুমেন্ট সূত্র"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "ওপেন-ডকুমেন্ট মাস্টার নথি"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "ওপেন-ডকুমেন্ট উপস্থাপনা"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "ওপেন-ডকুমেন্ট স্প্রেডশীট"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "ওপেন-ডকুমেন্ট লেখা"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "ওপেন-ডকুমেন্ট স্প্রেডশীট ফর্মা"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "ওপেন-ডকুমেন্ট অঙ্কন ফর্মা"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "ওপেন-ডকুমেন্ট উপস্থাপনা ফর্মা"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "ওপেন-ডকুমেন্ট লেখা ফর্মা"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME বর্ধিতাংশ"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/bn-IN/svx/messages.po b/source/bn-IN/svx/messages.po
index 1f6ed9d4076..6d81b32d35d 100644
--- a/source/bn-IN/svx/messages.po
+++ b/source/bn-IN/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Bengali (India) <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/bn_IN/>\n"
@@ -16607,12 +16607,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
-#, fuzzy
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "মন্তব্য"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/bn-IN/sw/messages.po b/source/bn-IN/sw/messages.po
index 379c4cf9d7a..e2f1778ab9b 100644
--- a/source/bn-IN/sw/messages.po
+++ b/source/bn-IN/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17878,86 +17878,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "সাধারণ"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "শিরোনাম"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr ""
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr ""
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr ""
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "অপশন"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20578,295 +20584,295 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "যদি একটি প্রধান দর্শন খোলা থাকে তবে প্রধান দর্শন এবং সাধারণ দর্শনের মাঝে সুইচ করুন।"
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "শীর্ষচরণ"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "পাদচরণ"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "বর্তমান কার্সার অবস্থানে স্মরণলিপি নির্ধারণ করতে এখানে ক্লিক করুন। আপনি সর্বোচ্চ পাঁচটি স্মরনলিপি দিতে পারেন। একটি স্মরণলিপিতে যেতে, ন্যাভিগেশন আইকনে ক্লিক করুন, ন্যাভিগেশন উইন্ডোতে স্মরণলিপি আইকনে ক্লিক করুন, অতঃপর পূর্ববর্তী বা পরবর্তী বোতামে ক্লিক করুন।"
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
#, fuzzy
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "স্তর উন্নীত করুন "
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
#, fuzzy
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "স্তর অবনত করুন"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
#, fuzzy
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "টেনে আনার মোড"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "নথি"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
#, fuzzy
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "সক্রিয় উইন্ডো"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "যদি একটি প্রধান দর্শন খোলা থাকে তবে প্রধান দর্শন এবং সাধারণ দর্শনের মাঝে সুইচ করুন।"
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "সম্পাদনা"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "হালনাগাদ"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "সন্নিবেশ"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
#, fuzzy
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "উপরে উঠানো"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
#, fuzzy
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "নীচে নামানো"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/bn/helpcontent2/source/text/scalc/01.po b/source/bn/helpcontent2/source/text/scalc/01.po
index 152ea9c61a4..6da66fa128e 100644
--- a/source/bn/helpcontent2/source/text/scalc/01.po
+++ b/source/bn/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2019-08-08 17:28+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr ""
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/sdraw.po b/source/bn/helpcontent2/source/text/sdraw.po
index 0ee7f9dcae8..805bbdd5bcb 100644
--- a/source/bn/helpcontent2/source/text/sdraw.po
+++ b/source/bn/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 10:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/shared/00.po b/source/bn/helpcontent2/source/text/shared/00.po
index f924e950b37..fc1e8f17988 100644
--- a/source/bn/helpcontent2/source/text/shared/00.po
+++ b/source/bn/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-14 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "ক্রেতা, ক্রয়ের পরিমাণ এবং চালান সারণি সম্বলিত ডাটাবেসের মাধ্যমে রিলেশনাল ডাটাবেসের ভাল উদাহরণ হতে পারে। চালন সারণিতে, কোন প্রকৃত ক্রেতা অথবা ক্রয় সম্পর্কিত ডাটা থাকেনা; সারণিটিতে শুধুমাত্র রিলেশনাল লিঙ্কের রেফারেন্স, অথবা একটি সংশ্লিষ্ট ক্রেতা এবং ক্রয় সম্পর্কিত সারণি ক্ষেত্রের মধ্যে রিলেশন থাকে (যেমন, ক্রেতা সারণি থেকে ক্রেতার ID ক্ষেত্র )।"
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>register-true; definition</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "রেজিস্টার-ট্রু"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/bn/helpcontent2/source/text/shared/01.po b/source/bn/helpcontent2/source/text/shared/01.po
index 48878c703ec..503e3600fe9 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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr ""
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr ""
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr ""
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,13 +9376,13 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr ""
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
msgstr ""
#. 3Lq2G
@@ -9430,13 +9412,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr ""
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
msgstr ""
#. nRB3E
@@ -9466,13 +9448,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr ""
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
msgstr ""
#. F4J5u
@@ -9601,13 +9583,13 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr ""
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
msgstr ""
#. ijR7M
@@ -9709,13 +9691,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr ""
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
msgstr ""
#. ADEyJ
@@ -9745,13 +9727,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
msgstr ""
#. GqEUL
@@ -9781,13 +9763,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
msgstr ""
#. DLEGF
diff --git a/source/bn/helpcontent2/source/text/shared/02.po b/source/bn/helpcontent2/source/text/shared/02.po
index d8328ea7d3d..6fe52d3e8c4 100644
--- a/source/bn/helpcontent2/source/text/shared/02.po
+++ b/source/bn/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 13:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">ইনডেন্ট কমানো</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11059,14 +11059,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">আইকন</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr ""
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">ইনডেন্ট বাড়ানো</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11131,14 +11131,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">আইকন</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/bn/helpcontent2/source/text/shared/optionen.po b/source/bn/helpcontent2/source/text/shared/optionen.po
index 703a91e4456..1b9b1683911 100644
--- a/source/bn/helpcontent2/source/text/shared/optionen.po
+++ b/source/bn/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-08-08 17:29+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11860,32 +11860,32 @@ msgctxt ""
msgid "Snap"
msgstr "স্ন্যাপ"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "স্ন্যাপ রেখায়"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Guides\"><emph>সহায়িকাতে ছবি নেয়া</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Guides\"><emph>সহায়িকাতে ছবি নেয়া</emph></link></caseinline><defaultinline><emph>সহায়িকাতে ছবি নেয়া</emph></defaultinline></switchinline> আইকন ব্যবহার করে এই বৈশিষ্ট্যটি নির্ধারণ করতে পারেন, যা উপস্থাপনা অথবা আঁকার বস্তুতে <emph>অপশন</emph> বারে সহজেই খুঁজে পাওয়া যায়।"
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr ""
#. eUCCJ
#: 01070300.xhp
diff --git a/source/bn/helpcontent2/source/text/simpress/02.po b/source/bn/helpcontent2/source/text/simpress/02.po
index 87095c61b1f..d0eab601044 100644
--- a/source/bn/helpcontent2/source/text/simpress/02.po
+++ b/source/bn/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 10:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5695,40 +5695,40 @@ msgctxt ""
msgid "Exit all groups"
msgstr "সকল গ্রুপ ত্যাগ করুন"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Guides\">নির্দেশাবলীর স্ন্যাপ</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">আইকন</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
#. oXWsX
diff --git a/source/bn/helpcontent2/source/text/swriter.po b/source/bn/helpcontent2/source/text/swriter.po
index 488af7bd741..32781b5d8fd 100644
--- a/source/bn/helpcontent2/source/text/swriter.po
+++ b/source/bn/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-10-21 20:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "বাম-থেকে-ডানে"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">ডানের আইকনের বামে</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "ডান-থেকে-বামে"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">বামের আইকনের ডানে</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/bn/helpcontent2/source/text/swriter/01.po b/source/bn/helpcontent2/source/text/swriter/01.po
index 5fc31eb2152..3b93a106988 100644
--- a/source/bn/helpcontent2/source/text/swriter/01.po
+++ b/source/bn/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-10-21 20:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "ন্যাভিগেটর"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\"><emph>বার্তা একত্রিতকরণ প্রাপক</emph> ডায়ালগ খোলা হয়।</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/swriter/guide.po b/source/bn/helpcontent2/source/text/swriter/guide.po
index e5af129fab7..27366cd0296 100644
--- a/source/bn/helpcontent2/source/text/swriter/guide.po
+++ b/source/bn/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-12 13:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7792,50 +7792,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">অনুচ্ছেদ ইনডেন্ট করা হচ্ছে</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr ""
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "আপনি বর্তমান অনুচ্ছেদ, অথবা সন নির্বাচিত অনুচ্ছেদ, অথবা একটি অনুচ্ছেদ শৈলীর জন্য ইনডেন্ট পরিবর্তন করতে পারেন।"
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "আপনি বর্তমান অনুচ্ছেদ, অথবা সন নির্বাচিত অনুচ্ছেদ, অথবা একটি অনুচ্ছেদ শৈলীর জন্য ইনডেন্ট পরিবর্তন করতে পারেন।"
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "বর্তমান অনুচ্ছেদ অথবা সব নির্বাচিত অনুচ্ছেদের ইনডেন্ট পরিবর্তন করার জন্য <item type=\"menuitem\">বিন্যাস - অনুচ্ছেদ - ইনডেন্ট & ফাঁকা স্থান</item> পছন্দ করুন। আপনি মাপকাঠি ব্যবহার করেও <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">ইনডেন্ট নির্ধারণ করতে পারেন</link>।"
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "আপনি<link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">মাপকাঠি ব্যবহার করে ইনডেন্ট নির্ধারণ করতে পারেন</link>। মাপকাঠি প্রদর্শন করতে, <item type=\"menuitem\">দর্শন - মাপকাঠি</item>পছন্দ করুন।"
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "বর্তমান অনুচ্ছেদ অথবা সব নির্বাচিত অনুচ্ছেদের ইনডেন্ট পরিবর্তন করার জন্য <item type=\"menuitem\">বিন্যাস - অনুচ্ছেদ - ইনডেন্ট & ফাঁকা স্থান</item> পছন্দ করুন। আপনি মাপকাঠি ব্যবহার করেও <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">ইনডেন্ট নির্ধারণ করতে পারেন</link>।"
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "আপনি<link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">মাপকাঠি ব্যবহার করে ইনডেন্ট নির্ধারণ করতে পারেন</link>। মাপকাঠি প্রদর্শন করতে, <item type=\"menuitem\">দর্শন - মাপকাঠি</item>পছন্দ করুন।"
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "একটি অনুচ্ছেদে ডান-ক্লিক করুন এবং একই অনুচ্ছেদ শৈলীর সব অনুচ্ছেদের ইনডেন্ট পরিবর্তন করতে <item type=\"menuitem\">অনুচ্ছেদ শৈলী সম্পাদনা করুন - ইনডেন্ট & স্থান ফাঁকা করা</item> পছন্দ করুন।"
+msgid "Positioning indents"
+msgstr ""
#. qUxKq
#: indenting.xhp
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "বাম এবং ডান মার্জিন অনুসারে ইনডেন্ট গণনা করা হয়। যদি আপনি অনুচ্ছেদটি পৃষ্ঠা কিনারার বেতরে সম্প্রসারিত করতে চান, একটি ঋনাত্মক সংখ্যা সন্নিবেশ করান।"
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr ""
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "একটি হ্যাংগিং ইনডেন্টের জন্য, <item type=\"menuitem\">পাঠ্যের পূর্বে</item> এর জন্য একটি ধনাত্মক মান এবং <item type=\"menuitem\">প্রথম রেখা</item> এর জন্য একটি ঋনাত্মক মান দিন।"
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,14 +10294,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "সারণিতে নম্বর শনাক্তকরণ চালু অথবা বন্ধ করা হচ্ছে"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10267,13 +10330,22 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "নিম্নের যেকোনো একটি করুন:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
msgstr ""
#. hDANA
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr ""
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12211,6 +12292,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "যখন আপনি একটি নথিই তৈরি করবেন যা আপনি একটি বিবরণপত্র হিসেবে মুদ্রণ করতে চান, পৃষ্ঠার জন্য প্রতিকৃতি প্রমান ব্যবহার করুন। নথিটি মুদ্রণ করার সময় Writer বিবরণপত্র বিন্যাস প্রয়োগ করে।"
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12256,49 +12355,49 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "যদি আপনার মুদ্রণ যন্ত্রের দ্বিগুণ মুদ্রণ করে, এবং বিবরণপত্র সর্বদা অনুভূমিক ধরনে মুদ্রণ করে, আপনার মুদ্রণ বিন্যাস ডায়ালগে \"ডুপ্লেক্স - সংক্ষিপ্ত কিনারা\" বিন্যাস ব্যবহার করা প্রয়োজন।"
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
+msgid "Return to <emph>Print</emph> dialog."
msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "<emph>ঠিক আছে</emph> ক্লিক করুন।"
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
msgstr ""
#. FgeK4
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr ""
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,32 +12724,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr ""
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
+msgid "Choose <menuitem>File - Print</menuitem>"
msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "নিম্নের যেকোনো একটি করুন:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/bn/sc/messages.po b/source/bn/sc/messages.po
index ada412cdb66..2e23b185e12 100644
--- a/source/bn/sc/messages.po
+++ b/source/bn/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29440,38 +29440,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr ""
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "সুনির্দিষ্ট করুন যে মুদ্রণের জন্য মুদ্রক ম্যাট্রিক্স প্রয়োগ করা হয় এবং পর্দার প্রদর্শন বিন্যাসের জন্যও করা হয়।"
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr ""
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr ""
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr ""
diff --git a/source/bn/sfx2/messages.po b/source/bn/sfx2/messages.po
index 4c815a0eb98..8bb7e3e64f3 100644
--- a/source/bn/sfx2/messages.po
+++ b/source/bn/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-10-21 19:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,288 +1638,251 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "ডক"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "আনডক"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "আরও অপশন (~O)"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr ""
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "স্বনির্ধারিত অ্যানিমেশন"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr ""
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr ""
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "অপসারণ করুন"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4257,6 +4220,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "অপসারণ..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/bn/starmath/messages.po b/source/bn/starmath/messages.po
index 17aaef1e606..b664ecfc585 100644
--- a/source/bn/starmath/messages.po
+++ b/source/bn/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-05-08 13:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -425,2101 +425,2234 @@ msgid "or"
msgstr "অথবা"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+ চিহ্ন"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr " - চিহ্ন"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+ - চিহ্ন"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr " - + চিহ্ন"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "বুলিয়ান NOT"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "যোগ +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "বিয়োগ -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
#, fuzzy
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "গুণ (ডট)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "গুণ (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "গুণ (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "ভাগ (স্ল্যাশ)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "ভাগ (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "ভাগ (ভগ্নাংশ)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "বুলিয়ান AND"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "বুলিয়ান OR"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "সমান"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "সমান নয়"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "অপেক্ষাকৃত ছোট"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "অপেক্ষাকৃত বড়"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "অপেক্ষাকৃত ছোট বা সমান"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "অপেক্ষাকৃত বড় বা সমান"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "অপেক্ষাকৃত ছোট বা সমান"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "অপেক্ষাকৃত বড় বা সমান"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr ""
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
#, fuzzy
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "অপেক্ষাকৃত বড়"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "এর সর্বসম"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "প্রায় সমান"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "একই রকম"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "একই রকম বা সমান"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "সমানুপাতিক"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "এর সাথে সমকৌণিক"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "এর সাথে সমান্তরাল"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "দিকে"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "এতে আছে"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "এতে নেই"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "বিদ্যমান"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "সংযোগ"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "ছেদ"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "পার্থক্য"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "উপসেট"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "উপসেট অথবা সমান"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "সুপারসেট"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "সুপারসেট অথবা সমান"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "উপসেট নয়"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "উপসেট অথবা সমান নয়"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "সুপারসেট নয়"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "সুপারসেট নয় অথবা সমান"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "পরম মান"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "উৎপাদক"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "বর্গমূল"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N-তম মূল"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "সূচকীয় ফাংশন"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "সূচকীয় ফাংশন"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "সাধারণ লগারিদম"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "লগারিদম"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "সাইন"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "কোসাইন"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "ট্যানজেন্ট"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "কোট্যানজেন্ট"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "আর্কসাইন"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "আর্ককোসাইন"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "আর্কট্যানজেন্ট"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "আর্ককোট্যানজেন্ট"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "অধিবৃত্তিক সাইন"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "অধিবৃত্তিক কোসাইন"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "অধিবৃত্তিক ট্যানজেন্ট"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "অধিবৃত্তিক কোট্যানজেন্ট"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "এলাকা অধিবৃত্তিক সাইন"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "এলাকা অধিবৃত্তিক কোসাইন"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "এলাকা অধিবৃত্তিক ট্যানজেন্ট"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "এলাকা অধিবৃত্তিক কোট্যানজেন্ট"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "যোগফল"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
#, fuzzy
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "নিচের নিম্নলেখ"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
#, fuzzy
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "উপরের ঊর্ধ্বলিপি"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr ""
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "গুণফল"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
#, fuzzy
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "নিচের নিম্নলেখ"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr ""
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr ""
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "উপ-গুণফল"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
#, fuzzy
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "নিচের নিম্নলেখ"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr ""
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr ""
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "লাইম"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
#, fuzzy
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "নিচের নিম্নলেখ"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
#, fuzzy
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "উপরের ঊর্ধ্বলিপি"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr ""
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "বিদ্যমান আছে"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "বিদ্যমান আছে"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
#, fuzzy
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "সকলের জন্য"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "যোগজ"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "দ্বি-যোগজ"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "ত্রি-যোগজ"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "কার্ভ ইন্টিগ্রাল"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "ডবল-কার্ভ যোগজ "
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "ট্রিপল-কার্ভ যোগজ"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "একিউট অ্যাকসেন্ট"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "উপরের লাইন"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "ব্রীভ"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "উল্টানো সারকামফ্লেক্স"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "বৃত্ত"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "ডট"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "ডবল ডট"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "তিনটি ডট"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "গ্রেভ অ্যাকসেন্ট"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "সারকামফ্লেক্স"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "টিল্ড"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "ভেক্টর তীরচিহ্ন"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "নিচের রেখা"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "উপরের রেখা"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "মধ্য রেখা"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "স্বচ্ছ"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "গাঢ় ফন্ট"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "তির্যক ফন্ট"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "আকার পরিবর্তন"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "ফন্ট পরিবর্তন"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr ""
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr ""
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr ""
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr ""
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr ""
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
#, fuzzy
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "রঙের ট্যাব"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr ""
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "গ্রুপ বন্ধনী"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "বৃত্তাকার বন্ধনী"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "বর্গাকার বন্ধনী"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "ডবল বর্গাকার বন্ধনী"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "বক্রবন্ধনী"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "কৌণিক বন্ধনী"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr ""
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "একক লাইন"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "ডবল লাইন"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "অপারেটর বন্ধনী"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "বৃত্তাকার বন্ধনী (আকার পরিবর্তনযোগ্য)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "বর্গাকার বন্ধনী (আকার পরিবর্তনযোগ্য)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "ডবল বর্গাকার বন্ধনী (আকার পরিবর্তনযোগ্য)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "বক্রবন্ধনী (আকার পরিবর্তনযোগ্য)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "কৌণিক বন্ধনী (আকার পরিবর্তনযোগ্য)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "একক লাইন (আকার পরিবর্তনযোগ্য)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "ডবল লাইন (আকার পরিবর্তনযোগ্য)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "অপারেটর বন্ধনী (আকার পরিবর্তনযোগ্য)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "উপরের বক্রবন্ধনী (আকার পরিবর্তনযোগ্য)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "নিচের বক্রবন্ধনী (আকার পরিবর্তনযোগ্য)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "ডান নিম্নলেখ "
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "ঘাত"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "বাম নিম্নলেখ"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "বাম ঊর্ধ্বলিপি"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "নিচের নিম্নলেখ"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "উপরের ঊর্ধ্বলিপি"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "কম ফাঁকা"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
#, fuzzy
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "ফাঁকা"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "নতুন লাইন"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "উল্লম্ব স্ট্যাক (২টি উপাদান)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "উল্লম্ব স্ট্যাক"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "ম্যাট্রিক্স স্ট্যাক"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "বামে সাজান"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "কেন্দ্রে সাজান"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "ডানে সাজান"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Aleph"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "ফাঁকা সেট"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "বাস্তব অংশ"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "কাল্পনিক অংশ"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
#, fuzzy
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "অসীম"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "আংশিক"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "ন্যাবলা"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "মাঝে ডট"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "উপরের দিকে ডট"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
#, fuzzy
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "নিচের দিকে ডট"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "নিচে ডট"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "উল্লম্বভাবে ডট দিন"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "কনক্যাটেনেট"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
#, fuzzy
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "ভাগ (স্ল্যাশ)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "ভাগ করে"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "ভাগ করে না"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "বামমূখী ডবল তীরচিহ্ন"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "বাম এবং ডানমূখী ডবল তীরচিহ্ন "
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "ডানমূখী ডবল তীরচিহ্ন "
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "স্বাভাবিক সংখ্যার সেট"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "পূর্ণ সংখ্যার সেট"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "মূলদ সংখ্যার সেট"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "বাস্তব সংখ্যার সেট"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "জটিল সংখ্যার সেট"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "বড় সারকামফ্লেক্স"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "বড় টিল্ড"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "বড় ভেক্টর তীর"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h বার"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "ল্যামডা বার"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "বাম তীর"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "ডান তীর"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "ঊর্ধ্ব তীর"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "নিম্ন তীর"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr ""
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr ""
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr ""
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr ""
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr ""
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr ""
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr ""
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr ""
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr ""
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "ইউনারী/বাইনারি অপারেটর"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "অন্বয়"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
#, fuzzy
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "সেট অপারেশন"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "ফাংশন"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
#, fuzzy
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "অপারেটর"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
#, fuzzy
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "বৈশিষ্ট্য"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
#, fuzzy
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "বন্ধনী"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
#, fuzzy
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "বিন্যাস"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "অন্যান্য"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
#, fuzzy
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "উদাহরণ"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "আদর্শ"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "তির্যক"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "গাঢ়"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "কালো"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "নীল"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "সবুজ"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr ""
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "ধূসর"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "সময়"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "হলুদ"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "আড়াল"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "আকার"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "ফন্ট"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "বাম"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "কেন্দ্র"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "ডান"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "কমান্ড"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "সূত্র"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "নথি সংরক্ষণ করা হচ্ছে..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION সূত্র"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "অপ্রত্যাশিত অক্ষর"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' প্রত্যাশিত"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' প্রত্যাশিত"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' প্রত্যাশিত"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' প্রত্যাশিত"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' প্রত্যাশিত"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "রঙ প্রয়োজন"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' প্রত্যাশিত"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "বিষয়বস্তু"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "শিরোনাম"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "ফর্মূলা টেক্সট (~F)"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "সীমানা"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "আকার"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "আদি আকার"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "পৃষ্ঠার সাথে মানানসই করা হবে (~F)"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
diff --git a/source/bn/svtools/messages.po b/source/bn/svtools/messages.po
index ed50bfc1f45..91c81afeaaa 100644
--- a/source/bn/svtools/messages.po
+++ b/source/bn/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "পূর্বাবস্থায় ফিরিয়ে আনা:"
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "পুনরাবৃত্তি: (~R)"
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "অবিন্যাসিত লেখ"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx অভ্যন্তরীণ সংযোগের অবস্থার তথ্য"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "নেটস্কেপ বুকমার্ক"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "স্টার সার্ভার বিন্যাস"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "স্টার অবজেক্ট বিন্যাস"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "অ্যাপলেট অবজেক্ট"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "প্লাগ-ইন অবজেক্ট"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "স্টার রাইটার ৩.০ অবজেক্ট"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "স্টার রাইটার ৪.০ অবজেক্ট"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "স্টার রাইটার ৫.০ অবজেক্ট"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "স্টার রাইটার/ওয়েব ৪.০ অবজেক্ট"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "স্টার রাইটার/ওয়েব ৫.০ অবজেক্ট"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "স্টার রাইটার/মাস্টার ৪.০ অবজেক্ট"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "স্টার রাইটার/মাস্টার ৫.০ অবজেক্ট"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "স্টার ড্র অবজেক্ট"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "স্টার ড্র ৪.০ অবজেক্ট"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "স্টার-ইমপ্রেস ৫.০ অবজেক্ট"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "স্টার ড্র ৫.০ অবজেক্ট"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "স্টার ক্যালক অবজেক্ট"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "স্টার-ক্যালক ৪.০ অবজেক্ট"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "স্টার-ক্যালক ৫.০ অবজেক্ট"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "স্টার-চার্ট অবজেক্ট"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "স্টার-চার্ট ৪.০ অবজেক্ট"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "স্টার-চার্ট ৫.০ অবজেক্ট"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "স্টার-ইমেজ অবজেক্ট"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "স্টার-ইমেজ ৪.০ অবজেক্ট"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "স্টার-ইমেজ ৫.০ অবজেক্ট"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "স্টার ম্যাথ অবজেক্ট"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "স্টার ম্যাথ ৪.০ অবজেক্ট"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "স্টার ম্যাথ ৫.০ অবজেক্ট"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "স্টার-অবজেক্ট অঙ্কন অবজেক্ট"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "মাইক্রোসফট ওয়ার্ড অবজেক্ট"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "স্টার-ফ্রেম-সেট অবজেক্ট"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "অফিস নথির অবজেক্ট"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "নোট নথির তথ্য"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx নথি"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "স্টার-চার্ট ৫.০ অবজেক্ট"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "গ্রাফিক বস্তু"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "উইন্ডোজ মেটাফাইল"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "ডাটা উৎসের অবজেক্ট"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "ডাটা উৎসের টেবিল"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL কোয়েরি"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "লিংক"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "মন্তব্যহীন HTML ফরম্যাট"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "% অবজেক্ট সন্নিবেশ করা যাবে না।"
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "% ফাইলের অবজেক্ট সন্নিবেশ করা যায়নি।"
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "পরবর্তী অবজেক্ট"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "অজানা উৎস"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "বাইট"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "কিলোবাইট"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "মেগাবাইট"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "গিগাবাইট"
@@ -501,1252 +501,1252 @@ msgstr "গিগাবাইট"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "আলফানিউমেরিক"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "স্বাভাবিক"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "অক্ষর সমষ্টি"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "অভিধান"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "পিনইন"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "কলমের আঁক"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "মৌলিক"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "ইউনিকোড"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "জুইন"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "ফোন বুক"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "ফোনেটিক (প্রথমে আলফানিউমেরিক)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "ফোনেটিক (শেষে আলফানিউমেরিক)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "আলফানিউমেরিক"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "অভিধান"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "পিনইন"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "মৌলিক"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "কলমের আঁক"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "জুইন"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "ফোনেটিক (প্রথমে আলফানিউমেরিক, সিলাবল ভিত্তিক গ্রুপ)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "ফোনেটিক (প্রথমে আলফানিউমেরিক , ব্যঞ্জনবর্ণ ভিত্তিক গ্রুপ)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "ফোনেটিক (শেষে আলফানিউমেরিক, সিলাবল ভিত্তিক গ্রুপ)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "ফোনেটিক (শেষে আলফানিউমেরিক, ব্যঞ্জনবর্ণ ভিত্তিক গ্রুপ)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "সামান্য"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "সামান্য তির্যক"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "স্বাভাবিক"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "তির্যক"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "গাঢ়"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "গাঢ় তির্যক"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "কালো"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "কালো তির্যক"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "বই"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "সংক্ষিপ্ত"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "অর্ধ-গাঢ়"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "মুদ্রণযন্ত্র ও পর্দায় একই ফন্ট ব্যবহৃত হবে।"
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "এটি একটি মুদ্রণযন্ত্রের ফন্ট। পর্দার দেখতে ভিন্ন হতে পারে।"
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "এই ফন্ট শৈলী সিমিউলেট করা হবে বা কাছাকাছি সমতুল্য শৈলী ব্যবহার করা হবে।"
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "এই ফন্টটি ইনস্টল করা হয়নি। কাছাকাছি বিদ্যমান ফন্ট ব্যবহৃত হবে।"
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "প্রধান পাতায় স্থানান্তর"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "বামে সরানো"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "ডানে সরানো"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "শেষে স্থানান্তর"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "যোগ"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "অনুভূমিক লাল"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "উল্লম্ব মাপকাঠি"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "১ বিট থ্রেশোল্ড"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "১ বিট ডিথারকৃত"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "৪ বিট গ্রেস্কেল"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
#, fuzzy
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "৪ বিট রং"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "৮ বিট গ্রেস্কেল"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
#, fuzzy
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "৮ বিট রং"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "২৪ বিট ট্রু রং"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "ফাইলের আকার %1 কিবা। "
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "মূল্য"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "সাজানো"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "বিরতি"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "প্রাথমিকীকরণ করছে..."
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "অপেক্ষমাণ"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "ত্রুটি"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "পৃষ্ঠা মুছে ফেলুন (~e)"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "অপর্যাপ্ত মেমরি।"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "পূর্বনির্ধারিত মুদ্রণযন্ত্র"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
#, fuzzy
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "ওয়ার্ড নথি"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<কোনটি না>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "কোম্পানি"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "বিভাগ"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "নামের প্রথমাংশ"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "নামের শেষাংশ"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "রাস্তা"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "দেশ"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "জিপ কোড"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "শহর"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "শিরোনাম"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "অবস্থান"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "ঠিকানা ফরম"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "আদ্যক্ষর"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "প্রসংসামূলক সমাপ্তি"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "টেলিফোন: বাসা"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "টেলিফোন: কর্মস্থল"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "নোট"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "ব্যবহারকারী ১"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "ব্যবহারকারী ২"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "ব্যবহারকারী ৩"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "ব্যবহারকারী ৪"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "রাষ্ট্র"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "টেলিফোন: অফিস"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "পেজার"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "মোবাইল"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "টেলিফোন: অন্যান্য"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "বর্ষপঞ্জী"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "আমন্ত্রণ"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE প্রয়োজন"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE নির্বাচন করুন"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE ত্রুটিপূর্ণ"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "সোর্স কোড"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "বুকমার্ক ফাইল"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "গ্রাফিক্স"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "কনফিগারেশন ফাইল"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "অ্যাপ্লিকেশন"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "ডাটাবেস টেবিল"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "সিস্টেম ফাইল"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "এমএস ওয়ার্ড নথি"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "সহায়তা ফাইল"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML নথি"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "আর্কাইভ ফাইল"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "লগ ফাইল"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice ডাটাবেস"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 মাস্টার নথি"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice অঙ্কন"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "লেখা ফাইল"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "লিংক"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 ফর্মা"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "এমএস Excel নথি"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "এমএস Excel ফর্মা"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "ব্যাচ ফাইল"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ফাইল"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ফোল্ডার"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "লেখা নথি"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "স্প্রেডশীট"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "উপস্থাপনা"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "অঙ্কন"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML নথি"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "মাস্টার নথি"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "সূত্র"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "ডাটাবেস "
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "স্থানীয় ড্রাইভ"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "ডিস্ক ড্রাইভ"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM ড্রাইভ"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "নেটওয়ার্ক সংযোগ"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "এমএস PowerPoint নথি"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "এমএস PowerPoint ফর্মা"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "এমএস PowerPoint প্রদর্শনী"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML নথি"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "ওপেন-ডকুমেন্ট ডাটাবেস"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "ওপেন-ডকুমেন্ট অঙ্কন"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "ওপেন-ডকুমেন্ট সূত্র"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "ওপেন-ডকুমেন্ট মাস্টার নথি"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "ওপেন-ডকুমেন্ট উপস্থাপনা"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "ওপেন-ডকুমেন্ট স্প্রেডশীট"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "ওপেন-ডকুমেন্ট লেখা"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "ওপেন-ডকুমেন্ট স্প্রেডশীট ফর্মা"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "ওপেন-ডকুমেন্ট অঙ্কন ফর্মা"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "ওপেন-ডকুমেন্ট উপস্থাপনা ফর্মা"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "ওপেন-ডকুমেন্ট লেখা ফর্মা"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME বর্ধিতাংশ"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/bn/svx/messages.po b/source/bn/svx/messages.po
index 1b9212977ba..c83590b95ac 100644
--- a/source/bn/svx/messages.po
+++ b/source/bn/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Bengali <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/bn/>\n"
@@ -16710,12 +16710,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
-#, fuzzy
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "মন্তব্য"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/bn/sw/messages.po b/source/bn/sw/messages.po
index 69cdf25ad6d..d5ee19887f7 100644
--- a/source/bn/sw/messages.po
+++ b/source/bn/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18033,87 +18033,93 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "সাধারণ"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
#, fuzzy
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "শিরোনাম"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr ""
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr ""
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr ""
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "অপশন"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20738,297 +20744,297 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "যদি একটি প্রধান দর্শন খোলা থাকে তবে প্রধান দর্শন এবং সাধারণ দর্শনের মাঝে সুইচ করুন।"
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "শীর্ষচরণ"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "পাদচরণ"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "বর্তমান কার্সার অবস্থানে স্মরণলিপি নির্ধারণ করতে এখানে ক্লিক করুন। আপনি সর্বোচ্চ পাঁচটি স্মরনলিপি দিতে পারেন। একটি স্মরণলিপিতে যেতে, ন্যাভিগেশন আইকনে ক্লিক করুন, ন্যাভিগেশন উইন্ডোতে স্মরণলিপি আইকনে ক্লিক করুন, অতঃপর পূর্ববর্তী বা পরবর্তী বোতামে ক্লিক করুন।"
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
#, fuzzy
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "স্তর উন্নীত করুন "
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
#, fuzzy
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "স্তর অবনত করুন"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
#, fuzzy
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "টেনে আনার মোড"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "নথি"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
#, fuzzy
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "সক্রিয় উইন্ডো"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "যদি একটি প্রধান দর্শন খোলা থাকে তবে প্রধান দর্শন এবং সাধারণ দর্শনের মাঝে সুইচ করুন।"
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "সম্পাদনা"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
#, fuzzy
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "হালনাগাদ"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
#, fuzzy
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "সংযোজন"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
#, fuzzy
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "উপরে উঠানো হবে"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
#, fuzzy
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "নিচে নামানো হবে"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/bo/helpcontent2/source/text/scalc/01.po b/source/bo/helpcontent2/source/text/scalc/01.po
index a627f0cff37..85dd4a0d246 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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2019-08-09 08:33+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr ""
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/sdraw.po b/source/bo/helpcontent2/source/text/sdraw.po
index 2e9ce720730..86c5e1561ac 100644
--- a/source/bo/helpcontent2/source/text/sdraw.po
+++ b/source/bo/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 10:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/shared/00.po b/source/bo/helpcontent2/source/text/shared/00.po
index 893647c09f9..93365b7b46b 100644
--- a/source/bo/helpcontent2/source/text/shared/00.po
+++ b/source/bo/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "དཔེ་བཞག་ན་ མཁོ་མཁན་རེའུ་མིག་དང་ཚོང་ཟོག་རེའུ་མིག་ ཚོང་ཟོག་སྤྲད་ཐོའི་རེའུ་མིག་བཅས་ཀྱི་ཚོང་ཟོག་གཞི་གྲངས་མཛོད་ནི་ཚབ་མཚོན་གྱི་འབྲེལ་ཡོད་གཞི་གྲངས་མཛོད་ཡིན་ ཚོང་ཟོག་སྤྲད་ཐོའི་རེའུ་མིག་ནང་ངེས་ཡོད་ཀྱི་མཁོ་མཁན་གཞི་གྲངས་སོགས་ཚོང་ཟོག་གཞི་གྲངས་ཚད་མེད་པར་འབྲེལ་བརྒྱུད་ཐག་སྦྲེལལས་གྲུབ་པའི་(ཡང་ན་འབྲེལ་བ་) མཁོ་མཁན་རེའུ་མིག་དང་ཚོང་ཟོག་རེའུ་མིག་གི་དུམ་བུའི་འདྲེན་སྤྱོད་ཡིན་(དཔེར་ན་ མཁོ་མཁན་རེའུ་མིག་ནང་གི་མཁོ་མཁན་ ID ཡིག་དུམ་)"
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>དྲང་ལྡོག་ཤོག་ལྷེའི་ཕྲེང་རྒྱང་མཚུངས་; མཚན་འཇོག་</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "དྲང་ལྡོག་ཤོག་ལྷེའི་ཕྲེང་རྒྱང་མཚུངས།"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/bo/helpcontent2/source/text/shared/01.po b/source/bo/helpcontent2/source/text/shared/01.po
index 36fa077c329..28ea18355f1 100644
--- a/source/bo/helpcontent2/source/text/shared/01.po
+++ b/source/bo/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr ""
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr ""
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr ""
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,13 +9376,13 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr ""
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
msgstr ""
#. 3Lq2G
@@ -9430,13 +9412,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr ""
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
msgstr ""
#. nRB3E
@@ -9466,13 +9448,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr ""
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
msgstr ""
#. F4J5u
@@ -9601,13 +9583,13 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr ""
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
msgstr ""
#. ijR7M
@@ -9709,13 +9691,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr ""
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
msgstr ""
#. ADEyJ
@@ -9745,13 +9727,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
msgstr ""
#. GqEUL
@@ -9781,13 +9763,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
msgstr ""
#. DLEGF
diff --git a/source/bo/helpcontent2/source/text/shared/02.po b/source/bo/helpcontent2/source/text/shared/02.po
index 2b5c78aec1e..4b59f2068d8 100644
--- a/source/bo/helpcontent2/source/text/shared/02.po
+++ b/source/bo/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 13:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"ནང་སྐུམ་ཚད་ཉུང་དུ་གཏོང་བ།\">ནང་སྐུམ་ཚད་ཉུང་དུ་གཏོང་བ།</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11059,14 +11059,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">རིས་རྟགས།</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr ""
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\" ནང་སྐུམ་ཚད་ཆེར་གཏོང་བ།\"> ནང་སྐུམ་ཚད་ཆེར་གཏོང་བ།</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11131,14 +11131,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149388\" xml-lang=\"bo\">རིས་རྟགས།</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/bo/helpcontent2/source/text/shared/optionen.po b/source/bo/helpcontent2/source/text/shared/optionen.po
index 0dd88954b3f..cfeab897bae 100644
--- a/source/bo/helpcontent2/source/text/shared/optionen.po
+++ b/source/bo/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11860,32 +11860,32 @@ msgctxt ""
msgid "Snap"
msgstr "སྙོམས་གཤིབ།"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "གནས་སྟངས་ཐིག"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "ད་དུང་ཡང་<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"གནས་སྟངས་ཐིག་གི་སྙོམས་གཤིབ།\"><emph>\"གནས་སྟངས་ཐིག་གི་སྙོམས་གཤིབ།\"</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"གནས་སྟངས་ཐིག་གི་སྙོམས་གཤིབ།\"><emph>\"གནས་སྟངས་ཐིག་གི་སྙོམས་གཤིབ།\"</emph></link></caseinline><defaultinline><emph>\"གནས་སྟངས་ཐིག་གི་སྙོམས་གཤིབ།\"</emph></defaultinline></switchinline>བེད་སྤྱོད་པ་དང་ བཟོ་སྒྲིག་འདི་རིས་རྟགས་ཐོག་ནས་མཚན་ཉིད་འཇོག་དགོས་ རིས་རྟགས་འདི་ནི་གསལ་སྟོན་ཡིག་ཟིན་ཡིག་གམ་རིས་དབྱིབས་ཡིག་ཚགས་<emph>[འདེམས་གཞིའི་ཚང་།]</emph>ནང་ལས་འཚོལ་ཐུབ།"
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr ""
#. eUCCJ
#: 01070300.xhp
diff --git a/source/bo/helpcontent2/source/text/simpress/02.po b/source/bo/helpcontent2/source/text/simpress/02.po
index d1acb675cc0..eb718cac80e 100644
--- a/source/bo/helpcontent2/source/text/simpress/02.po
+++ b/source/bo/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 10:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5695,40 +5695,40 @@ msgctxt ""
msgid "Exit all groups"
msgstr "ཚོ་སྒྲིག་ཚང་མ་ཕྱིར་འཐེན་པ་"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\" གནས་ཚད་ཐིག་དང་སྙོམ་\">གནས་ཚད་ཐིག་དང་སྙོམ་</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154254\" src=\"cmd/sc_outlineformat.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3154254\">རིས་འགོད་</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
#. oXWsX
diff --git a/source/bo/helpcontent2/source/text/swriter.po b/source/bo/helpcontent2/source/text/swriter.po
index 95d34c31ca0..ce76f620fcf 100644
--- a/source/bo/helpcontent2/source/text/swriter.po
+++ b/source/bo/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-10-21 20:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "གཡོན་ནས་གཡས་བར།"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id8354747\">གཡོན་ནས་གཡས་ཀྱི་རིས་རྟགས་</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "གཡས་ནས་གཡོན།"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id2405774\">གཡས་ནས་གཡོན་གྱི་རིས་རྟགས་</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/bo/helpcontent2/source/text/swriter/01.po b/source/bo/helpcontent2/source/text/swriter/01.po
index a3556ee1fb5..98db285538e 100644
--- a/source/bo/helpcontent2/source/text/swriter/01.po
+++ b/source/bo/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-10-21 20:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "ལག་རོགས།"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">ཁ་ཕྱེ་བ་<emph>སྦྲགས་ཡིག་ཟླ་སྒྲིལ་ཡིག་ལེན་པའི་</emph>གླེང་སྒྲོམ་ཁ་ཕྱེ་བ་</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/swriter/guide.po b/source/bo/helpcontent2/source/text/swriter/guide.po
index 265a62a6860..c7cd0e23a80 100644
--- a/source/bo/helpcontent2/source/text/swriter/guide.po
+++ b/source/bo/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-12 13:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7792,49 +7792,49 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr ""
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
msgstr ""
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
msgstr ""
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
msgstr ""
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
+msgid "Positioning indents"
msgstr ""
#. qUxKq
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr ""
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr ""
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr ""
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr ""
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,14 +10294,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "རེའུ་མིག་ནང་གི་གྲངས་ཀ་ཤན་འབྱེད་ཁ་ཕྱེ་བའམ་སྒོ་བརྒྱབ་པ་"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>གྲངས་ཀ་ཤན་འབྱེད་; ཡི་གེ་ལས་སྣོན་ཡིག་ཚགས་ནང་</bookmark_value><bookmark_value>རེའུ་མིག་; གྲངས་ཀ་ཤན་འབྱེད་</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10267,14 +10330,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "གཤམ་གྱི་བཀོལ་སྤྱོད་ཅིག་སྤྱོད་"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "རེའུ་མིག་གི་དྲ་མིག་ནང་ཙིག་རྟགས་མཐེབ་ལ་རྐྱང་རྡེབ་བྱས་རྗེས་<emph>གྲངས་ཀ་ཤན་འབྱེད་</emph>འདེམས་དགོས། བྱེད་ནུས་འདི་ཁ་ཕྱེད་དུས་<emph>གྲངས་ཀ་ཤན་འབྱེད་</emph> བཀའ་ཚིག་མདུན་དུ་བདམས་པའི་བྲིས་རྟགས་མངོན་པ།"
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr ""
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12211,6 +12292,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "དེབ་ཆུང་གཏག་པར་གྱི་ཡིག་ཚགས་གསར་འཛུགས་བྱེད་དུས་ཤོག་ངོས་ཁ་ཕྱོགས་ནི་གཞུང་ཕྱོགས་ཉེར་སྤྱོད་བྱེད་ ཡིག་ཚགས་གཏག་པར་བྱེད་དུས་ཡི་གེ་ལས་སྣོན་ཡིག་ཚགས་ལ་དེབ་ཆུང་པར་དབྱིབས་ཡོད།"
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12256,50 +12355,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr ""
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
+msgid "Return to <emph>Print</emph> dialog."
msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "རང་འགུལ་ཤོག་ངོས་གཏག་པར་གྱི་གཏག་པར་ཆས་ལ་མཚོན་ན་ ཁྱེད་ཀྱིས་གཡས་ཤོག་ངོས་དང་གཡོན་ཤོག་ངོས་གཏན་འཁེལ་བྱེད།"
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "<emph>\"གཏན་འཁེལ་\"</emph>ལ་རྐྱང་རྡེབ་བྱ།"
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "གལ་ཏེ་ %PRODUCTNAME ནོར་འཁྲུལ་གྱི་གོ་རིམ་གྱིས་ཤོག་ངོས་གཏག་པར་བྱས་ན་ <emph>གཏག་པར་འཕྲུལ་འཁོར་འདེམས་གཞི་</emph>གླེང་སྒྲོམ་ཁ་ཕྱེ་ནས་ <emph>ལྡོག་ཕྱོགས་</emph>འདེམས་པ་དང་དེ་རྗེས་ཡིག་ཚགས་བསྐྱར་དུ་གཏག་པར་བྱེད།"
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr ""
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,32 +12724,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"ཤོག་ལྷེ་གཅིག་གི་སྟེང་ཤོག་ངོས་མང་པོ་གཏག་པར་བྱེད་\">ཤོག་ལྷེ་གཅིག་གི་སྟེང་ཤོག་ངོས་མང་པོ་གཏག་པར་བྱེད་</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
+msgid "Choose <menuitem>File - Print</menuitem>"
msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "གཤམ་གྱི་བཀོལ་སྤྱོད་ཅིག་སྤྱོད་"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/bo/sc/messages.po b/source/bo/sc/messages.po
index 75dc7e0854d..1bb298c1c9d 100644
--- a/source/bo/sc/messages.po
+++ b/source/bo/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29540,38 +29540,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr ""
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "གཏག་པར་དང་གསལ་ཡོལ་མངོན་ཚུལ་རྣམ་གཞག་ཅན་དུ་བསྒྱུར་བའི་སྐབས་ཉེར་སྤྱོད་ཀྱི་གཏག་པར་ཆས་ཚད་གཞི་གཏན་འཁེལ་བྱ་དགོས། "
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr ""
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr ""
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr ""
diff --git a/source/bo/sfx2/messages.po b/source/bo/sfx2/messages.po
index c3f238fe8c2..858ace3f951 100644
--- a/source/bo/sfx2/messages.po
+++ b/source/bo/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-10-21 19:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,288 +1638,251 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr ""
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr ""
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "འདེམས་གཞི་གང་མང་།(~O)"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr ""
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "རང་བཟོས་ཀྱི་འགུལ་རིས།..."
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr ""
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr ""
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "བསུབ་པ།"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4252,6 +4215,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "སུབ་པ།..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/bo/starmath/messages.po b/source/bo/starmath/messages.po
index 931066e8880..1745707451e 100644
--- a/source/bo/starmath/messages.po
+++ b/source/bo/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-05-08 13:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -425,2102 +425,2235 @@ msgid "or"
msgstr "ཡང་ན།"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "མཚོན་རྟགས། +"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "མོ་རྟགས།"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "ཕོ་མོའི་མཚོན་རྟགས།"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "མོ་ཕོའི་མཚོན་རྟགས།"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "གཏན་ཚིགས་ཀྱི་ NOT"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "སྣོན་ཐབས།+"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "འཐེན་ཐབས།-"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
#, fuzzy
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "བསྒྱུར་ཐབས།(ཚེག་)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "སྒྱུར་ཐབས།(སྣོལ་རྟགས།)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "སྒྱུར་ཐབས།(སྐར་མའི་རྟགས།)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "བགོས་ཐབས།(གསེག་ཐིག་)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "ཁུལ་དབྱེ།()"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "བགོས་ཐབས།(གྲངས་ཆ་)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "གཏན་ཚིགས་ཀྱི།AND"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "གཏན་ཚིགས་ཀྱི།OR"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "མཚུངས་པ།"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "མི་མཚུངས་པ།"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "ཆུང་བ།"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "ཆེ་བ།"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "ཆུང་བའམ་མཚུངས་པ།"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "ཆེ་བའམ་ཆེ་བ།"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "ཆུང་བའམ་མཚུངས་པ།"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "ཆེ་བའམ་ཆེ་བ།"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr ""
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
#, fuzzy
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "ཆེ་བ།"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "ཡོངས་སུ་མཚུངས་པ།"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "ཉེ་བར་མཚུངས་པ།"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "ཉེ་བར་མཚུངས།"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "ཉེར་བར་མཚུངས་པའམ་མཚུངས་པ།"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "དང་སྡུར་ཚད་ཆགས།"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "དང་དྲང་ཟུར།"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "དང་མཉམ་འགྲོ།"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "ཐག་ཉེ།"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "ཁོངས་སུ་གཏོགས།"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "ཁོངས་སུ་མ་གཏོགས།"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "ཚུད་པ།"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "འགྲིལ་ཚོགས།"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "ཆ་སྙོམ་ཐང་།"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "ཐ་དད་ཐང་།"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "བུ་ཚོགས།"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "བུ་ཚོགས་སམ་མཉམ་ཚོགས།"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "ཡོངས་ཚོགས།"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "ཡོངས་ཚོགས་སམ་མཉམ་ཚོགས།"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "བུ་ཚོགས་མིན།"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "བུ་ཚོགས་མིན་པའམ་མཉམ་ཚོགས།"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "ཡོངས་ཚོགས་མིན་པ།"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "ཡོངས་ཚོགས་སམ་མཉམ་ཚོགས་མིན་པ།"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "ལྟོས་མེད་ཐང་།"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "ཐེམ་སྒྱུར།"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "ཉིས་སྒྱུར་གཞི།"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "ཐེངས་nགཞི་ "
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "སྟོན་གྲངས་རྟེན་གྲངས།"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "སྟོན་གྲངས་རྟེན་གྲངས།"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "རང་བྱུང་གཏད་གྲངས།"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "གཏད་གྲངས།"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "དྲང་རྒྱུད།"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "ལྷག་ཕྲད།"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "དྲང་ཕྲད།"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "ལྷག་ཕྲད།"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "ལྡོག་པའི་དྲང་རྒྱུད།"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "ལྡོག་པའི་ལྷག་རྒྱུད།"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "ལྡོག་པའི་དྲང་ཕྲད།"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "ལྡོག་པའི་ལྷག་ཕྲད།"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "ཟུར་ཁྱོག་དྲང་ཕྲད།"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "ལྷག་རྒྱུད་ཟུང་ལྡན་ཁྱོག་ཐིག"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "ཟུང་ཁྱོག་དྲང་ཕྲད།"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "ལྷག་ཕྲད་ཟུང་ལྡན་ཁྱོག་ཐིག"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "ལྡོག་པའི་ཟུང་ཁྱོག་དྲང་རྒྱུད།"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "ལྷག་རྒྱུད་ཟུང་ལྡན་ཁྱོག་ཐིག"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "དྲང་ཕྲད་ཟུང་ལྡན་ཁྱོག་ངོས།"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "ལྷག་ཕྲད་ཟུང་ལྡན་ཁྱོག་ཐིག"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "སྤྱི་བསྡོམས།"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
#, fuzzy
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "འོག་རྟགས།"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
#, fuzzy
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "གོང་རྟགས།"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr ""
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "བསྒྱུར་ཐོབ།"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
#, fuzzy
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "འོག་རྟགས།"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr ""
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr ""
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "སྡེབ་གྲངས།"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
#, fuzzy
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "འོག་རྟགས།"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr ""
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr ""
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "མུ་མཐའ།"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
#, fuzzy
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "འོག་རྟགས།"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
#, fuzzy
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "གོང་རྟགས།"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr ""
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "གནས་པ།"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "གནས་པ།"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
#, fuzzy
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "ཡོངས་ལ་སྤྱོད་པ།"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "ཆ་བསགས།"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "གཉིས་ཟློས་ཆ་བསགས།"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "གསུམ་ཟློས་ཆ་བསགས།"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "འཁྱོག་ཐིག་ཆ་བསགས།"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "གཉིས་ཟློས་འཁྱོག་ཐིག་ཆ་བསགས།"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "གསུམ་ཟློས་འཁྱོག་ཐིག་ཆ་བསགས།"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "གཡས་སྟེང་ཕྱོགས་ཀྱི་སྒྲ་ལྕི་བ།"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "སྟེང་འགོད་རྟགས།"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "སྒྲ་ཐུང་རྟགས།"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "ལྡོག་ཕྱོགས་འདེགས་འཇོག་མཚོན་རྟགས།"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "སྒོར་མོ།"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "ཚེག"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "ཆ་ཚེག"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "གསུམ་ཚེག"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "གཡས་འོག་ཕྱོགས་ཀྱི་སྒྲ་ལྕི།"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "འདེགས་འཇོག་མཚོན་རྟགས།"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "ཤི་པན་ཡའི་སྐད་ཡིག་n_ཡིག་སྟེང་བསྣན་པའི་སྒྲ་འདོན་མཚོན་རྟགས།"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "ཕྱོགས་ཚད་མདའ་རྩེ།"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "གཤམ་འགོད་ཐིག"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "སྟེང་འགོད་རྟགས།"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "འགོད་རྟགས།"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "གསལ་དྭངས།"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "སྦོམ་སྣོན་ཡིག་གཟུགས།"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "གསེག་གཟུགས་ཡི་གེ།"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "ཆེ་ཆུང་བཟོ་བཅོས།"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "ཡིག་གཟུགས་བཟོ་བཅོས།"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr ""
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr ""
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr ""
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr ""
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr ""
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr ""
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr ""
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "ཚོ་ཆུང་གུག་རྟགས།"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "གུག་རྟགས་ཆུང་བ།"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "གུག་རྟགས་འབྲིང་བ།"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "ཉིས་ཟློས་ཅན་གྱི་གུག་རྟགས་འབྲིང་བ།"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "གུག་རྟགས་ཆེ་བ།"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "ཟུར་གུག་རྟགས།"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr ""
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "རྐྱང་ཐིག"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "ཆ་ཐིག"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "རྩིས་རྒྱག་རྟགས་ཀྱི་གུག་རྟགས།"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "གུག་རྟགས་ཆུང་བ།(འགྱུར་རུང་)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "གུག་རྟགས་འབྲིང་བ།(འགྱུར་རུང་)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "ཉིས་ཟློས་ཅན་གྱི་གུག་རྟགས་འབྲིང་བ།(འགྱུར་རུང་)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "གུག་རྟགས་ཆེ་བ།(འགྱུར་རུང་)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "ཟུར་གུག་རྟགས།(འགྱུར་རུང་)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "རྐྱང་ཐིག(འགྱུར་རུང་)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "ཆ་ཐིག(འགྱུར་རུང་)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "རྩིས་རྒྱག་རྟགས་ཀྱི་གུག་རྟགས།"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "གུག་རྟགས་ཆེ་སྟོད་ཆ།(འགྱུར་རུང་)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "གུག་རྟགས་འབྲིང་བའི་སྨད་ཆ།(འགྱུར་རུང་)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "གཡོན་འོག་རྟགས།"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "རང་བསྒྱུར་བ།"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "གཡོན་གཤམ་རྟགས།"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "གཡོན་ཡིག་ཟུར་ཡི་གེ།"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "འོག་རྟགས།"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "གོང་རྟགས།"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "བར་ཆོད་ཆུང་བ།"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
#, fuzzy
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "སྟོང་ཆད།"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "ཕྲེང་བརྗེ།"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "དྲང་འཕྱང་བང་སྒྲིག(གཞི་རྒྱུ་2)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "དྲང་འཕྱང་ཕྱོགས་སུ་བང་སྒྲིག"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "གྲུ་བཞི་བང་སྒྲིག"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "གཡོན་སྙོམ་གཤིབ།"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "དཀྱིལ་བསྡུ་སྙོམ་གཤིབ།"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "གཡས་སྙོམ་གཤིབ།"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "aleph"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "སྟོང་ཚོགས།"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "དངོས་ཡོད་གྲངས།"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "ཟོལ་གྲངས་ཀྱི་ཆ་རྣམས།"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
#, fuzzy
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "མུ་མེད་ཆ།"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "ཆ་ཤས།"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "སྟེང་གཏད་ཚིག"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "ཚིག་སྟེང་ལ་ཕྱོགས།"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
#, fuzzy
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "ཚིག་གཤམ་ལ་ཕྱོགས།"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "ཚིག་གཤམ་ལ་ཕྱོགས།"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "དྲང་འཕྱང་ཚེག་ཐིག"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "སྦྲེལ་མཐུད།"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
#, fuzzy
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "བགོས་ཐབས།(གསེག་ཐིག་)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "བགོས་ཆོག་པ།"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "བགོས་མི་ཆོག་པ།"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "གཡོན་ཕྱོགས་ཆའི་མདའ་རྩེ།"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "གཡས་གཡོན་དུ་ཕྱོགས་པའི་ཆའི་མདའ་རྩེ།"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "གཡས་སུ་ཕྱོགས་པའི་མདའ་རྩེ་ཆ།"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "རང་བྱུང་གྲངས་ཚོགས།"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "ཧྲིལ་གྲངས་ཚོགས་སྤྱི།"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "ལུགས་ལྡན་གྲངས་ཚོགས།"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "དངོས་ཡོད་གྲངས་ཚོགས།"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "ཚོ་གྲངས་ཚོགས།"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "ཞེང་གི་འདེགས་འཇོག་མཚོན་རྟགས།"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "ཞེང་གི་ཤི་པན་པའི་སྐད་n_ཡིག་སྟེང་བསྣན་པའི་སྒྲ་འདོན་མཚོན་རྟགས།"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "ཕྱོགས་ཚད་ཆེ་བའི་མདའ་རྩེ།"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "འཕྲེད་འཇོག་གི་ h"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "འཕྲེད་འཇོག་གི་ལན་པུ་ཏ། (lambda)"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "གཡོན་ལ་ཕྱོགས་པའི་མདའ་རྩེ།"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "གཡས་སུ་ཕྱོགས་པའི་མདའ་རྩེ།"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "མདའ་རྩེ་སྟེང་དུ་ཕྱོགས་པ།"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "འོག་ལ་ཕྱོགས་པའི་མདའ་རྩེ།"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr ""
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr ""
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr ""
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr ""
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr ""
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr ""
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr ""
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr ""
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr ""
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "རྒྱུ་གཅིག་/རྒྱུ་གཉིས་རྩིས་རྒྱག་རྟགས།"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "གཞན་དག"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
#, fuzzy
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "ཚོགས་སྤྱིའི་རྩིས་རྒྱག"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "ཚབ་རྩིས།"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
#, fuzzy
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "རྩིས་རྒྱག་རྟགས།"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "གཏོགས་གཤིས།"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
#, fuzzy
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "གུག་རྟགས།"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
#, fuzzy
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "རྣམ་གཞག་ཅན།"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "གཞན་དག"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
#, fuzzy
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "དཔེ་སྟོན།"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "ཚད་གཞི།"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "གསེག་གཟུགས།"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "སྦོམ་གཟུགས།"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "STR_BLACK"
msgid "black"
msgstr "ཡིག་ནག"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "སྔོན་པོའི་བསྡུར་ཚད།"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "ལྗང་ཁུའི་བསྡུར་ཚད།"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr ""
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "ཐལ་མདོག"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "དུས་ཚོད།"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "སེར་པོ།"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "གབ་པ།"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "དྲང་རྒྱུད།"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "ཡིག་གཟུགས།"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "གཡོན་ཕྱོགས།"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "ནང་།"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "གཡས་ཕྱོགས།"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "བཀའ་བརྡ།"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "སྤྱི་འགྲོས།"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "ཡིག་ཚགས་ཉར་ཚགས་བྱེད་བཞིན་པ།"
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION སྤྱི་འགྲོས།"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ནོར་བ།: "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "བསམ་ཡུལ་ལས་འདས་པའི་ཡིག་རྟགས།"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{'རེ་འགུག"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' རེ་འགུག"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' རེ་འགུག"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' རེ་འགུག"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' རེ་འགུག"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "དཚོས་གཞི་རེ་འགུག"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT'རེ་འགུག"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "ནང་དོན།"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "ཁ་བྱང་།"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "སྤྱི་འགྲོས་གསལ་བཤད་ཡི་གེ(~F)"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "མཐའ་སྒྲོམ།"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "ཆེ་ཆུང་།"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "མ་དེབ་ཆེ་ཆུང་།(~R)"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "ཤོག་ངོས་ཆེ་ཆུང་ལ་ལེགས་སྒྲིག་གིས་བསྒྱུར་བ།(~F)"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
diff --git a/source/bo/svtools/messages.po b/source/bo/svtools/messages.po
index 5b88b985bde..8bcfe8a9987 100644
--- a/source/bo/svtools/messages.po
+++ b/source/bo/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "ཕྱིར་འཐེན།(~U)"
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "བསྐྱར་ཟློས།(~R)"
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "རྣམ་གཞག་བཟོས་མེད་པའི་ཡིག་དེབ།"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx Internal Linkརྣམ་པའི་འབྲེལ་ཡོད་ཀྱི་ཆ་འཕྲིན།"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscapeགདོང་འཛར།"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star ཞབས་ཞུའི་རྩིས་འཁོར་གྱི་རྣམ་གཞག"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star དམིགས་བྱའི་རྣམ་གཞག"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet དམིགས་བྱ།"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "PlugIn དམིགས་བྱ།"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 བྱ་ཡུལ།"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 བྱ་ཡུལ།"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 བྱ་ཡུལ།"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 བྱ་ཡུལ།"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 བྱ་ཡུལ།"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/གཙོ་འཛིན་ཡིག་ཚགས་ 4.0 བྱ་ཡུལ།"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/གཙོ་འཛིན་ཡིག་ཚགས་ 5.0 བྱ་ཡུལ།"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw བྱ་ཡུལ།"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 བྱ་ཡུལ།"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 བྱ་ཡུལ།"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 བྱ་ཡུལ།"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc བྱ་ཡུལ།"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 བྱ་ཡུལ།"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 བྱ་ཡུལ།"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart བྱ་ཡུལ།"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 བྱ་ཡུལ།"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 བྱ་ཡུལ།"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage བྱ་ཡུལ།"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 བྱ་ཡུལ།"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 བྱ་ཡུལ།"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath བྱ་ཡུལ།"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 བྱ་ཡུལ།"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 བྱ་ཡུལ།"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObjectརིས་འབྲིའི་དམིགས་བྱ།"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word དམིགས་བྱ།"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet བྱ་ཡུལ།"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Officeཡིག་ཚགས་དམིགས་བྱ།"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes ཡིག་ཚགས་ཆ་འཕྲིན།"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx ཡིག་ཚགས།"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 བྱ་ཡུལ།"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "རིས་དབྱིབས་དམིགས་བྱ།"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows རྒྱུའི་ཡིག་ཆ།"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "གཞི་གྲངས་མ་ཁུངས་བྱ་ཡུལ།"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "གཞི་གྲངས་མ་ཁུངས་ལས་ཀའི་རེའུ་མིག"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQLའདྲི་རྩད།"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "རིམ་འདས་སྦྲེལ་མཐུད།"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "མཆན་འགྲེལ་མེད་པའི་མེད་པའི་རྣམ་གཞག"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "དམིགས་བྱ་ %བར་འཇུག་བྱེད་ཐབས་བྲལ།"
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "ཡིག་ཚགས་ % ནས་དམིགས་བྱ་བར་འཇུག་བྱེད་ཐབས་བྲལ།"
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "བྱ་ཡུལ་གཞན་དག"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "ཡོང་ཁུངས་ཁ་གསལ་མེད་པ།"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "ཡིག་ཚིགས།"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "ཡིག་ཚེག་སྟོང་།"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "ས་ཡའི་ཡིག་ཚིགས།"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "ཡིག་ཚེག་ས་ཡ།"
@@ -501,1253 +501,1253 @@ msgstr "ཡིག་ཚེག་ས་ཡ།"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "གསལ་བྱེད་གྲངས་ཀའི་རྣམ་པ།"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "སྤྱིར་བཏང།"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "ཡིག་རྟགས་ཚོགས་སྤྱི།"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "ཚིག་མཛོད།"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "ཕིང་ཡིང་།"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "འབྲི་སྟངས།"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "ཡིག་རིས།"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "གཅིག་གྱུར་ཨང་རྟགས།"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "སྒྲ་འགོད་པ།"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "ཁ་པར་དེབ།"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "སྐད་གདངས་ཀྱི(ཨང་གི་སྔོན་དུ་སྒྲིག་པ)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "སྐད་གདངས་ཀྱི(ཡི་གེའི་ཨང་གི་མཇུག་ཏུ་སྒྲིག་པ)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "གསལ་བྱེད་གྲངས་ཀའི་རྣམ་པ།"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "ཚིག་མཛོད།"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "ཕིང་ཡིང་།"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "ཡིག་རིས།"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "འབྲི་སྟངས།"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "སྒྲ་འགོད་པ།"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "སྐད་གདངས་ཀྱི(ཡི་གེ་ཨང་གི་སྔོན་དུ་སྒྲིག་ནས་སྒྲ་གདངས་ནས་བཙུགས་དབྱེ་བ)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "སྐད་གདངས་ཀྱི(ཡི་གེའི་ཨང་གི་སྔོན་དུ་སྒྲིག་ནས་སྒྲ་ཡང་འཇུག་གིས་བཙུགས་དབྱེ་བ)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "སྐད་གདངས་ཀྱི(ཨང་གི་མཇུག་ཏུ་སྒྲིག་པ་དང་སྒྲ་གདངས་ནས་བཙུགས་དབྱེ་བ)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "སྐད་གདངས་ཀྱི(ཨང་གི་མཇུག་ཏུ་སྒྲིག་པ་དང་སྒྲ་ཡང་འཇུག་ནས་བཙུགས་དབྱེ་བ)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "ཕྲ།"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "གསེག་ཐིག་ཕྲ་མོ།"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "ཚད་གཞི།"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "གསེག་གཟུགས།"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "སྦོམ་གཟུགས།"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "སྦོམ་གསེག་གཟུགས།"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "ཡིག་ནག"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "ཡིག་ནག་འཁྱོག་པོ།"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "དཔེ་དེབ།"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "སྡུད་སྒྲིལ་ཡིག་གཟུགས།"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "བཪྙན་ཡོལ་མངོན་སྟོན་དང་པར་འདེབས་གཉིས་ཀར་ཡིག་གཟུགས་གཅིག་པ་ཡིན།"
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "དེ་ནི་པར་འདེབས་ཡིག་གཟུགས་ཡིན། བཪྙན་བཤེལ་མངོན་འཆར་གྱི་ཡིག་གཟུགས་དེ་"
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "ཡིག་གཟུགས་འདི་རིགས་སམ་ཡང་ན་དེ་དང་འདྲ་ཤོས་ཀྱི་ཡིག་གཟུགས་སྐྱེད་གྲུབ་བྱེད་རྒྱུ།"
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "ཡིག་གཟུགས་དེ་བསྒར་འཇུག་བྱས་མིན་འདུག ད་ལྟ་སྤྱོད་བཞིན་པ་དེ་ནི་ཡིག་གཟུགས་འདྲ་ཤོས་དེ་ཡིན།"
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "ཕྲེང་འོག་སྤོ།"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "གཡོན་ལ།"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "གཡས་ལ།"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "འོག་ལ་སྤོ།"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "ཁ་སྣོན།"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "དབུས་ནས་གོང་འོག་ལ་འགྲེམས་པ།"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "དྲང་འཕྱང་མཚོན་ཁྲེ།"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 གནས་ - ཐོག་མའི་ཐང་།"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1གནས་-འདར་འགུལ།"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 གནས་ཀྱི་སྐྱ་ཚད།"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "4 གནས་ཀྱི་སྐྱ་ཚད།"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 གནས་དངོས་མའི་ཚོན་ཁྲ།"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "cost"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "རིམ་སྒྲིག"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "མཚམས་འཇོག"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "ཐོག་མར་སྒྱུར་བཞིན་པ།..."
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "སྒུག་བསྡད་པ།"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "ནོར་བ།"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "ཤོག་ངོས་སུབ་པ།(~E)"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "ནང་གསོག་མ་འདང་བ།"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "ངོས་བཟུང་གི་པར་འཁོར།"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
#, fuzzy
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "Word ཡིག་ཚགས།"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<མེད།>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "ཀུང་སི།"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "སྡེ་ཚན།"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "མིང་།"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "མིང་རིགས།"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "ཁྲོམ་གཞུང་།"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "རྒྱལ་ཁབ།"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "སྦྲག་སྲིད་སྒྲིག་ཨང་།"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "གྲོང་ཁྱེར།"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "གོ་ཐོབ།"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "གོ་གནས།"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "འབོད་ལུགས།"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "སྐུངས་ཡིག"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "ཁམས་བདེའི་སྐད་ཆ།"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "སྒེར་གྱི་ཁ་པར་ཨང་གྲངས།"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "ཀུང་སིའི་ཁ་པར་ཨང་གྲངས།"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "མཆན་འགོད།"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "སྤྱོད་མཁན། 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "སྤྱོད་མཁན། 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "སྤྱོད་མཁན། 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "སྤྱོད་མཁན། 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "ཞིང་ཆེན་དང་། ཐད་སྐྱོང་གྲོང་ཁྱེར། རང་སྐྱོང་ལྗོངས།"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "གཞུང་ལས་ཁང་གི་ཁ་པར་ཨང་གྲངས།"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "འབོད་བརྡ་གཏོང་བའི་འཕྲུལ་འཁོར་གྱི་ཨང་གྲངས།"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "ལག་ཐོགས་ཁ་པར་ཨང་གྲངས།"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "ཁ་པར་ཨང་གྲངས་གཞན་དག"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "ལོ་ཐོ།"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "གདན་ཞུ།"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JREཡོད་དགོས།"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "འདེམས་པ། JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE རྩིས་འགྲོ་མེད།"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "གཞིའི་ཡིག་ཆ།"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "ཤོག་འཛར་ཡིག་ཆ།"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "རིས་དབྱིབས།"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "ཡིག་ཆ་སྒྲིག་སྦྱོར།"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "ཉེར་སྤྱོད་གོ་རིམ།"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "གཞི་གྲངས་མཛོད་ཀྱི་རེའུ་མིག"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "རྒྱུད་ཁོངས་ཡིག་ཆ།"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Wordཡིག་ཚགས།"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "རོགས་རམ་ཡིག་ཆ།"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTMLཡིག་ཚགས།"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "ཡིག་ཚགས་ཡིག་ཆ།"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "ཡིག་ཆ་ཟིན་ཐོ་འགོད་པ།"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice 5.0 དཔེ་པང་།"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 གཙོ་བོའི་ཚོད་འཛིན་ཡིག་ཚགས།"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice 5.0 དཔེ་པང་།"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "ཡིག་དེབ་ཀྱི་ཡིག་ཆ།"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "འབྲེལ་མཐུད།"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 5.0 དཔེ་པང་།"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel ཡིག་ཚགས།"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel དཔེ་པང་།"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "ཡིག་ཆར་མཆན་འགོད།"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ཡིག་ཆ།"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ཡིག་ཚང་།"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "ཡི་གེ་སྒྲིག་གཅོད་ཀྱི་ཡིག་ཚགས།"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "ལས་ཀའི་དེབ།"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "སྟོན་་འགྲེམས་ཟིན་བྲིས།"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "རི་མོ་འབྲི་བ།"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTMLཡིག་ཚགས།"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "གཙོ་བོའི་ཚོད་འཛིན་ཡིག་ཚགས།"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "སྤྱི་འགྲོས།"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "གཞི་གྲངས་མཛོད།"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "ཆ་ཤས་ཀྱི་འགུལ་སློང་འཕྲུལ་ཆས།"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "མཉེན་སྡེར།"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "འོད་སྡེར་སྒུལ་འདེད་ཡོ་ཆས།"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "དྲ་རྒྱའི་སྦྲེལ་མཐུད།"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Microsoft PowerPoint ཡིག་ཚགས།"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Microsoft PowerPoint དཔེ་པང་།"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Microsoft PowerPoint Show"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML ཡིག་ཚགས།"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "%PRODUCTNAME %PRODUCTVERSIONགྲངས་གཞིའི་ཐོ་མཛོད།"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "%PRODUCTNAME %PRODUCTVERSION རི་མོ་འབྲི་བ།"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION སྤྱི་འགྲོས།"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION གཙོ་བོའི་ཚོད་འཛིན་ཡིག་ཚགས།"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "%PRODUCTNAME %PRODUCTVERSION སྟོན་་འགྲེམས་ཟིན་བྲིས།"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "%PRODUCTNAME %PRODUCTVERSION ལས་ཀའི་དེབ།"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "%PRODUCTNAME %PRODUCTVERSION ཡི་གེ་སྒྲིག་གཅོད་ཀྱི་ཡིག་ཚགས།"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "%PRODUCTNAME %PRODUCTVERSION ཡི་ལས་དེབ་དཔེ་པང་།"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "%PRODUCTNAME %PRODUCTVERSION རིས་འབྲིའི་དཔེ་པང་།"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "%PRODUCTNAME %PRODUCTVERSION འགྲེམས་སྟོན་ཟིན་བྲིས་ཀྱི་དཔེ་པང་།"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "%PRODUCTNAME %PRODUCTVERSION ཡི་གེ་སྒྲིག་གཅོད་ཀྱི་དཔེ་པང་།"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAMEརྒྱ་སྐྱེད།"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/bo/svx/messages.po b/source/bo/svx/messages.po
index 76df9ab7a6a..057ede32bff 100644
--- a/source/bo/svx/messages.po
+++ b/source/bo/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16723,12 +16723,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
-#, fuzzy
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "དཔྱད་གཏམ།"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/bo/sw/messages.po b/source/bo/sw/messages.po
index f6afd7526a9..f4a40a7d86f 100644
--- a/source/bo/sw/messages.po
+++ b/source/bo/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18043,88 +18043,94 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "རྒྱུནགཏན།"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
#, fuzzy
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "ཁ་བྱང་།"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr ""
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr ""
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr ""
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
#, fuzzy
msgctxt "inserttable|label2"
msgid "Options"
msgstr "གདམ་ཚན།"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20747,295 +20753,295 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "ཤོག་མགོ་"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "ཤོག་ཞབས།"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
#, fuzzy
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "འོག་ཕྱོགས་ལ་རིམ་པ་གཅིག"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
#, fuzzy
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "སྟེང་ཕྱོགས་ལ་རིམ་པ་གཅིག"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
#, fuzzy
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "འཐེན་འདྲད་རྣམ་པ།"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "ཡིག་ཚགས།"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
#, fuzzy
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "མིག་སྔའི་མཐོང་སྒྲོམ།"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "རྩོམ་སྒྲིག"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
#, fuzzy
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "གསར་བཟོ།"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
#, fuzzy
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "བསྒར་འཛུད།"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "སྟེང་ལ་སྤོ་སྒུལ་བྱེད།"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "འོག་ལ་སྤོ་སྒུལ་བྱེད།"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/br/sc/messages.po b/source/br/sc/messages.po
index 19444151c60..b5ec63e62b9 100644
--- a/source/br/sc/messages.po
+++ b/source/br/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29081,38 +29081,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Arver muzulioù ar voullerez evit mentrezhañ an destenn"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "_Usskediñ an diuzad en talbennoù renkoù pe bannoù"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Hizivaat an daveoù pa vez rummet ul lijorenn gelligoù"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Arventennoù an enankañ"
diff --git a/source/br/sfx2/messages.po b/source/br/sfx2/messages.po
index 4ce8fa583cb..fcda099c218 100644
--- a/source/br/sfx2/messages.po
+++ b/source/br/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1637,290 +1637,251 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Eoriñ"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Dizeoriñ"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Muioc'h a zibarzhioù"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Serriñ penel ar varrenn gostez"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Arventennoù ar varrenn gostez"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Personelaat"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Assav an arventennoù dre ziouer"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Serriñ ar varrenn gostez"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Dilemel"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4175,6 +4136,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Dilemel..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/br/starmath/messages.po b/source/br/starmath/messages.po
index 6396090b257..5beb3762573 100644
--- a/source/br/starmath/messages.po
+++ b/source/br/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-05-08 13:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "pe"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Arouez +"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Arouez -"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Arouez +-"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Arouez -+"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Boulean KET"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Sammadur +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Lamadur -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Liesadur (pik)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Liesadur (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Liesadur (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Rannadur (barrenn a-veskell)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Rannadur (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Rannadur (rann)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Liesâd stennadel"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Boulean HA"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Boulean PE"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "zo par da"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "n'eo ket par da"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "zo bihanoc'h eget"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "zo brasoc'h eget"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "zo bihanoc'h pe bar da"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "zo brasoc'h pe bar da"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "zo bihanoc'h pe bar da"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "zo brasoc'h pe bar da"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Zo bihanoc'h-bihanoc'h eget"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Zo brasoc'h-brasoc'h eget"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "zo kewez ouzh"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "zo par (well-wazh) da."
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "zo heñvel ouzh"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "zo heñvel pe bar da"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "zo kenfeuriek da"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "zo a-serzh da"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "zo kenstur da"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "davit"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "zo e"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "n'emañ ket e"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Enderc'hel a ra"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Unanadur"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Kenskejadur"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Diforc'h"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Isteskad"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Isteskad pe bar da"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Ardeskad"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Ardeskad pe bar da"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Ket isteskad"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Ket isteskad pe bar da"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Ket ardeskad"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Ket ardeskad pe bar da"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Gwerzh dizave"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Dasperiad"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Daouvonad"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N-von"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Kevreizhenn argemmvac'hel"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Kevreizhenn argemmvac'hel"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Logaritm neperel"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logaritm"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sinuz"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Kosinuz"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangent"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Kotangent"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Gwarenn sinuz"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Gwarenn gosinuz"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Gwarenn dangent"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Gwarenn gotangent"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Sinuz hiperbolek"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Kosinuz hiperbolek"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Tangent hiperbolek"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Kotangent hiperbolek"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Arguzenn sinuz hipeborlek"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Arguzenn gosinuz hiperbolek"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Arguzenn dangent hiperbolek"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Arguzenn gotangent hiperbolek"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Sammad"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Sammad feur en traoñ"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Sammad mac'her e lein"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Sammad mac'her/feur"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Aozad"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Liesad feur en traoñ"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Liesad mac'h e krec'h"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Liesad mac'her/feur"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Kenaozad"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Kenliesad feur en traoñ"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Kenliesad mac'h e krec'h"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Liesad mac'h/feur"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Bevennoù"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Bevennoù feur en traoñ"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Bevennoù mac'her e lein"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Bevennoù mac'her/feur"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Anezhi ez eus"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "N'eus ket anezhi"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Evit an holl"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Sammegenn"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Sammegenn feur en traoñ"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Sammegenn mac'her e krec'h"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Sammegenn mac'her/feur"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Divsammegenn"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Divsammegenn feur en traoñ"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Divsammegenn mac'her e krec'h"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Divsammegenn mac'her/feur"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Sammegenn dripl"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Teirsammegenn feur en traoñ"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Teirsammegenn mac'her e krec'h"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Teirsammegenn mac'her/feur"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Sammegenn ur grommenn"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Sammegenn grommenn feur en traoñ"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Sammegenn grommenn mac'her e krec'h"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Sammegenn grommenn mac'her/feur"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Divsammegenn ur grommenn"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Divsammegenn grommenn feur en traoñ"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Divsammegenn grommenn mac'her e krec'h"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Divsammegenn grommenn mac'her/feur"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Sammegenn dripl ur grommenn"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Teirsammegenn grommenn feur en traoñ"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Teirsammegenn grommenn mac'her e krec'h"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Teirsammegenn grommenn mac'her/feur"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Tired lemm"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Linenn a-us"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Berr"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Tired kognek a-gin"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Kelc'h"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Pik"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Daou bik"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Pik tripl"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Tired boud"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Tired kognek"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tonan"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Bir sturiadel"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Linenn dindan"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Linenn a-us"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Linenn a-dreuz dezhi"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Boull"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Arouezennoù tev"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Arouezennoù stouet"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Daskemmañ ar vent"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Daskemmañ an nodrezh"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Liv du"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Liv glas"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Liv gwer"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Liv ruz"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Liv loued"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Liv sitroñs"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Liv gell"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Liv mor"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Liv olivez"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Liv limestra"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Liv argant"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Liv krakhouad"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Liv melen"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Krommelloù strollañ"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Krommelloù rontaet"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Krochedoù"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Daougroched"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Briataennoù"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Krochedoù kornel"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Lein a-us"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Leur"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Linennoù eeun"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Daoulinennoù"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Krommelloù un niñvader"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Krommelloù rontaet (ment argemmus)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Krochedoù (ment argemmus)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Daougrochedoù (ment argemmus)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Briataennoù (ment argemmus)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Krochedoù kornel (ment argemmus)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Lein (sturiadel)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Leur (sturiadel)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Linennoù eeun (ment argemmus)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Divlinenn (ment kemmus)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Krommelloù un niñvader (ment argemmus)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Priziet e"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Briataenn e-krec'h (ment argemmus)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Briataenn en traoñ (ment argemmus)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Feur war an tu dehou"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Mac'h"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Feur war an tu kleiz"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Mac'her a-gleiz"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Feur en traoñ"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Mac'her e lein"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Esaou bihan"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Gwerc'h"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Linenn nevez"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Frammadur a-serzh (div elfenn)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Frammadur a-serzh"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Frammadur en oged"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Steudañ a-gleiz"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Steudañ e kreiz"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Steudañ a-zehou"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Alef"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Teskad goullo"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Lodenn wir"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Lodenn faltazi"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Anvevenn"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Darnel"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "P Weierstrass"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Pikoù e-kreiz"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Pikoù d'ar c'hrec'h"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Pikoù d'an traoñ"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Pikoù en traoñ"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Pikoù a-serzh"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Arrevellañ"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Rannadur (barrenn a-veskell)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Rannadur (beskell ledan gin)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Rannañ a ra"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Ne rann ket"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Daouvir d'an tu kleiz"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Daouvir d'an tuoù dehou ha kleiz"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Daouvir d'an tu dehou"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Teskad an niveroù naturel"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Teskad an niveroù kevan"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Teskad an niveroù kemezel"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Teskad an niveroù gwerc'hel"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Teskad an niveroù kemplezh"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Tired kognek bras"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Tonan bras"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Bir sturiadel bras"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h + barrenn"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda + barrenn"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Bir d'an tu kleiz"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Bir d'an tu dehou"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Bir d'al lein"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Bir d'an traoñ"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Esaou ebet"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "zo a-raok"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "zo a-raok pe bar da"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "zo a-raok pe gevatal da"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "zo war-lerc'h"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "zo war-lerc'h pe bar da"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "zo war-lerc'h pe gevatal da"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "n'emañ ket a-raok"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "n'emañ ket war-lerc'h"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Niñvaderioù unadek/daouadek"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Darempredoù"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Niñvaderioù teskadoù"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Arc'hwelioù"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Niñvaderioù"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Doareennoù"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Krommelloù"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Mentrezhoù"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "All"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Skouerioù"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Skoueriek"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Stouet"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Tev"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "du"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "glas"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "gwer"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "ruz"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "loued"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "sitroñs"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "gell"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "glas mor"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olivez"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "limestra"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "argant"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "krakhouad"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "melen"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "kuzhat"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "ment"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "nodrezh"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "kleiz"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "kreiz"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "dehou"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Arc'hadoù"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Reollun"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Oc'h enrollañ an teul..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Reollun mod %PRODUCTNAME %PRODUCTVERSION Formula"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "FAZI : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Arouezenn dic'hortozet"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' gortozet"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' gortozet"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' gortozet"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' gortozet"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' gortozet"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Liv rekis"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' gortozet"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Endalc'hadoù"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titl"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Testenn ar ~reollun"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Ri~blennoù"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Ment"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Ment ~orin"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "L~akaat da genglotañ gant ar bajenn"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skeul"
diff --git a/source/br/svtools/messages.po b/source/br/svtools/messages.po
index b5bf2d622f8..5880ffa5fcb 100644
--- a/source/br/svtools/messages.po
+++ b/source/br/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Dizober : "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "A~rren : "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Testenn anmentrezhet"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Stlenn stad eus Svx Internal Link"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Sinedoù Netscape"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Mentrezh an dafariad Star"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Mentrezh an ergorenn Star"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Ergorenn an arloadig"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Ergorenn an enlugellad"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Ergorenn mod StarWriter 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Ergorenn mod StarWriter 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Ergorenn mod StarWriter 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Ergorenn mod StarWriter/Web 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Ergorenn mod StarWriter/Web 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Ergorenn mod StarWriter/Mestr 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Ergorenn mod StarWriter/Mestr 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Ergorenn mod StarDraw"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Ergorenn mod StarDraw 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Ergorenn mod StarImpress 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Ergorenn mod StarDraw 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Ergorenn mod StarCalc"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Ergorenn mod StarCalc 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Ergorenn mod StarCalc 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Ergorenn mod StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Ergorenn mod StarChart 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Ergorenn mod StarChart 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Ergorenn mod StarImage"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Ergorenn mod StarImage 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Ergorenn mod StarImage 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Ergorenn mod StarMath"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Ergorenn mod StarMath 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Ergorenn mod StarMath 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Ergorenn mod StarObject Paint"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Ergorenn mod Microsoft Word"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Ergorenn mod StarFrameSet"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Ergorenn mod Office document "
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Stlenn teul Notennoù"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Teul mod sfx"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Ergorenn mod StarChart 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Ergorenn gevregañ"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Ergorenn mod OpenOffice.org 1.0 Writer"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Ergorenn mod OpenOffice.org 1.0 Writer/Web"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Ergorenn mod OpenOffice.org 1.0 Writer/Mestr"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Ergorenn mod OpenOffice.org 1.0 Draw"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Ergorenn mod OpenOffice.org 1.0 Impress"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Ergorenn mod OpenOffice.org 1.0 Calc"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Ergorenn mod OpenOffice.org 1.0 Chart"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Ergorenn mod OpenOffice.org 1.0 Math"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Trarestr mod Windows (WMF)"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Ergorenn tarzh roadennoù"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Taolenn an tarzh roadennoù"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Azgoulenn mod SQL"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Boestad emziviz OpenOffice.org 1.0"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Gourere"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Mentrezh HTML hep an askelennoù"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "N'haller ket enlakaat an ergorenn %."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "N'haller ket enlakaat an ergorenn diouzh ar restr % "
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Ergorennoù all"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Tarzh dianav"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Eizhbitoù"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "Ke"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "Me"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "Ge"
@@ -501,1240 +501,1240 @@ msgstr "Ge"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Lizhersifrennel"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Reizh"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Spletad arouezennoù"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Geriadur"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Tres"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Gwriz"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Levr ar pellgomz"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Soniadouriezh (lizhersifrennel da gentañ)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Soniadouriezh (lizhersifrennel da ziwezhañ)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Lizhersifrennel"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Geriadur"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Gwriz"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Tres"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Soniadouriezh (lizhersifrennel da gentañ, strollañ dre leñvennoù)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Soniadouriezh (lizhersifrennel da gentañ, strollañ dre gensonennoù)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Soniadouriezh (lizhersifrennel da ziwezhañ, strollañ dre leñvennoù)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Soniadouriezh (lizhersifrennel da ziwezhañ, strollañ dre gensonennoù)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Skañv"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Stouet skañv"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Reol"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Stouet"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Tev"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Stouet tev"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Dreisttev"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Stouet gourtev"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Levr"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Krennet"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Hanter-tev"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Arveret eo an hevelep nodrezh gant ar moullañ hag ar skrammañ."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Nodrezh ar voullerez. Ar skrammañ hag ar moullañ a c'hell bout disheñvel."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Drevezet e vo ar stil nodrezh-mañ pe implijet e vo ar stil dereatañ."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "N'eo ket bet staliet an nodrezh-se. Implijet e vo an nodrezh dereatañ."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Dilec'hiañ d'ar gêr"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "D'an tu kleiz"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "D'an tu dehou"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Dilec'hiañ d'an dibenn"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Ouzhpennañ"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Reolenn a-blaen"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Reolenn a-serzh"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Gwerzh gwehin 1 bit"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Dithering (skignadur) 1 eizhbit"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Liveoù louedoù 4 eizhbit"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Liv 4 eizhbit"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Liveoù louedoù 8 eizhbit"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Liv 8 eizhbit"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Liv gwir 24 eizhbit (True color)"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Ezhomm he deus ar skeudenn war-dro %1 Ke memor."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Ezhomm he deus ar skeudenn war-dro %1 Ke memor, ment ar restr a dalv da %2 Ke."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Ment ar restr a dalv da %1 Ke."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "tasmant"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Rummañ"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Hegerz"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Paouezet"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Lamidigezh diouzhtu."
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Ac'hub"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "O teraouekaat"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "O c'hortoz"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "O raktommañ"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "O keweriañ"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "O voullañ"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Ezlinenn"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Fazi"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Dafariad dianav"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Choukadur paper"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Diouer a baper"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Boueta dre zorn"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Kudenn gant ar paper"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "En/Ec'h oberiant"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Leun eo ar bailh ermaeziañ"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Mirad izel a doner"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Toner ebet ken"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Lamidigezh pajenn"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Emelladur an arveriad azgoulennet"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Memor re skort"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Klozenn digor"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Mod da arboell an tredan"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Moullerez dre ziouer"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d a deulioù"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<tra ebet>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Kevredigezh"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Gwazadur"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Kentanv"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Anv"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Straed"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Bro"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Boneg Post"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Kêr"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titl"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Arc'hwel"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Anvad"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Tallizherennoù"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Troiennoù gourc'hemenn"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Pgz ti"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Pgz burev 1"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Notennoù"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Arveriad 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Arveriad 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Arveriad 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Arveriad 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Stad"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Pgz burev 2"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pajenner"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Hezougell"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Pgz (all)"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Deiziataer"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Pedadenn"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ $user$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Kemmet eo bet kefluniadur %PRODUCTNAME. Dre %PRODUCTNAME - Gwellvezioù - %PRODUCTNAME - Kempleshoc'h, diuzit Endro Erounit Java (JRE) a fell deoc'h ma vo arveret gant %PRODUCTNAME."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Daskemmet eo bet kefluniadur %PRODUCTNAME. Dre Ostilhoù - Dibarzhioù - %PRODUCTNAME - Kempleshoc'h, diuzit an amva Java runtime environment a fell deoc'h ma vefe arveret gant %PRODUCTNAME."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME en deus ezhomm ur Java runtime environment (JRE) da erounit an trevell-se. Siek eo ar JRE bet diuzet. Mar plij, diuzit un handelv all pe stailhit ur JRE nevez ha diuzit eñ dre %PRODUCTNAME - Gwellvezioù - %PRODUCTNAME - Kempleshoc'h."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME en deus ezhomm un amva Java runtime environment (JRE) da erounit an trevell-se. Faziek eo an amva JRE bremanel. Trugarez da ziuzañ un handelv all pe da staliañ ur JRE nevez hag e ziuzañ dre Ostilhoù - Dibarzhioù - %PRODUCTNAME - Kempleshoc'h."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE Rekis"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Diuzañ ar JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "Faziek eo ar JRE"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Boneg Tarzh"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Restr ar sinedoù"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Skeudennoù"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Restr kefluniañ"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Arload"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Taolenn ur stlennvon"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Restr ar reizhiad"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Teul mod MS Word"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Restr ar skoazell"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Teul mod HTML"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Restr diell"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Restr ar c'herzhlevr"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Stlennvon mod StarOffice"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Teul mestr mod StarWriter 4.0 / 5.0"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Skeudenn mod StarOffice"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Restr mod testenn"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Eren"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Patromoù mod StarOffice 3.0 - 5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Teul mod MS Excel"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Patrom mod MS Excel"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Restr keweriañ dre lodoù"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Restr"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Teuliad"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Testenn"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Renkell"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Kinnigadenn"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Tresadenn"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Teul mod HTML"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Teul mestr"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Reollun"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Stlennvon"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Patrom renkell mod OpenOffice.org 1.0"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Patrom tresadenn mod OpenOffice.org 1.0"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Patrom kinnigadenn mod OpenOffice.org 1.0"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Patrom teul testenn mod OpenOffice.org 1.0"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unvez lec'hel"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Unvez ar gantenn"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Unvez ar Sederom"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Kennask ouzh ar rouedad"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Teul mod MS PowerPoint"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Patrom mod MS PowerPoint"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Treyonennaoueg mod MS PowerPoint"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Reollun mod OpenOffice.org 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Diervad mod OpenOffice.org 1.0"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Tresadenn mod OpenOffice.org 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Renkell mod OpenOffice.org 1.0"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Kinnigadenn mod OpenOffice.org 1.0"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Teul testenn mod OpenOffice.org 1.0"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Teul mestr mod OpenOffice.org 1.0"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Teul mod MathML"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Stlennvon mod OpenDocument"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Tresadenn mod OpenDocument"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Reollun mod OpenDocument"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Teul mestr mod OpenDocument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Kinnigadenn mod OpenDocument"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Renkell mod OpenDocument"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Testenn mod OpenDocument"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Patrom renkell mod OpenDocument"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Patrom tresadenn mod OpenDocument"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Patrom kinnigadenn mod OpenDocument"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Patrom testenn mod OpenDocument"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Askouezh %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/br/svx/messages.po b/source/br/svx/messages.po
index e0a45c8549e..7376318d189 100644
--- a/source/br/svx/messages.po
+++ b/source/br/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Breton <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/br/>\n"
@@ -16473,11 +16473,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Aroue_zennoù rumm"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_Askelennoù"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/br/sw/messages.po b/source/br/sw/messages.po
index e48cda9d0e5..a011da69eec 100644
--- a/source/br/sw/messages.po
+++ b/source/br/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17556,86 +17556,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Hollek"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "_Titl"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Diskouez titl ar renkoù war ar _pajennoù nevez"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Arabat tr_oc'hañ an daolenn dreist pajennadoù"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Titl ar _renkoù :"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Dibarzhioù"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20153,303 +20159,303 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
#, fuzzy
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Trec'haoliñ betek gwel an teul mestr"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Gwel ar merdeiñ a glot gant an endalc'had"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Reollin"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
#, fuzzy
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Troad pajenn"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
#, fuzzy
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Eor <-> testenn"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
#, fuzzy
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Kouner da-heul"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
#, fuzzy
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Liveoù titloù diskouezet"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
#, fuzzy
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Skrammañ/kuzhat ar maez roll"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
#, fuzzy
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Sevel dre ul live"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
#, fuzzy
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Izelaat eus ul live"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
#, fuzzy
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Chabistr d'al lein"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
#, fuzzy
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Chabistr d'an traoñ"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Mod Riklañ"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Teul"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Prenestr oberiat"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
#, fuzzy
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Trec'haoliñ betek gwel an teul mestr"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Embann"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Hizivaat"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Enlakaat"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
#, fuzzy
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Enrollañ an endalc'hadoù ivez"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
#, fuzzy
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Kas d'ar c'hr_ec'h"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
#, fuzzy
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Disken_n"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/brx/sc/messages.po b/source/brx/sc/messages.po
index 16479064cbd..7dcc780cdbf 100644
--- a/source/brx/sc/messages.po
+++ b/source/brx/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29364,38 +29364,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr ""
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr ""
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr ""
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr ""
diff --git a/source/brx/sfx2/messages.po b/source/brx/sfx2/messages.po
index 2fff4df7087..679e26a795b 100644
--- a/source/brx/sfx2/messages.po
+++ b/source/brx/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1627,287 +1627,251 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr ""
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr ""
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "गोबां~ उफ्रा"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr ""
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr ""
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr ""
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr ""
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "गैया खालाम"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4212,6 +4176,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "हुखुमोर..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/brx/starmath/messages.po b/source/brx/starmath/messages.po
index af4b8d3804a..6ae4afde17d 100644
--- a/source/brx/starmath/messages.po
+++ b/source/brx/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+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"
@@ -422,2101 +422,2234 @@ msgid "or"
msgstr "एबा"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+ सिन"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "- सिन"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+- सिन"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "-+ सिन"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "बुलियान NOT"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "दाजाबनाय +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "दानखनाय-"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
#, fuzzy
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "सानजाबनाय (Dot )"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "सानजाबनाय (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "सानजाबनाय (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "राननाय (स्लेश)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "राननाय (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "राननाय (बाहागो)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "बुलियान AND"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "बुलियान OR"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "समान"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "समान नङा"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "खमसिन"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "देरसिन"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "खमसिन एबा समान"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "देरसिन एबा समान"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "खमसिन एबा समान"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "देरसिन एबा समान"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr ""
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
#, fuzzy
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "देरसिन"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "समानथि"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "फ्रायनो समान"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "एखे"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "एखे एबा समान"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "समान रुजुथायारि"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "अर्थ'गनेल"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "समान आनथोर"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "थिंजाय"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "आव"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "आव गैया"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "गावनि"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "खौसे"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "दानलायनाय"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "फाराग"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "दालाय जथाय"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "दालाय जथाय एबा समान"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "सुपार जथाय"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "सुपार जथाय एबा समान"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "दालाय जथाय नङा"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "दालाय जथाय नङा एबा समान"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "सुपार जथाय नङा"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "सुपार जथाय एबा समान"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "थि बेसेन"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "फेक्टरियाल"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "बर्ग दबलाय रुट"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "n-th रुट"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "एक्सप'नेन्टसियाल खामानि"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "एक्सप'नेन्टसियाल खामानि"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "सरासनस्रा ल'गारिदम"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "ल'गारिदम"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "साइन"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "कसाइन"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "टेनजेन्ट"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "कटेनजेन्ट"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "आर्कसाइन"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "आर्क'साइन्"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "आर्कटानजेन्ट"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "आर्क'टानजेन्ट"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "हायपारबलिक साइन"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "हायपारबलिक कसाइन"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "हायपारबलिक टेनजेन्ट"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "हायपारबलिक कटेनजेन्ट"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "ओनसोल हायपारबलिक साइन"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "ओनसोल हायपारबलिक कसाइन"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "ओनसोल हायपारबलिक टेनजेन्ट"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "ओनसोल हायपारबलिक कटेनजेन्ट"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "दाजाबगासै"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
#, fuzzy
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "दालाय स्क्रिप्ट गाहायनि"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
#, fuzzy
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "सुपार स्क्रिप्ट गोजौनि"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr ""
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "दिहुनथाय"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
#, fuzzy
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "दालाय स्क्रिप्ट गाहायनि"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr ""
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr ""
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "लोगो दिहुनथाय"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
#, fuzzy
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "दालाय स्क्रिप्ट गाहायनि"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr ""
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr ""
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "लाइमस"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
#, fuzzy
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "दालाय स्क्रिप्ट गाहायनि"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
#, fuzzy
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "सुपार स्क्रिप्ट गोजौनि"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr ""
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "बेयाव थांना दङ"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "बेयाव थांना दङ"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
#, fuzzy
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "गासैनिबो थाखाय"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "इनटिग्राल"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "नैगुण इनटिग्राल"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "थामगुण इनटिग्राल"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "खेंख्रा इनटिग्राल"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "नैगुण खेंख्रा इनटिग्राल"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "थामगुण खेंख्रा इनटिग्राल"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "गोख्रों उच्चारण"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "गोजौनि सारि"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "गुसुं गारां बोनाय सिन"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "उलथा गारां बोनाय सिन"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "बेंखन"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "बिन्दु"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "नैगुन बिन्दु"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "थामगुण बिन्दु"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "गोमजोर उच्चारण"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "गारां बोनाय सिन"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "टिल्ड"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "भेक्टर थिर"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "सारि गाहाय"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "सारि गोजौ"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "सारि गेजेरजों"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "गोजों"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "बल्ड फन्ट"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "फारसे खेंख्रा हांखो फन्ट"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "फिन महर हो"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "फन्ट सोलाय"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr ""
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr ""
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr ""
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr ""
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr ""
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr ""
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr ""
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "हानजा अखाफोर बेन्दोंफोर"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "दुलुर बेन्दोंफोर"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "बर्ग बेन्दोंफोर"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "नैगुण बर्ग बेन्दोंफोर"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "लाउ बेन्दोंफोर"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "खना अखाफोर बेन्दोंफोर"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr ""
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "मोनसेल' सारिफोर"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "नैगुण सारिफोर"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "सालायग्रा अखाफोर बेन्दोंफोर"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "दुलुर अखाफोर बेन्दोंफोर (जखा सुजाथाव)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "बर्ग अखाफोर बेन्दोंफोर (जखा सुजाथाव)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "नैगुण बर्ग अखाफोर बेन्दोंफोर (जखा सुजाथाव)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "अखाफोर बेन्दोंफोर (जखा सुजाथाव)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "खना अखाफोर बेन्दोंफोर(जखा सुजाथाव)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "मोनसेल' सारिफोर (जखा सुजाथाव)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "नैगुण सारिफोर (जखा सुजाथाव)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "सालायग्रा अखाफोर बेन्दोंफोर(जखा सुजाथाव)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "गोजौनि लाउ बेन्दोंफोर(जखा सुजाथाव)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "गाहायनि लाउ बेन्दोंफोर (जखा सुजाथाव)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "दालाय स्क्रिप्ट आगदा"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "गोहो"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "दालाय स्क्रिप्ट आगसि"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "सुपार स्क्रिप्ट आगसि"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "दालाय स्क्रिप्ट गाहायनि"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "सुपार स्क्रिप्ट गोजौनि"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "फिसा लांदां"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
#, fuzzy
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "लांजां"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "गोदान सारि"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "थोंगोर स्टेक (2 गुदि मुवा)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "थोंगोर स्टेक"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "मेट्रिक्स स्टेक"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "आगसिथिं सारि खालाम"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "मिरुआव सारि खालाम"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "आगदाथिं सारि खालाम"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "एलेफ"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "लांदां जथाय"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "थार बाहागो"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "थारनङै बाहागो"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
#, fuzzy
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "सिमा गोयै"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "खावख्लाबसे"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "नाब्ला"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "उइयारस्ट्रास p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "गेजेराव बिन्दु"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "गोजौयाव बिन्दु"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
#, fuzzy
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "गाहायाव बिन्दु"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "गाहायाव बिन्दु"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "थोंगोरै थानाय बिन्दु"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "ज' खालाम"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
#, fuzzy
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "राननाय (स्लेश)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "राननो"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "रानना"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "नैगुण थिर आगसि"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "नैगुण थिर आगसि आरो आगदा"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "नैगुण थिर आगदा"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "सरासनस्रा अनजिमा फोरनि जथाय"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "आबुं अनजिमानि जथाय"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "गुबै उनजिमानि जथायफोर"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "थार अनजिमा फोरनि जथाय"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "जेथो गोनां अनजिमा फोरनि जथाय"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "गेदेर गारां बोनाय सिन"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "गेदेर टिल्ड"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "गेदेर भेक्टर थिर"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h बार"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "लाम्बडा बार"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "आगसि थिर"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "आगदा थिर"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "गोजौनि थिर"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "गाहायनि थिर"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr ""
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr ""
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr ""
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr ""
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr ""
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr ""
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr ""
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr ""
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr ""
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "इउनारि/बायनारि सालायग्राफोर"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "सोमोन्दोफोर"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
#, fuzzy
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "सालायग्राफोर फज'"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "खामानिफोर"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
#, fuzzy
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "सालायग्राफोर"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "गुणफोर"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
#, fuzzy
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "बेन्दोंफोर"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
#, fuzzy
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "दाथाय"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "गुबुन"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
#, fuzzy
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "बिदिन्थि"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "थाखोमान"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "फारसे खेंख्रा हांखो"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "बल्ड"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "STR_BLACK"
msgid "black"
msgstr "गोसोम"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "गोथां"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "सोमखोर"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr ""
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "फुरगेव"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "सम"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "गोमो"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "एरसो"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "महर"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "फन्ट"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "आगसि"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "मिरु"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "आगदा"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "बिथोनफोर"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "फरमुला"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "फोरमान बिलाइखौ थि गासिनो दङ..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION फरमुला"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "मिजिंथियै हांखो"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' मिजिंथिनाय"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' मिजिंथिनाय"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' मिजिंथिनाय"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' मिजिंथिनाय"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' मिजिंथिनाय"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "गोनांथि जानाय गाब"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' मिजिंथिनाय"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME कल्क"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "आयदाफोर"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "बिमुं"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~फरमुला फराय बिजाब"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "सिमनाफोर"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "महर"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "गुबै महर"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~बिखंनि गोरोबनाय"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
diff --git a/source/brx/svtools/messages.po b/source/brx/svtools/messages.po
index 660fe0a4ecf..5d4c34257be 100644
--- a/source/brx/svtools/messages.po
+++ b/source/brx/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,482 +17,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "सिगांनि महराव लाबोफिननाय:"
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "मावफिननाय:"
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "दाथाय खालामै फराय बिजाब"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx इसिङारि सोमोन्दो निफ्राय थाखोमान मोनथिहोनाय"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "नेटस्केप बिजाबनि बिखं सिन"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "स्टार सार्भार दाथाय"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "स्टार बेसाद दाथाय"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "आप्लेट बेसाद"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "प्लाग-इन बेसाद"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "स्टार रायटार 3.0 बेसाद"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "स्टार रायटार 4.0 बेसाद"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "स्टार रायटार 5.0 बेसाद"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "स्टार रायटार/ वेब 4.0 बेसाद"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "स्टार रायटार/ वेब 5.0 बेसाद"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "स्टार रायटार/ गाहाय 4.0 बेसाद"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "स्टार रायटार/ गाहाय 5.0 बेसाद"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "स्टारड्र बेसाद"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "स्टारड्र 4.0 बेसाद"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "स्टार इम्प्रेस 5.0 बेसाद"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "स्टारड्र 5.0 बेसाद"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "स्टारकल्क बेसाद"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "स्टारकल्क 4.0 बेसाद"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "स्टारकल्क 5.0 बेसाद"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "स्टारचार्ट बेसाद"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "स्टारचार्ट 4.0 बेसाद"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "स्टारचार्ट 5.0 बेसाद"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "स्टारमुसुखा बेसाद"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "स्टारमुसुखा 4.0 बेसाद"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "स्टारमुसुखा 5.0 बेसाद"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "स्टार सानखानथि बेसाद"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "स्टार सानखानथि 4.0 बेसाद"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "स्टार सानखानथि 5.0 बेसाद"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "स्टारबेसाद पेन्ट बेसाद"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "मायक्र'सफ्ट वर्ड बेसाद"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "स्टारफ्रेमसेट बेसाद"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "अफिस फोरमान बिलाइ बेसाद"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "सुंद' लिरथाय फोरमान बिलाइ मोनथिहोनाय"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx फोरमान बिलाइ"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "स्टारचार्ट 5.0 बेसाद"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "बोसावगारि बेसाद"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "उइन्डस मेटाफाइल"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "डाटा फुंखा बेसाद"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "डाटा फुंखा फारिलाइ"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL सोंनाय"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "सोमोन्दो"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "बिबुं गैयाबालानो HTML दाथाय"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "% बेसादखौ सोसननो हाया।"
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "% फाइल निफ्राय बेसादखौ सोसननो हाया।"
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "गोबां बेसाद"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "मोनथिमोनै फुंखा"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "बाइटस"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -500,1253 +500,1253 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "आल्फानिउमारिक"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "सरासनस्रा"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "हांखो जथाय"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "सोदोब बिहुं"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "पिनयिन"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "स्ट्रक"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "रेडिकेल"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "इउनिक'ड"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "झुयिन"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "फ'न बिजाब"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "रिंसार बिगियान सोमोन्दै (आल्फान्युमरिक गिबि)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "रिंसार बिगियान सोमोन्दै (जोबथा आल्फानिउमारिक)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "आल्फानिउमारिक"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "सोदोब बिहुं"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "पिनयिन"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "रेडिकेल"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "स्ट्रक"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "झुयिन"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "रिंसार बिगियान सोमोन्दै (गिबि आल्फानिउमारिक, फराय फारिजों हानजा खालामबाय)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "रिंसार बिगियान सोमोन्दै (गिबि आल्फानिउमारिक, खौरां हांखोजों हानजा खालामबाय)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "रिंसार बिगियान सोमोन्दै(जोबथा आल्फानिउमारिक, फराय फारिजों हानजा खालामबाय)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "रिंसार बिगियान सोमोन्दै (जोबथा आल्फानिउमारिक, खौरां हांखोजों हानजा खालामबाय)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "एसे"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "एसे फारसे खेंख्रा हांखो"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "अराय सम"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "फारसे खेंख्रा हांखो"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "बल्ड"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "बल्ड फारसे खेंख्रा हांखो"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "गोसोम"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "गोसोम फारसे खेंख्रा हांखो"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "बिजाब"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "गथा जाहोनाय"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "नोंथांनि साफायग्रा आरो स्क्रिन मोनैबो एखे फन्ट बाहाय जागोन।"
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "बेयो मोनसे साफायग्रा फन्ट। स्क्रिन मुसुखाया गुबुन गुबुन जानो हागौ।"
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "बे फन्ट आदब सिमुलेट खालामनाय जागोन एबा खाथिसिन गोरोबनाय आदबखौ बाहायनाय जागोन।"
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "बे फन्टखौ इनष्टल खालामनाय जायाखै। खाथिसिन मोननो हाथाव फन्ट बाहायनाय जागोन।"
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "फ्रेम लोरिहो"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "आगसिथिं लोरिहो"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "आगदाथिं लोरिहो"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "गाहायाव लाबो"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "दाजाबदेर"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "समानथिनि बायजोआव"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "थोंगोरै थानाय खुंगिरि"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 बिट थ्रेशोल्ड"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 बिट डिथारड"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 बिट ग्रे स्केल"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "4 बिट ग्रे स्केल"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 बिट थार गाब"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "बेसेन"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "रोखोम"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "थाद' हो"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "जागायजेन गासिनो दङ..."
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "नेथ गासिनो दङ"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "गोरोनथि"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "बिखंखौ हुखुमोर"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "थोजासे नङै मेमरी"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "खामानिआव उदायै साफायग्रा"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
#, fuzzy
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "सोदोब फोरमान बिलाइफोर"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<जेबो नङा>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "कम्पानि"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "बिफान"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "गिबि मुं"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "जोबथा मुं"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "लामा"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "हादोत"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Zip क'ड"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "नोगोर"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "बिमुं"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "जायगा"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "थं फर्म"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "चहिफोर"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "हामलायनाय बंद खालाम"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "टेलेफ'न: न'"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "टेलेफ'न: खामानि"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "सुद' लिरथाय"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "बाहायग्रा 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "बाहायग्रा 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "बाहायग्रा 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "बाहायग्रा 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "राइजो"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "टेलेफ'न: अफिस"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "पेजार"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "मबाइल"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "टेलेफ'न: गुबुन"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "केलेण्डार"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "हांख्राय हर"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE गोनांथि जाबाय"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE सायख"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE आ गोरोनथि गोनां"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "फुंखा क'ड"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "बिजाबनि बिखं सिन फाइल"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "बो सावगारि"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "बायजोनि महर फाइल"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "बाहायनाय"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "डाटाबेस फारिलाइ"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "सिस्टेम फाइल"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "मायक्र'सफ्ट वर्ड फोरमान बिलाइ"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "मदद फाइल"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML फोरमान बिलाइ"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "आर्किभ फाइल"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "लग फाइल"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice 5.0 टेमप्लेट"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 गाहाय फोरमान बिलाइ"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice 5.0 टेमप्लेट"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "फराय बिजाब फाइल"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "सोमोन्दो"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 5.0 टेमप्लेट"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "मायक्र'सफ्ट एक्सेल फोरमान बिलाइ"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "मायक्र'सफ्ट एक्सेल टेमप्लेट"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "बेच फाइल"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "फाइल"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "फल्डार"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "फराय बिजाब फोरमान बिलाइ"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "स्प्रेडशीट"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "प्रेजेन्टेसन"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "सावगारि"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML फोरमान बिलाइ"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "गाहाय फोरमान बिलाइ"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "फरमुला"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "डाटाबेस"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "जायगानि ड्राइभ"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "डिस्क ड्राइभ"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM ड्राइभ"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "नेटवर्क फोनांजाबनाय"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "मायक्र'सफ्ट पावारपइन्ट फोरमान बिलाइ"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "मायक्र'सफ्ट पावारपइन्ट टेमप्लेट"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "मायक्र'सफ्ट पावारपइन्ट दिनथिनाय"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML फोरमान बिलाइ"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "उदां फोरमान बिलाइ डाटाबेस"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "उदां फोरमान बिलाइ सावगारि"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "उदां फोरमान बिलाइ फरमुला"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "उदां फोरमान बिलाइ गाहाय फोरमान बिलाइ"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "उदां फोरमान बिलाइ प्रेजेनटेसन"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "उदां फोरमान बिलाइ स्प्रेडशीट"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "उदां फोरमान बिलाइ फराय बिजाब"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "उदां फोरमान बिलाइ स्प्रेडशीट टेमप्लेट"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "उदां फोरमान बिलाइ सावगारि टेमप्लेट"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "उदां फोरमान बिलाइ प्रेजेनटेसन टेमप्लेट"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "उदां फोरमान बिलाइ फराय बिजाब टेमप्लेट"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr ""
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/brx/svx/messages.po b/source/brx/svx/messages.po
index cdc467107d5..a47879a1266 100644
--- a/source/brx/svx/messages.po
+++ b/source/brx/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Bodo <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/brx/>\n"
@@ -16694,12 +16694,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
-#, fuzzy
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "सुद' लिरथाय"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/brx/sw/messages.po b/source/brx/sw/messages.po
index 4fec16b1361..aed4a79a028 100644
--- a/source/brx/sw/messages.po
+++ b/source/brx/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18012,87 +18012,93 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "सरासनस्रा"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
#, fuzzy
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "लिरबिदांनि बिमुं"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr ""
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr ""
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr ""
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "उफ्राफोर"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20707,296 +20713,296 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "हेडार"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "फुटार"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
#, fuzzy
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "लेभेल जौगा हो"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
#, fuzzy
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "लेभेल खमि हो"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
#, fuzzy
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "बोनाय म'ड"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "फोरमान बिलाइ"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
#, fuzzy
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "मावथि विंडो"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
#, fuzzy
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "सुजु"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
#, fuzzy
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "आपडेट खालाम"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
#, fuzzy
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "सोसन"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "साजों लोरि होनाय"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "गाहायजों लोरिहोनाय"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/bs/helpcontent2/source/text/scalc/01.po b/source/bs/helpcontent2/source/text/scalc/01.po
index 95c0d5bd3f1..ba7a6c80a20 100644
--- a/source/bs/helpcontent2/source/text/scalc/01.po
+++ b/source/bs/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2018-11-12 13:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr ""
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/sdraw.po b/source/bs/helpcontent2/source/text/sdraw.po
index 06136d630f6..850ef091726 100644
--- a/source/bs/helpcontent2/source/text/sdraw.po
+++ b/source/bs/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 10:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/shared/00.po b/source/bs/helpcontent2/source/text/shared/00.po
index 713c2b05f35..8c63e58a48f 100644
--- a/source/bs/helpcontent2/source/text/shared/00.po
+++ b/source/bs/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr ""
-#. ygQrE
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
msgstr ""
-#. d59SH
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"hd_id3147315\n"
-"help.text"
-msgid "Register-true"
-msgstr "Registar-tačno"
-
-#. ECfHB
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/bs/helpcontent2/source/text/shared/01.po b/source/bs/helpcontent2/source/text/shared/01.po
index ae9213dcbf8..261bcf8709a 100644
--- a/source/bs/helpcontent2/source/text/shared/01.po
+++ b/source/bs/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr ""
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr ""
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr ""
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,13 +9376,13 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "Mijenja sa master na normalni način rada"
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
msgstr ""
#. 3Lq2G
@@ -9430,13 +9412,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr ""
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
msgstr ""
#. nRB3E
@@ -9466,13 +9448,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Kliknite i odaberite sadržaj koji želite obnoviti.</ahelp>"
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
msgstr ""
#. F4J5u
@@ -9601,13 +9583,13 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "Možete unijeti dokument u master dokument povlačenjem dokumenta sa desktopa i puštanjem istog na master pogled navigatora."
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
msgstr ""
#. ijR7M
@@ -9709,13 +9691,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr ""
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
msgstr ""
#. ADEyJ
@@ -9745,13 +9727,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
msgstr ""
#. GqEUL
@@ -9781,13 +9763,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
msgstr ""
#. DLEGF
diff --git a/source/bs/helpcontent2/source/text/shared/02.po b/source/bs/helpcontent2/source/text/shared/02.po
index 30fb547d56e..f2eda9840ed 100644
--- a/source/bs/helpcontent2/source/text/shared/02.po
+++ b/source/bs/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 13:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/20100000.xhp\" name=\"Date\">Datum</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11059,14 +11059,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153824\" src=\"cmd/sc_drawselect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153824\">Icon</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr ""
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/20100000.xhp\" name=\"Date\">Datum</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11131,14 +11131,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149379\" src=\"cmd/sc_bezier_unfilled.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149379\">Icon</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/bs/helpcontent2/source/text/shared/optionen.po b/source/bs/helpcontent2/source/text/shared/optionen.po
index 8a32886a527..401136de1b5 100644
--- a/source/bs/helpcontent2/source/text/shared/optionen.po
+++ b/source/bs/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11860,31 +11860,31 @@ msgctxt ""
msgid "Snap"
msgstr "Lijepi"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
+msgid "To snap guides"
msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
msgstr ""
#. eUCCJ
diff --git a/source/bs/helpcontent2/source/text/simpress/02.po b/source/bs/helpcontent2/source/text/simpress/02.po
index 026ba018f30..ed571cba69d 100644
--- a/source/bs/helpcontent2/source/text/simpress/02.po
+++ b/source/bs/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 10:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5695,40 +5695,40 @@ msgctxt ""
msgid "Exit all groups"
msgstr ""
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
#. oXWsX
diff --git a/source/bs/helpcontent2/source/text/swriter.po b/source/bs/helpcontent2/source/text/swriter.po
index 802e3d58a60..2dd7a470f73 100644
--- a/source/bs/helpcontent2/source/text/swriter.po
+++ b/source/bs/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-10-21 20:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2212,13 +2212,13 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "S lijeva na desno"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
msgstr ""
#. Xg9vt
@@ -2239,13 +2239,13 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "S desna na lijevo"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
msgstr ""
#. TMwGp
diff --git a/source/bs/helpcontent2/source/text/swriter/01.po b/source/bs/helpcontent2/source/text/swriter/01.po
index b1ed2cfb2b5..a20e77256d1 100644
--- a/source/bs/helpcontent2/source/text/swriter/01.po
+++ b/source/bs/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-10-21 20:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "Navigator"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr ""
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/swriter/guide.po b/source/bs/helpcontent2/source/text/swriter/guide.po
index 278abf78f12..af92d582c3d 100644
--- a/source/bs/helpcontent2/source/text/swriter/guide.po
+++ b/source/bs/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-12 13:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7792,49 +7792,49 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr ""
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
msgstr ""
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
msgstr ""
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
msgstr ""
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
+msgid "Positioning indents"
msgstr ""
#. qUxKq
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr ""
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr ""
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr ""
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr ""
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,13 +10294,13 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr ""
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
msgstr ""
#. aahB7
@@ -10267,13 +10330,22 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Uradite jedno od sljedecih"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
msgstr ""
#. hDANA
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr ""
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12211,6 +12292,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr ""
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12256,49 +12355,49 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr ""
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
+msgid "Return to <emph>Print</emph> dialog."
msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Click <emph>Zatvori</emph>."
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
msgstr ""
#. FgeK4
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr ""
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,32 +12724,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr ""
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
+msgid "Choose <menuitem>File - Print</menuitem>"
msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Uradite jedno od sljedecih"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/bs/sc/messages.po b/source/bs/sc/messages.po
index c10b261bed9..0c2bd376992 100644
--- a/source/bs/sc/messages.po
+++ b/source/bs/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29283,38 +29283,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Koristite printer metriku za formatiranje teksta"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "Određuje da su metrike štampača primijenjene za štampanje i isto za formatiranje prikaza na ekranu."
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Istakni selekciju _u zaglavlju kolone/reda"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr ""
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
#, fuzzy
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
diff --git a/source/bs/sfx2/messages.po b/source/bs/sfx2/messages.po
index 0f29dbd916e..ae48352a03e 100644
--- a/source/bs/sfx2/messages.po
+++ b/source/bs/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1640,289 +1640,251 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Spajanje"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Odvajanje"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Više opcija"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Zatvori skup bočnih traka"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr ""
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Podešavanja"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Vratiti uobičajeno"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr ""
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Ukloni"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4243,6 +4205,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Izbriši..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/bs/starmath/messages.po b/source/bs/starmath/messages.po
index c2bd2dd3b14..ecbfed5ea80 100644
--- a/source/bs/starmath/messages.po
+++ b/source/bs/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-05-08 13:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -425,2074 +425,2207 @@ msgid "or"
msgstr "ili"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+ znak"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "- znak"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+- znak"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "-+ znak"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Logičko NE"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Sabiranje +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Oduzimanje -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Množenje (skalarno)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Množenje (vektorsko)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Množenje (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Dijeljenje (kroz)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Dijeljenje (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Dijeljenje (razlomak)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Logičko I"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Logičko ILI"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Je jednako"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Nije jednako"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Je manji od"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Je veće od"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Manji od ili jednak"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Veće od ili jednako"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Manji od ili jednak"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Veće od ili jednako"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Je mnogo manji od"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Je mnogo veće od"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Je kongruentno sa"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Je približno jednako"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Je slično sa"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Je sličan ili jednak"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Je proporcionalno sa"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Je ortogonalan sa"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Je pralalelan sa"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Prema"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Je u"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Nije u"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Posjeduje"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Unija"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Presjek"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Razlika"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Podskup"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Je podskup ili jednako sa"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Nadskup"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Je nadskup ili jednako sa"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Nije podskup"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Nije podskup ili jednak"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Nije nadskup"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Nije nadskup ili jednak"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Apsolutna vrijednost"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Faktorijel"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Kvadratni korijen"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N-ti korijen"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Eksponencijalna funkcija"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Eksponencijalna funkcija"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Prirodni logaritam"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logaritam"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sinus"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Kosinus"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangens"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Kotangens"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arkus sinus"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arkus kosinus"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arkus tangens"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arkus kotangens"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Hiperbolni sinus"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Hiperbolni kosinus"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Hiperbolni tangens"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Hiperbolni kotangens"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Inverzni hiperbolni sinus"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Inverzni hiperbolni kosinus"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Inverzni hiperbolni tangens"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Inverzni hiperbolni kotangens"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Suma"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Indeks dolje"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Eksponent gore"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Suma Sup/Sub script"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Proizvod"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Indeks dolje"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Eksponent gore"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Proizvod Sup/Sub script"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Koprodukt"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Indeks dolje"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Eksponent gore"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Koprodukt Sup/Sub script"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Limes"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Indeks dolje"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Eksponent gore"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Limes Sup/Sub script"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Postoji"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Ovdje ne postoji"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Za sve"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integral"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Indeks dolje"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Eksponent gore"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integral Sup/Sub script"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Dvojni integral"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Indeks dolje"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Dvojni integral"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Dvojni integral"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Trojni integral"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Indeks dolje"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Trojni integral"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Trojni integral"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Krivolinijski integral"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Indeks dolje"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Eksponent gore"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Krivolinijski integral"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Dvojni krivolinijski integral"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Dvojni krivolinijski integral"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Dvojni krivolinijski integral"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Dvojni krivolinijski integral"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Trojni krivolinijski integral"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Trojni krivolinijski integral"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Trojni krivolinijski integral"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Trojni krivolinijski integral"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Akcenat akut"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Linija iznad"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Breve"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Obrnuti circumfleks"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Krug"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Tačka"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Dvostruka tačka"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Tri tačke"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Akcenat grav"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Cirkumfleks"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tilda"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Vektorska strelica"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Linija ispod"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Linija preko"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Linija kroz"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Providno"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Masni font"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Kurziv font"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Promijeni veličinu"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Promijeni font"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Boja crna"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Boja plava"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Boja zelena"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Boja crvena"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
#, fuzzy
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Birač boja"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
#, fuzzy
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Tabela boja"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Boja žuta"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Grupne zagrade"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Oble zagrade"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Uglaste zagrade"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Dvostruke uglaste zagrade"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Zagrade"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Uglaste zagrade"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Gornje ograničenje"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Dno"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Pojedinačne linije"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Dvostruke linije"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Operatorske zagrade"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Male zagrade (promjenljive)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Uglaste zagrade (promjenjljive)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Dvostruke uglaste zagrade (promjenjive)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Zagrade (promjenjive)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Uglaste zagrade (promjenjive)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Vrh (promjenjive)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Dno (promjenjive)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Jednostruke linije (promjenjive)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Dvostruke linije (promjenjive)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Operatorske zagrade (promjenjive)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Gornje vitičaste zagrade (promjenjive)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Donje vitičaste zagrade (promjenjive)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Indeks desno"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Stepen"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Indeks lijevo"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Eksponent lijevo"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Indeks dolje"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Eksponent gore"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Mali razmak"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Prazno"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Novi red"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Vertikalna hrpa (2 elementa)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Vertikalna hrpa"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Hrpa matrica"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Poravnaj lijevo"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Centriraj"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Poravnaj desno"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Alef"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Prazan skup"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Realni dio"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Imaginarni dio"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Beskonačno"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Djelomično"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrassova p-funkcija"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Tačke na sredini"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Tačke do vrha"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Tačke do dna"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Tačke na dolje"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Tačke uspravno"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Spoji"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Dijeljenje (kroz)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Dijeljenje (kroz)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Dijeli"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Ne dijeli"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Dvostruka strelica lijevo"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Dvostruka strelica lijevo i desno"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Dvostruka strelica desno"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Skup prirodnih brojeva"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Skup cijelih brojeva"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Skup racionalnih brojeva"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Skup realnih brojeva"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Skup kompleksnih brojeva"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Veliki Cirkumifleks"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Velika tilda"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Velika vektorska strelica"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h bar"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda bar"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Strelica ulijevo"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Strelica udesno"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Strelica gore"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Strelica dolje"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Nema prostora"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Prethodi"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Prethodi ili jednako"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Prethodi ili ekvivalentno"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Uspješno"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Slijedi ili jednako"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Slijedi ili ekvivalentno"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Ne prethodi"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Ne slijedi"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Unarni/binarni operatori"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Relacije"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Operacije nad skupovima"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funkcije"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operatori"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Atributi"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Zagrade"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formati"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Ostalo"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Primjeri"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standardno"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kurziv"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Masno"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "crna"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "plava"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "zelena"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "crvena"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "Siva"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "lime"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "kestenjasta"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "mornarska"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "maslinasta"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "ljubičasta"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "srebrena"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "grogotovac"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "žuta"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "sakriti"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "veličina"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "font"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "lijevo"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centar"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "desno"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Naredbe"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formula"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Snimam dokument..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION formula"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "GREŠKA : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Neočekivani znak"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' očekivana"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' očekivana"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "očekivana '('"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "očekivano je ')'"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "očekivan '#'"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Zahtjevana je boja"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Očekivan 'RIGHT'"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Sadržaj"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Naslov"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Tekst formule"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Rubovi"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Veličina"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Originalna veličina"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Stati na stranicu"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
diff --git a/source/bs/svtools/messages.po b/source/bs/svtools/messages.po
index e393780c7d3..8189891150c 100644
--- a/source/bs/svtools/messages.po
+++ b/source/bs/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Poništi: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Ponovi: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Neformatirani tekst"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Informacija o stanju od Svx unutrašnje veze"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape-ova zabilješka"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Format Star servera"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Format objekta Zvijezda"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Objekat apleta"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Dodatak objekat"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objekat StarWriter 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objekat StarWriter 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objekat StarWriter 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objekat StarWriter/Web 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objekat StarWriter/Web 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 objekat"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 objekat"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objekat StarDraw"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objekat StarDraw 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objekat StarImpress 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objekat StarDraw 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objekat StarCalc"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objekat StarCalc 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objekat StarCalc 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objekat StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objekat StarChart 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objekat StarChart 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objekat StarImage"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objekat StarImage 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objekat StarImage 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objekat StarMath"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objekat StarMath 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objekat StarMath 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objekat StarObject Paint"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Svila"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objekat Microsoft Word"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objekat StarFrameSet"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Objekat Office-ovog dokumenta"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Podaci o Notes dokumentu"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Dokument Sfx"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objekat StarChart 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Grafički objekat"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer objekat"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web objekat"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Master objekat"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Objekat za crtanje"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress objekat"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc objekat"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart objekat"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math objekat"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows metadatoteka"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Objekat izvora podataka"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabela izvora podataka"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL upit"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 dijalog"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Veza"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML format bez komentara"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objekat % nije moguće ubaciti."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objekat iz datoteke % nije moguće ubaciti."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Dodatni objekti"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Nepoznat izvor"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bajta"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1246 +501,1246 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerički"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normalan"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Skup znakova"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Rječnik"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Prekriženo"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unikod"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonski imenik"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetski (alfa-numerički prvo)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetski (alfa-numerički posljednje)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerički"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Rječnik"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Prekriženo"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetski (alfa-numerički prvo, grupisano po suglasnicima)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetski (alfa-numerički prvo, grupisano po samoglasnicima)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetski (alfa-numerički posljednje, grupisano po suglasnicima)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetski (alfa-numerički posljednje, grupisano po samoglasnicima)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Lagani"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Svijetla kurziv"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Običan"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kurziv"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Masno"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Masno i kurziv"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Crna"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Crna kurziv"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Knjiga"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Zgusnuto"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "polu-masno"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Isti font će biti korišten i za štampač i za ekran."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Ovo je font štampača. Slika na ekranu se može razlikovati."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Ovaj stil pisanja će biti simuliran ili će se koristiti najbliži odgovarajući."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Ovaj font nije instaliran. Najbliži dostupni font će se koristiti."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Pomjeri na početak"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Pomjeri ulijevo"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Pomjeri udesno"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Pomjeri na kraj"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Dodaj"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "_Vodoravni linijar"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Uspravni linijar"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 bit prag"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bit tačkano"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 bitni sivi tonovi"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 bitna boja"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 bitni sivi tonovi"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 bitna boja"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 bitna prava boja"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Slici je potrebno oko %1 KB memorije."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Slici je potrebno %1 KB memorije, veličina datoteke je %2 KB."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Veličina datoteke je %1 KB."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Cijena"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Sortiranje"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Spreman"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Pauziran"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "U toku brisanje"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Zauzet"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Inicijaliziranje"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Čekanje"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Zagrijavanje"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "U obradi"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Štampanje"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Izvan mreže"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Greška"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Nepoznat server"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Zastoj papira"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Nedovoljno papira"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Ručno napajanje"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problem sa papirom"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O aktivan"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Izlazni spremnik prazan"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Toner skoro prazan"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Nema tonera"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Obriši stranu"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Potrebna intervencija korisnika"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Nedovoljno memorije"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Otvoren poklopac"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Način uštede energije"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Uobičajeni štampač"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumenata"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ništa>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Firma"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Odjel"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Ime"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Prezime"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Ulica"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Država"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Poštanski broj"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Grad"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Naslov"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Položaj"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Forma adrese"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Inicijali"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Zaključni pozdrav"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel. (kuća)"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel. (posao)"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Napomena"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Korisnik 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Korisnik 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Korisnik 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Korisnik 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Identifikacija"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Kanton"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel. (ured)"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pejdžer"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobilni"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel. (ostalo)"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalendar"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Pozovi"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Konfiguracija %PRODUCTNAME je promijenjena. Pod %PRODUCTNAME - Postavke - %PRODUCTNAME - Napredno, odaberite Java runtime okruženje koje želite da koristi %PRODUCTNAME."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME konfiguracija je promijenjena. Pod Alati - Opcije - %PRODUCTNAME - Napredno, odaberite Java runtime okruženje koje želite da koristi %PRODUCTNAME."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME zahtijeva Java runtime okruženje (JRE) za izvođenje ovog zadatka Odabrani JRE je neispravan. Odaberite drugu verziju ili instalirajte novi JRE i odaberite ga pod %PRODUCTNAME - Prvenstvo - %PRODUCTNAME - Napredno."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME zahtijeva Java runtime okruženje (JRE) za izvođenje ovog zadatka. Odabrani JRE je neispravan. Odaberite drugu verziju ili instalirajte novi JRE i odaberite ga pod Alati - Opcije - %PRODUCTNAME - Napredno."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE zahtijevan"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Odaberite JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE je neispravan"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Izvorni kod"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Datoteka zabilješki"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Ilustracije"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfiguracijska datoteka"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplikacija"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tabela baze podataka"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Sistemska datoteka"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word dokument"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Datoteka pomoći"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML dokument"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Arhivska datoteka"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Dnevnik"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice Baza podataka"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 master dokument"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice slika"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekstualna datoteka"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Veza"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Staroffice 3.0 - 5.0 šablon"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel dokument"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel šablon"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Komandna datoteka"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Datoteka"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Direktorij"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tekstualni dokument"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Proračunska tablica"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Prezentacija"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Crtež"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML dokument"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Master dokument"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formula"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Baza podataka"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 šablon proračunske tablice"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 šablon za crtanje"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 šablon prezentacije"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 šablon tekstualnog dokumenta"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Lokalni disk"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Disk jedinica"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM jedinica"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Mrežna konekcija"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint dokument"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint šablon"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint prezentacija"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 Formula"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 grafikon"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 Crtež"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 Proračunske tablice"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 prezentacija"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 Tekstualni dokument"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 master dokument"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML dokument"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument baza podataka"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument crtež"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument formula"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument master dokument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument prezentacija"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument tablični proračun"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument tekst"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument šablon tabličnog proračuna"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument šablon crteža"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument šablon prezentacije"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument šablon teksta"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Dodatak za %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/bs/svx/messages.po b/source/bs/svx/messages.po
index a63d0ffedc1..839eeea298a 100644
--- a/source/bs/svx/messages.po
+++ b/source/bs/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16685,12 +16685,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
-#, fuzzy
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "Komentari"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/bs/sw/messages.po b/source/bs/sw/messages.po
index 59d6c846f3f..25f27ab325b 100644
--- a/source/bs/sw/messages.po
+++ b/source/bs/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17804,88 +17804,94 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Opšte"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "_Naslov"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
#, fuzzy
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "_Ponovi naslove redova na novim stranicama"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "_Ne dijeli tabelu preko stranica"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
#, fuzzy
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Redovi sa _zaglavljem:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Postavke"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20493,296 +20499,296 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Zaglavlje"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Podnožje"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Sljedeći button."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
#, fuzzy
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Povećaj razinu"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
#, fuzzy
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Smanji razinu"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
#, fuzzy
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Način prevlačenja"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Dokument"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
#, fuzzy
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Aktivni prozor"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Izmijeni"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Ažuriraj"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Kliknite i odaberite sadržaj koji želite obnoviti."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
#, fuzzy
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Umetni"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Unosi dokument, indeks, ili novi dokument u master dokument."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
#, fuzzy
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Pomjeri _gore"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
#, fuzzy
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Pomjeri _dolje"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/ca-valencia/helpcontent2/source/text/scalc/01.po b/source/ca-valencia/helpcontent2/source/text/scalc/01.po
index fd478210766..c826a18a2bc 100644
--- a/source/ca-valencia/helpcontent2/source/text/scalc/01.po
+++ b/source/ca-valencia/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2020-07-18 19:34+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/ca_VALENCIA/>\n"
@@ -56474,6 +56474,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr "Ús d'expressions regulars i funcions imbricades"
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/sdraw.po b/source/ca-valencia/helpcontent2/source/text/sdraw.po
index adf25df4b67..80bbc1b71de 100644
--- a/source/ca-valencia/helpcontent2/source/text/sdraw.po
+++ b/source/ca-valencia/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-18 19:35+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/ca_VALENCIA/>\n"
@@ -170,6 +170,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.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 28b1ce21911..0b959f97615 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/00.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-07-18 19:34+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/ca_VALENCIA/>\n"
@@ -2663,76 +2663,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "Un bon exemple de base de dades relacional pot ser una base de dades que continga les taules Clients, Compres i Factures. A la taula Factures no hi ha cap dada de clients ni de compres, però la taula conté referències mitjançant enllaços relacionals o una relació als respectius camps de les taules Clients i Compres (per exemple, el camp de l'identificador de client de la taula Clients)."
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>conforme al registre; definició</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "Conforme al registre"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/01.po b/source/ca-valencia/helpcontent2/source/text/shared/01.po
index 9ceac8f1c04..2e08691f1c1 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-30 22:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/ca_VALENCIA/>\n"
@@ -5120,24 +5120,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr "Per alguns tipus de documents, podeu triar imprimir un fullet."
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr ""
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr ""
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9395,14 +9377,14 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "Canvia entre el mode mestre i el mode normal."
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icona</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgstr ""
#. 3Lq2G
#: 02110000.xhp
@@ -9431,14 +9413,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr ""
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icona</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgstr ""
#. nRB3E
#: 02110000.xhp
@@ -9467,14 +9449,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Feu clic al contingut que voleu actualitzar.</ahelp>"
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icona</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgstr ""
#. F4J5u
#: 02110000.xhp
@@ -9602,14 +9584,14 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "També podeu inserir fitxers al document mestre; per fer-ho, arrossegueu un fitxer des de l'escriptori i deixeu-lo anar a la vista mestra del Navegador."
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icona</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgstr ""
#. ijR7M
#: 02110000.xhp
@@ -9710,14 +9692,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Guarda una còpia dels continguts dels fitxers enllaçats al document mestre. D'aquesta manera, el contingut actual està disponible quan no es pot accedir als fitxers enllaçats.</ahelp>"
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icona</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgstr ""
#. ADEyJ
#: 02110000.xhp
@@ -9746,14 +9728,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Desplaça la selecció una posició cap amunt a la llista del Navegador.</ahelp> Per a desplaçar les entrades, arrossegueu-les i deixeu-les anar a la llista. Si moveu una secció de text a una altra secció, es fusionen les dues seccions de text."
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icona</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgstr ""
#. GqEUL
#: 02110000.xhp
@@ -9782,14 +9764,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Desplaça la selecció una posició cap avall a la llista del Navegador.</ahelp> També podeu desplaçar les entrades si les arrossegueu i les deixeu anar a la llista. Si desplaceu una secció de text a una altra secció, es fusionen les dues seccions de text."
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
-msgstr "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icona</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgstr ""
#. DLEGF
#: 02110000.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/02.po b/source/ca-valencia/helpcontent2/source/text/shared/02.po
index 16123ac9ed3..1857805748d 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/02.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-18 19:34+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/ca_VALENCIA/>\n"
@@ -11033,14 +11033,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Redueix el sagnat\">Redueix el sagnat</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11060,14 +11060,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icona</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11105,14 +11105,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr "<bookmark_value>paràgrafs; augment del sagnat dels</bookmark_value><bookmark_value>augment del sagnat del paràgraf</bookmark_value>"
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Augmenta el sagnat\">Augmenta el sagnat</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11132,14 +11132,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icona</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/optionen.po b/source/ca-valencia/helpcontent2/source/text/shared/optionen.po
index 5805c3e6c08..06755525258 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/optionen.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-30 22:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/ca_VALENCIA/>\n"
@@ -11861,32 +11861,32 @@ msgctxt ""
msgid "Snap"
msgstr "Ajusta"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "A les línies de captura"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "També podeu definir este paràmetre mitjançant la icona <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Ajusta a les guies\"><emph>Ajusta a les guies</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Ajusta a les guies\"><emph>Ajusta a les guies</emph></link></caseinline><defaultinline><emph>Ajusta a les guies</emph></defaultinline></switchinline>, que està disponible a la barra <emph>Opcions</emph> d'una presentació o d'un document de dibuix."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr ""
#. eUCCJ
#: 01070300.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/simpress/02.po b/source/ca-valencia/helpcontent2/source/text/simpress/02.po
index dca48d85d61..cc758fdcdc0 100644
--- a/source/ca-valencia/helpcontent2/source/text/simpress/02.po
+++ b/source/ca-valencia/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-05-23 22:45+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress02/ca_VALENCIA/>\n"
@@ -5696,41 +5696,41 @@ msgctxt ""
msgid "Exit all groups"
msgstr "Ix de tots els grups"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Ajusta a les guies"
+msgid "Snap to Snap Guides"
+msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Ajusta a les guies\">Ajusta a les guies</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icona</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Ajusta a les guies"
+msgid "Snap to Snap Guides"
+msgstr ""
#. oXWsX
#: 13150000.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter.po b/source/ca-valencia/helpcontent2/source/text/swriter.po
index cce5daff682..b7ae2e6ada9 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter.po
+++ b/source/ca-valencia/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-18 19:35+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/ca_VALENCIA/>\n"
@@ -2213,14 +2213,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "D'esquerra a dreta"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">icona d'esquerra a dreta</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2240,14 +2240,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "De dreta a esquerra"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">icona de dreta a esquerra</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter/01.po b/source/ca-valencia/helpcontent2/source/text/swriter/01.po
index 338d72fa365..be438036349 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-18 19:34+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/ca_VALENCIA/>\n"
@@ -683,13 +683,13 @@ msgctxt ""
msgid "Navigator"
msgstr "Navegador"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -710,13 +710,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -764,13 +764,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -800,13 +800,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -908,13 +908,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -926,13 +926,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -944,13 +944,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30104,6 +30104,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Obri el diàleg <emph>Destinataris de la combinació de correu</emph>.</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter/guide.po b/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
index fda9d069882..0385c9674eb 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
+++ b/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-07-18 19:34+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/ca_VALENCIA/>\n"
@@ -7793,50 +7793,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Sagnat de paràgrafs</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr "Per a canviar les unitats de mesura, trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME ▸ Preferències</item></caseinline><defaultinline><item type=\"menuitem\">Eines ▸ Opcions</item></defaultinline></switchinline><item type=\"menuitem\"> ▸ %PRODUCTNAME Writer ▸ General</item> i seleccioneu una unitat de mesura nova en l'àrea de configuració."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "Podeu canviar els sagnats del paràgraf actual, de tots els paràgrafs seleccionats o per a un estil de paràgraf."
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "Podeu canviar els sagnats del paràgraf actual, de tots els paràgrafs seleccionats o per a un estil de paràgraf."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "Trieu <item type=\"menuitem\">Format - Paràgraf - Sagnats i espaiat</item> per canviar els sagnats del paràgraf actual o de tots els paràgrafs seleccionats. També podeu <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">definir els sagnats mitjançant el regle</link>."
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "També podeu <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">definir els sagnats mitjançant el regle</link>. Per visualitzar el regle, trieu <item type=\"menuitem\">Visualitza - Regle</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "Trieu <item type=\"menuitem\">Format - Paràgraf - Sagnats i espaiat</item> per canviar els sagnats del paràgraf actual o de tots els paràgrafs seleccionats. També podeu <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">definir els sagnats mitjançant el regle</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "També podeu <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">definir els sagnats mitjançant el regle</link>. Per visualitzar el regle, trieu <item type=\"menuitem\">Visualitza - Regle</item>."
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "Feu clic amb el botó dret en un paràgraf i trieu <item type=\"menuitem\">Edita l'estil del paràgraf - Sagnats i espaiat</item> per canviar els sagnats de tots els paràgrafs amb el mateix estil de paràgraf."
+msgid "Positioning indents"
+msgstr ""
#. qUxKq
#: indenting.xhp
@@ -7847,6 +7847,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "Els sagnats es calculen en relació amb els marges de pàgina esquerre i dret. Introduïu un valor negatiu si voleu que el paràgraf ocupi el marge de la pàgina."
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr "Per a canviar les unitats de mesura, trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME ▸ Preferències</item></caseinline><defaultinline><item type=\"menuitem\">Eines ▸ Opcions</item></defaultinline></switchinline><item type=\"menuitem\"> ▸ %PRODUCTNAME Writer ▸ General</item> i seleccioneu una unitat de mesura nova en l'àrea de configuració."
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7856,6 +7865,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "Els sagnats varien segons la direcció de l'escriptura. Este és el cas, per exemple, del valor de sagnat <item type=\"menuitem\">abans del text </item>per a les llengües que s'escriuen d'esquerra a dreta. La vora esquerra del paràgraf. L'extrem esquerre del paràgraf se sagna respecte del marge esquerre de la pàgina. En canvi, per a les llengües que s'escriuen de dreta a esquerra, amb este valor l'extrem dret del paràgraf se sagna respecte del marge dret de la pàgina."
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7865,6 +7883,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "Per als sagnats francesos, introduïu un valor positiu a <item type=\"menuitem\">Des de l'esquerra</item> i un valor negatiu a <item type=\"menuitem\">Primera línia</item>."
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10232,14 +10295,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "Activació i desactivació del reconeixement de nombres en taules"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>nombres; reconeixement automàtic en taules de text</bookmark_value> <bookmark_value>taules; reconeixement de nombres</bookmark_value> <bookmark_value>dates;formatació automàtica en taules</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10268,14 +10331,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Realitzeu una de les accions següents:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "Feu doble clic a una cel·la de la taula i trieu <item type=\"menuitem\">Reconeixement de nombres</item>. Quan esta característica està activada, es mostra una marca de selecció davant de l'orde <item type=\"menuitem\">Reconeixement de nombres</item>."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10286,6 +10358,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr "Trieu <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Taula</item> i activeu o desactiveu la casella de selecció <item type=\"menuitem\">Reconeixement de nombres</item>."
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12212,6 +12293,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "Quan creeu un document que vulgueu imprimir com a fullet, utilitzeu l'orientació vertical per a les pàgines. El Writer aplicarà el format de fullet quan imprimiu el document."
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12257,50 +12356,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "Si la vostra impressora imprimeix a doble cara, i tenint en compte que els fullets sempre s'imprimeixen en mode horitzontal, haureu d'utilitzar la configuració \"doble cara - vora curta\" del diàleg de configuració de la impressora."
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
-msgstr "Torneu al diàleg <emph>Imprimeix</emph> i feu clic la pestanya <emph>Format de la pàgina</emph>."
+msgid "Return to <emph>Print</emph> dialog."
+msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
-msgstr "Seleccioneu <emph>Fullet</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
+msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "Si la vostra impressora imprimeix automàticament a dues cares, indiqueu que voleu imprimir \"Totes les pàgines\"."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Feu clic a <emph>D'acord</emph>."
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "Si el %PRODUCTNAME imprimeix les pàgines en l'orde equivocat, obriu la pestanya <emph>Opcions</emph>, seleccioneu <emph>Imprimeix les pàgines en orde invers</emph> i torneu a imprimir el document."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12374,6 +12473,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr "<link href=\"text/swriter/01/01120000.xhp\" name=\"Fitxer ▸ Previsualització d'impressió\">Fitxer ▸ Previsualització d'impressió</link>."
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12401,32 +12725,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Impressió de pàgines múltiples en un full\">Impressió de pàgines múltiples en un full</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
-msgstr "A la pestanya <emph>Format de la pàgina</emph> del diàleg <item type=\"menuitem\">Fitxer ▸ Imprimeix</item>, teniu la possibilitat d'imprimir pàgines múltiples en un sol full."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
+msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
-msgstr "Trieu <emph>Fitxer ▸ Imprimeix</emph> i feu clic a la pestanya <emph>Format de la pàgina</emph>."
+msgid "Choose <menuitem>File - Print</menuitem>"
+msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Realitzeu una de les accions següents:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13391,13 +13715,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/ca-valencia/sc/messages.po b/source/ca-valencia/sc/messages.po
index ac555db6116..29c334aa390 100644
--- a/source/ca-valencia/sc/messages.po
+++ b/source/ca-valencia/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-31 11:36+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/ca_VALENCIA/>\n"
@@ -28625,38 +28625,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr "Especifica que quan enganxeu cel·les del porta-retalls a un interval de cel·les que no estiga buit aparega un avís."
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Utilitza la mètrica de la impressora per a la formatació de text"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "Especifica que la mètrica de la impressora s'aplica per imprimir i també per formatar la visualització en pantalla."
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Realça la sele_cció a les capçaleres de columnes/files"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr "Especifica si es realcen les capçaleres de columna i de fila de les columnes o files seleccionades."
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Actualitza les referències en ordenar els intervals de cel·les"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Paràmetres d'entrada"
diff --git a/source/ca-valencia/sfx2/messages.po b/source/ca-valencia/sfx2/messages.po
index 253ceb677d3..0f5857b9280 100644
--- a/source/ca-valencia/sfx2/messages.po
+++ b/source/ca-valencia/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-10-31 11:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/ca_VALENCIA/>\n"
@@ -1652,286 +1652,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Tanca el quadre"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Acobla"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Desacobla"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Més opcions"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Tanca la barra lateral"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Configuració de la barra lateral"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Personalització"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Restaura els valors predeterminats"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Tanca la barra lateral"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alitzarina"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Rusc"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Corba blava"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Cianotip"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Blau brillant"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Roig elegant"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ADN"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Focus"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Au forestal"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impressió"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiració"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Llums"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Verd exuberant"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metròpoli"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Blau de mitjanit"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natura"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Llapis"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portafolis"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progrés"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Ocàs"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Llampant"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Currículum"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Per defecte"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Carta comercial moderna, lletra sense serif"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Carta comercial moderna, lletra amb serif"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Targeta de visita amb logotip"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Simple"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Suprimeix"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Neteja-ho tot"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Longitud de la contrasenya"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "La contrasenya que heu introduït té problemes d'interoperabilitat. Introduïu una contrasenya de menys de 52 bytes o de més de 55 bytes."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "Mantingueu premuda la tecla %{key} i feu clic a l'enllaç per a obrir-lo: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Feu clic per a obrir l'enllaç: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(utilitzat per: %STYLELIST)"
@@ -4162,6 +4126,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Suprimeix..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/ca-valencia/starmath/messages.po b/source/ca-valencia/starmath/messages.po
index 4192552df60..d16823e9012 100644
--- a/source/ca-valencia/starmath/messages.po
+++ b/source/ca-valencia/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-07-18 23:40+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/ca_VALENCIA/>\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "or"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Signe +"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Signe -"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Signe +-"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Signe -+"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "NO lògic"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Suma +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Resta -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Multiplicació (punt)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Multiplicació (creu)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Multiplicació (asterisc)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Divisió (barra inclinada)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Divisió (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Divisió (fracció)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Barra encerclada"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Punt encerclat"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Signe menys encerclat"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Signe més encerclat"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Producte tensorial"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "I lògic"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "O lògic"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "És igual"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "No és igual"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "És menor que"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "És major que"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "És menor o igual que"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "És major o igual que"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "És menor o igual que"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "És major o igual que"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "És molt menor que"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "És molt major que"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Es defineix com a"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "És congruent amb"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "És aproximadament igual"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "És paregut a"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "És paregut o igual"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "És proporcional a"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "És ortogonal a"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "És paral·lel a"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Tendeix"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Correspon a (esquerra)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Correspon a (dreta)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Contingut a"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "No contingut a"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Conté"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Unió"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Intersecció"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Diferència"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Subconjunt"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Subconjunt o igual a"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Superconjunt"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Superconjunt o igual a"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "No subconjunt"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "No subconjunt ni igual"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "No superconjunt"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "No superconjunt ni igual"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Valor absolut"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Factorial"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Arrel quadrada"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "Arrel enèsima"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Funció exponencial"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Funció exponencial"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Logaritme natural"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logaritme"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sinus"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Cosinus"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangent"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Cotangent"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arc sinus"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arc cosinus"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arc tangent"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arc cotangent"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Sinus hiperbòlic"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Cosinus hiperbòlic"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Tangent hiperbòlica"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Cotangent hiperbòlica"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Arc sinus hiperbòlic de l'àrea"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Arc cosinus hiperbòlic de l'àrea"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Arc tangent hiperbòlica de l'àrea"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Arc cotangent hiperbòlica de l'àrea"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Suma"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Suma amb subíndex inferior"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Suma amb superíndex superior"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Suma amb superíndex/subíndex"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Producte"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Producte amb subíndex inferior"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Producte amb superíndex superior"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Producte amb superíndex/subíndex"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Coproducte"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Coproducte amb subíndex inferior"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Coproducte amb superíndex superior"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Coproducte amb superíndex/subíndex"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Límit"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Límit amb subíndex inferior"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Límit amb superíndex superior"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Límit amb superíndex i subíndex"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Límit inferior"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Límit inferior amb subíndex"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Límit inferior amb superíndex"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Límit inferior amb subíndex i superíndex"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Límit superior"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Límit superior amb subíndex"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Límit superior amb superíndex"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Límit superior amb subíndex i superíndex"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Existeix"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "No existeix"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Per a tots"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integral"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Integral amb subíndex inferior"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Integral amb superíndex superior"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integral amb superíndex i subíndex"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Integral doble"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Integral doble amb subíndex a sota"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Integral doble amb superíndex a sobre"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Integral doble amb superíndex i subíndex"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Integral triple"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Integral triple amb subíndex a sota"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Integral triple amb superíndex a sobre"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Integral triple amb superíndex i subíndex"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Integral de línia"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Integral de línia amb subíndex inferior"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Integral de línia amb superíndex superior"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Integral de línia amb superíndex i subíndex"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Integral de línia doble"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Integral de línia doble amb subíndex inferior"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Integral de línia doble amb superíndex superior"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Integral de línia doble amb superíndex i subíndex"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Integral de línia triple"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Integral de línia triple amb subíndex inferior"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Integral de línia triple amb superíndex superior"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Integral de línia triple amb superíndex i subíndex"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Accent agut"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Línia superior"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Breu"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Circumflex invers"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Cercle"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Punt"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Punt doble"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Punt triple"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Accent greu"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Circumflex"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Titlla"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Fletxa vectorial"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Arpó"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Línia a sota"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Línia a sobre"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Línia a través"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Transparent"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Lletra negreta"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Lletra cursiva"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Canvia la mida"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Canvia el tipus de lletra"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Color negre"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Color blau"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Color verd"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Color roig"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Color gris"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Color llimona"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Color marró"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Color blau marí"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Color verd oliva"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Color porpra"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Color plata"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Color xarxet"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Color groc"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "Color RGB"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Claudàtors d'agrupament"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Parèntesis"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Claudàtors"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Claudàtors dobles"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Claus"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Parèntesis angulars"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Sostre"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Terra"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Línies simples"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Línies dobles"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Claudàtors d'operador"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Parèntesis (dimensionables)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Claudàtors (dimensionables)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Claudàtors dobles (dimensionables)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Claus (dimensionables)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Parèntesis angulars (dimensionables)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Sostre (escalable)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Terra (escalable)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Línies simples (dimensionables)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Línies dobles (dimensionables)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Claudàtors d'operador (dimensionables)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Avaluat com a"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Claus a la part superior (dimensionables)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Claus a la part inferior (dimensionables)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Subíndex a la dreta"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Potència"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Subíndex a l'esquerra"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Superíndex a l'esquerra"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Subíndex a sota"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Superíndex a sobre"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Separació petita"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Buit"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Línia nova"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Pila vertical (2 elements)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Pila vertical"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Matriu"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Alineació a l'esquerra"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Alineació al centre"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Alineació a la dreta"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Àlef"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Conjunt buit"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Part real"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Part imaginària"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Infinit"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Parcial"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "p de Weierstrass"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Punts al mig"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Punts cap amunt"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Punts cap avall"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Punts per sota"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Punts en vertical"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Concatena"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Divisió (barra inclinada)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Divisió (contra barra inclinada)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Divideix"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "No divideix"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Fletxa doble esquerra"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Fletxa doble esquerra i dreta"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Fletxa doble dreta"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Conjunt dels nombres naturals"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Conjunt dels nombres enters"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Conjunt dels nombres racionals"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Conjunt dels nombres reals"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Conjunt dels nombres complexos"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Circumflex gran"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Titlla gran"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Fletxa vectorial llarga"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Arpó gran"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h barrada"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda barrada"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Fletxa esquerra"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Fletxa dreta"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Fletxa amunt"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Fletxa avall"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Sense espai"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Precedeix"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Precedeix o és igual a"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Precedeix o és equivalent a"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Succeeix"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Succeeix o és igual a"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Succeeix o és equivalent a"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "No precedeix"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "No succeeix"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Operadors unaris i binaris"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Relacions"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Operacions amb conjunts"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funcions"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operadors"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Atributs"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Claudàtors"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formats"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Altres"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Exemples"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Circumferència"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Equivalència massa-energia"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Teorema de Pitàgores"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Distribució de Gauss"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Estàndard"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Cursiva"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Negreta"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "negre"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blau"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "verd"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "roig"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "gris"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "llimona"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "marró"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "blau marí"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "verd oliva"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "porpa"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "plata"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "jade"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "groc"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "amaga"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "mida"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "tipus de lletra"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "esquerra"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centre"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "dreta"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Ordes"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Fórmula"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "S'està desant el document..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Fórmula del %PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Caràcter no esperat"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Símbol inesperat"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "S'esperava '{'"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "S'esperava '}'"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "S'esperava '('"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "S'esperava ')'"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Els símbols esquerre i dret no es corresponen"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "S'esperava «fixed«, «sans» o «serif»"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "«size» seguit d'un senyal no esperat"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "No es permet l'alineació doble"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "No es permeten ni els subíndexs dobles ni els superíndexs dobles"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "S'esperava '#'"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Es necessita un color"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "S'esperava 'RIGHT'"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Contingut"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Títol"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Text de la fórmula"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "V~ores"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Mida"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Mida o~riginal"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Ajusta a la ~pàgina"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "E~scalat"
diff --git a/source/ca-valencia/svtools/messages.po b/source/ca-valencia/svtools/messages.po
index 8110f2ea665..90fbcd6d81e 100644
--- a/source/ca-valencia/svtools/messages.po
+++ b/source/ca-valencia/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-18 23:40+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ca_VALENCIA/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Desfés: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Refés: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Repeteix: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Text sense format"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Text sense format (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Imatge de mapa de bits (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Metafitxer d'interfície de dispositiu d'imatge (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Format de text enriquit (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Format de text enriquit (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Format de dibuix del %PRODUCTNAME"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Animació o mapa de bits de l'StarView (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Informació d'estat d'un enllaç intern d'SVX"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Enllaç deL %PRODUCTNAME (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Adreça d'interés del Netscape"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Format de servidor Star"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Format d'objecte Star"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Objecte miniaplicació"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Objecte connector"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objecte d'StarWriter 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objecte d'StarWriter 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objecte d'StarWriter 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objecte d'StarWriter/Web 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objecte d'StarWriter/Web 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Objecte d'StarWriter/Master 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Objecte d'StarWriter/Master 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objecte d'StarDraw"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objecte d'StarDraw 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objecte d'StarImpress 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objecte d'StarDraw 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objecte d'StarCalc"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objecte d'StarCalc 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objecte d'StarCalc 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objecte d'StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objecte d'StarChart 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objecte d'StarChart 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objecte d'StarImage"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objecte d'StarImage 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objecte d'StarImage 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objecte d'StarMath"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objecte d'StarMath 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objecte d'StarMath 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objecte de Paint d'StarObject"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Llenguatge de marques d'hipertext (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Llenguatge de marques d'hipertext simplificat (Simple HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Format d'intercanvi binari del Microsoft Excel 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Format d'intercanvi binari del Microsoft Excel 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Intercanvi de dades dinàmiques (enllaç DDE)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Format d'intercanvi de dades (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objecte de Microsoft Word"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objecte d'StarFrameSet"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Objecte document d'Office"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Informació de document de Notes"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Document SFX"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objecte d'StarChart 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Objecte gràfic"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Objecte de l'OpenOffice.org Writer 1.0"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Objecte de l'OpenOffice.org Writer/Web 1.0"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Objecte mestre de l'OpenOffice.org Writer 1.0"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Objecte de l'OpenOffice.org Draw 1.0"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Objecte de l'OpenOffice.org Impress 1.0"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Objecte de l'OpenOffice.org Calc 1.0"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Objecte de diagrama de l'OpenOffice.org 1.0"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Objecte de l'OpenOffice.org Math 1.0"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Metafitxer de Windows"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Objecte font de dades"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Taula de font de dades"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Consulta SQL"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Diàleg de l'OpenOffice.org 1.0"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Enllaç"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Format HTML sense comentaris"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Imatge de xarxa portàtil (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "No s'ha pogut inserir l'objecte %."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "No s'ha pogut inserir l'objecte del fitxer %."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Objectes addicionals"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Font desconeguda"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1234 +501,1234 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumèric"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Joc de caràcters"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Diccionari"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Traç"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Llibreta de telèfons"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonètic (primer alfanumèric)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonètic (últim alfanumèric)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumèric"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Diccionari"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Traç"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonètic (primer alfanumèric, agrupat per síl·labes)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonètic (primer alfanumèric, agrupat per consonants)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonètic (últim alfanumèric, agrupat per síl·labes)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonètic (últim alfanumèric, agrupat per consonants)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Clar"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Cursiva lleu"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normal"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Cursiva"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Negreta"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Negreta cursiva"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Negre"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Negra cursiva"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Llibre"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Negreta obliqua"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensada"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Condensada negreta"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Condensada negreta cursiva"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Condensada negreta obliqua"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Condensada cursiva"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Condensada obliqua"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Extafina"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Extrafina cursiva"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Obliqua"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Seminegreta"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Seminegreta cursiva"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "S'utilitzarà el mateix tipus de lletra a la impressora i a la pantalla."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Lletra d'impressora. La visualització per pantalla podria ser diferent."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Aquest estil de lletra s'imitarà o s'utilitzarà el més adequat."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Aquest tipus de lletra no està instal·lat. S'utilitzarà el tipus de lletra disponible més adequat."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Mou a l'inici"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Mou a l'esquerra"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Mou a la dreta"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Mou al final"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Afig"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Regle horitzontal"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Regle vertical"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Llindar d'un bit"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Tramat d'un bit"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Escala de grisos de 4 bits"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Color de 4 bits"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Escala de grisos de 8 bits"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Color de 8 bits"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Color real de 24 bits"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "La imatge necessita aproximadament %1 KB de memòria."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "La imatge necessita aproximadament %1 KB de memòria, la mida del fitxer és %2 KB."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "La mida del fitxer és %1 KB."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "amfitrió"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Un altre CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Preparat"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "En pausa"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Supressió pendent"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Ocupat"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "S'està inicialitzant"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "S'està esperant"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "S'està escalfant"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "S'està processant"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "S'està imprimint"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Desconnectat"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Error"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Servidor desconegut"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Bloqueig de paper"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "No hi ha prou paper"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Alimentació manual"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problema amb el paper"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "E/E actives"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "La paperera d'eixida està plena"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Tòner baix"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "No hi ha tòner"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Suprimeix la pàgina"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Es requereix la intervenció de l'usuari"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "No hi ha prou memòria"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Coberta oberta"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Mode d'estalvi d'energia"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Impressora per defecte"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documents"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<cap>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Empresa"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Departament"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Nom"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Cognoms"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Carrer"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Estat"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Codi postal"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Ciutat"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Títol"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posició"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Tractament"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Inicials"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Tancament complementari"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel.: particular"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel.: faena"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Adreça electrònica"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Usuari 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Usuari 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Usuari 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Usuari 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Identificador"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Comarca"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel.: oficina"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Cercapersones"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Tel. mòbil"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel.: altres"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendari"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Convida"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ de l'usuari $user$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "La configuració del %PRODUCTNAME ha canviat. A %PRODUCTNAME - Preferències - %PRODUCTNAME - Avançat, seleccioneu l'entorn d'execució de Java que voleu utilitzar amb el %PRODUCTNAME."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "La configuració del %PRODUCTNAME ha canviat. A Eines ▸ Opcions ▸ %PRODUCTNAME ▸ Avançat, seleccioneu l'entorn d'execució de Java que voleu utilitzar amb el %PRODUCTNAME."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "El %PRODUCTNAME necessita un entorn d'execució de Java (JRE) per a realitzar aquesta tasca. El JRE seleccionat no funciona correctament. Seleccioneu una altra versió o instal·leu un JRE nou i seleccioneu-lo a %PRODUCTNAME - Preferències - %PRODUCTNAME - Avançat."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "El %PRODUCTNAME necessita un entorn d'execució de Java (JRE) per realitzar esta tasca. El JRE seleccionat no funciona correctament. Seleccioneu una altra versió o instal·leu un JRE nou i seleccioneu-lo a Eines ▸ Opcions ▸ %PRODUCTNAME ▸ Avançat."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Es necessita un JRE"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Seleccioneu un JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "El JRE no funciona correctament"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Codi font"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Fitxer de marcadors"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Gràfics"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Fitxer de configuració"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplicació"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Taula de la base de dades"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Fitxer del sistema"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Document de l'MS Word"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Fitxer d'ajuda"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Document HTML"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Fitxer d'arxiu"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Fitxer de registre"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Base de dades de l'StarOffice"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Document mestre de l'StarWriter 4.0 / 5.0"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Imatge de l'StarOffice"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Fitxer de text"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Enllaç"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Plantilla de l'StarOffice 3.0 - 5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Document de l'MS Excel"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Plantilla de l'MS Excel"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Fitxer de lot"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Fitxer"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Carpeta"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Document de text"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Full de càlcul"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentació"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Dibuix"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Document HTML"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Document mestre"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Fórmula"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Base de dades"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Plantilla de full de càlcul de l'OpenOffice.org 1.0"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Plantilla de dibuix de l'OpenOffice.org 1.0"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Plantilla de presentació de l'OpenOffice.org 1.0"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Plantilla de document de text de l'OpenOffice.org 1.0"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unitat local"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Unitat de disc dur"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Unitat de CD-ROM"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Connexió de xarxa"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Document de l'MS PowerPoint"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Plantilla de l'MS PowerPoint"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Exposició de l'MS PowerPoint"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Fórmula de l'OpenOffice.org 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Diagrama de l'OpenOffice.org 1.0"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Dibuix de l'OpenOffice.org 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Full de càlcul de l'OpenOffice.org 1.0"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Presentació de l'OpenOffice.org 1.0"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Document de text de l'OpenOffice.org 1.0"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Document mestre de l'OpenOffice.org 1.0"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Document MathML"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Base de dades OpenDocument"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Dibuix OpenDocument"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Fórmula OpenDocument"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Document mestre OpenDocument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Presentació OpenDocument"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Full de càlcul OpenDocument"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Text OpenDocument"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Plantilla de full de càlcul OpenDocument"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Plantilla de dibuix OpenDocument"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Plantilla de presentació OpenDocument"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Plantilla de text OpenDocument"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Extensió del %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Verificador ortogràfic Hunspell"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Divisor de paraules Libhyphen"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Tesaure MyThes"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Llista de paraules ignorades"
diff --git a/source/ca-valencia/svx/messages.po b/source/ca-valencia/svx/messages.po
index 634e9a4c765..525e9932140 100644
--- a/source/ca-valencia/svx/messages.po
+++ b/source/ca-valencia/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-18 23:40+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/ca_VALENCIA/>\n"
@@ -16332,11 +16332,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Como_dins"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_Comentaris"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/ca-valencia/sw/messages.po b/source/ca-valencia/sw/messages.po
index 82bc5f91b8d..c7f2b0c5648 100644
--- a/source/ca-valencia/sw/messages.po
+++ b/source/ca-valencia/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-19 15:35+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/ca_VALENCIA/>\n"
@@ -17444,86 +17444,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr "Introduïu el nombre de files que voleu a la taula."
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "General"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "En_capçalament"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr "Inclou una fila capçalera a la taula."
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Repeteix les files d'encapçalament a les _pàgines noves"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr "Repeteix l'encapçalament de la taula a la part superior de les pàgines següents si la taula ocupa més d'una pàgina."
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "No _dividisques la taula entre pàgines"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr "Evita que la taula ocupi més d'una pàgina."
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr "Seleccioneu el nombre de files que voleu utilitzar per a l'encapçalament."
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Files d'_encapçalament:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Opcions"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr "Seleccioneu un estil predefinit per a la taula nova."
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Estils"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr "Insereix una taula en el document. També podeu fer clic a la fletxa, arrossegar per a seleccionar el nombre de files i de columnes que voleu incloure a la taula i, a continuació, fer clic a l'última cel·la."
@@ -20037,289 +20043,289 @@ msgid "Text"
msgstr "Text"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Canvia la visualització mestra"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Canvia entre la visualització mestra i la normal si el document mestre és obert."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Visualització de navegació de contingut"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr "Canvia entre la visualització de totes les categories en el Navegador i la categoria seleccionada."
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Capçalera"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr "Mou el cursor a la capçalera o de la capçalera a l'àrea de text del document."
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Peu de pàgina"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr "Mou el cursor al peu de pàgina o del peu de pàgina a l'àrea de text del document."
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Àncora<->Text"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr "Trasllada el cursor alternativament al text de la nota al peu o a l'àncora corresponent."
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Defineix un recordatori"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Feu clic per establir un recordatori a la posició actual del cursor. Podeu definir un màxim de cinc recordatoris. Per saltar a un recordatori, feu clic a la icona Navegació, a la finestra Navegació feu clic a la icona Recordatori, després feu clic al botó Anterior o Següent."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Nivells d'encapçalament mostrats"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr "Feu clic en aquesta icona i, a continuació, trieu el nombre de nivells d'esquema d'encapçalament que voleu visualitzar a la finestra Navegador."
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Activa o desactiva el quadre de llista"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr "Mostra o amaga la llista del Navegador."
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Un nivell cap amunt"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Incrementa el nivell d'esquema de l'encapçalament seleccionat, i els encapçalaments que hi haja sota, en un nivell. Per a incrementar el nivell d'esquema només de l'encapçalament seleccionat, manteniu premuda la tecla Ctrl i, a continuació, feu clic en aquesta icona."
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Un nivell cap avall"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Disminueix el nivell d'esquema de l'encapçalament seleccionat, i els encapçalaments que hi haja sota, en un nivell. Per a disminuir només el nivell d'esquema de l'encapçalament seleccionat, manteniu premuda la tecla Ctrl i, a continuació, feu clic en aquesta icona."
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Capítol cap amunt"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Mou l'encapçalament seleccionat, i el text de sota de l'encapçalament, una posició amunt en el Navegador i en el document. Per a moure només l'encapçalament seleccionat i no el text associat, manteniu premuda la tecla Ctrl i, a continuació, feu clic en aquesta icona."
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Capítol cap avall"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Mou l'encapçalament seleccionat, i el text sota l'encapçalament, una posició d'encapçalament avall en el Navegador i en el document. Per a moure només l'encapçalament seleccionat i no el text associat, manteniu premuda la tecla Ctrl i, a continuació, feu clic en aquesta icona."
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Mode d'arrossegament"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr "Defineix les opcions d'arrossegar i deixar anar per a inserir elements del Navegador a un document, per exemple, com a enllaç. Feu clic en aquesta icona i, a continuació, seleccioneu l'opció que voleu utilitzar."
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Document"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Finestra activa"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Canvia a la visualització mestra"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Canvia entre la visualització mestra i la normal si el document mestre és obert."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Edita"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Actualitza"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Feu clic al contingut que voleu actualitzar."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Insereix"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Insereix un fitxer, un índex o un document nou al document mestre."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Guarda també els continguts"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr "Guarda una còpia dels continguts dels fitxers enllaçats al document mestre. D'aquesta manera, el contingut actual està disponible quan no es pot accedir als fitxers enllaçats."
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Mou cap amunt"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr "Desplaça la selecció una posició cap amunt a la llista del Navegador."
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Mou cap avall"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr "Desplaça la selecció una posició cap avall a la llista del Navegador."
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Selecció"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Índexs"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Enllaços"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Tot"
diff --git a/source/ca/basctl/messages.po b/source/ca/basctl/messages.po
index 87c2b321814..d64d7871c97 100644
--- a/source/ca/basctl/messages.po
+++ b/source/ca/basctl/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-10-20 16:35+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"PO-Revision-Date: 2020-11-18 15:35+0000\n"
+"Last-Translator: Jaumej <jaume.jorba@gmail.com>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/basctlmessages/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1556385591.000000\n"
#. fniWp
@@ -1299,4 +1299,4 @@ msgstr "_Alfabèticament"
#: basctl/uiconfig/basicide/ui/sortmenu.ui:32
msgctxt "sortmenu|properorder"
msgid "_Proper order"
-msgstr ""
+msgstr "_Ordre correcte"
diff --git a/source/ca/cui/messages.po b/source/ca/cui/messages.po
index ec0bbf30e2b..e3e50fdca55 100644
--- a/source/ca/cui/messages.po
+++ b/source/ca/cui/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-11 20:35+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2020-11-20 14:48+0000\n"
+"Last-Translator: Jaumej <jaume.jorba@gmail.com>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1564129929.000000\n"
#. GyY9M
@@ -2062,13 +2062,13 @@ msgstr "Instal·la"
#: cui/inc/strings.hrc:395
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
-msgstr ""
+msgstr "Instal·lat"
#. TmK5f
#: cui/inc/strings.hrc:396
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
-msgstr ""
+msgstr "Instal·lant"
#. izdAK
#: cui/inc/strings.hrc:397
@@ -2092,13 +2092,13 @@ msgstr "Extensions"
#: cui/inc/strings.hrc:401
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
-msgstr ""
+msgstr "Aplica a %MODULE"
#. mpS3V
#: cui/inc/tipoftheday.hrc:48
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME offers a variety of user interface options to make you feel at home"
-msgstr ""
+msgstr "%PRODUCTNAME ofereix una varietat d'interfícies d'usuari per fer-te sentir com a casa"
#. m8rYd
#: cui/inc/tipoftheday.hrc:49
@@ -2209,7 +2209,7 @@ msgstr "Feu clic en un camp de columna (o fila) d'una taula dinàmica i pitgeu F
#: cui/inc/tipoftheday.hrc:66
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can restart the slide show after a pause specified at Slide Show ▸ Slide Show Settings ▸ Loop and repeat."
-msgstr "Podeu reiniciar la presentació de diapositives després d'una pausa especificada a Presentació de diapositives ▸ Configuració de la presentació de diapositives ▸ Bucle i repeteix."
+msgstr "Podeu reiniciar la presentació de diapositives després d'una pausa especificada a Presentació de diapositives ▸ Paràmetres de la presentació de diapositives ▸ Bucle i repeteix després de"
#. 5SoBD
#: cui/inc/tipoftheday.hrc:67
@@ -3401,7 +3401,7 @@ msgstr "No podeu modificar o suprimir un estil de cel·la personalitzat? Comprov
#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Heu d'omplir una sèrie? Seleccioneu l’interval de cel·les i el full ▸ Cel·les d’emplenament ▸ Sèrie d’emplenament i trieu entre Lineal, Creixement, Data i emplenament automàtic."
#. BiSJM
#. local help missing
@@ -3474,7 +3474,7 @@ msgstr "Voleu desenvolupar filtres XSLT i XML nous?"
#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General."
-msgstr ""
+msgstr "Prem Maj+F1 per veure ampliat qualsevol suggeriment disponible als quadres de diàleg quan no està habilitat \"Consells ampliats\" a Eines ▸ Opcions ▸% PRODUCTNAME ▸ General."
#. hsZPg
#: cui/inc/tipoftheday.hrc:274
@@ -3492,13 +3492,13 @@ msgstr "Més informació"
#: cui/inc/tipoftheday.hrc:276
msgctxt "STR_UNO_LINK"
msgid "Run this action now..."
-msgstr ""
+msgstr "Executa aquesta acció ara..."
#. P6JME
#: cui/inc/tipoftheday.hrc:277
msgctxt "STR_TITLE"
msgid "Tip of the Day: %CURRENT/%TOTAL"
-msgstr ""
+msgstr "Consell del dia: %CURRENT/%TOTAL"
#. C6Dsn
#: cui/inc/tipoftheday.hrc:278
@@ -3529,31 +3529,31 @@ msgstr "⌥ Opc"
#: cui/inc/toolbarmode.hrc:22
msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with menu, toolbar, and collapsed sidebar. Intended to user who are familiar with the classic interface."
-msgstr ""
+msgstr "Interfície d'usuari estàndard amb menú, barra d'eines i barra lateral col·lapsada. Destinat a usuaris que estiguin familiaritzats amb la interfície clàssica."
#. S5tR2
#: cui/inc/toolbarmode.hrc:23
msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface but with only one toolbar. Intended for use on small screens."
-msgstr ""
+msgstr "Interfície d'usuari estàndard amb una sola barra d'eines. Destinat a l’ús en pantalles petites."
#. wKg2Q
#: cui/inc/toolbarmode.hrc:24
msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with expanded sidebar. Expert users who want to quickly change many different properties are advised to use this UI."
-msgstr ""
+msgstr "Interfície d'usuari estàndard amb barra lateral ampliada. Es recomana que facin servir aquesta interfície d’usuari els usuaris experts que vulguin canviar ràpidament moltes propietats diferents."
#. MEQAE
#: cui/inc/toolbarmode.hrc:25
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed user interface is the most similar to the Ribbons used by Microsoft. It organize functions in tabs and makes the main menu obsolete."
-msgstr ""
+msgstr "La interfície d'usuari amb pestanyes és la més semblant a les barres que utilitza Microsoft. Organitza les funcions en pestanyes i fa que el menú principal quedi obsolet."
#. hXNUY
#: cui/inc/toolbarmode.hrc:26
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed Compact variant aims to be familiar with Microsoft's interface having at the same time a short interface for small screen sizes."
-msgstr ""
+msgstr "La variació amb pestanyes compactes té com a objectiu ser familiar amb la interfície de Microsoft, al mateix temps que té una interfície reduïda per a mides de pantalla petites."
#. GFycb
#: cui/inc/toolbarmode.hrc:27
diff --git a/source/ca/filter/messages.po b/source/ca/filter/messages.po
index ebe0b4c6659..fbff354d9c8 100644
--- a/source/ca/filter/messages.po
+++ b/source/ca/filter/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-08 11:35+0000\n"
+"PO-Revision-Date: 2020-11-17 20:35+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/filtermessages/ca/>\n"
"Language: ca\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562301101.000000\n"
#. 5AQgJ
@@ -633,7 +633,7 @@ msgstr "Exporta els es_quemes"
#: filter/uiconfig/ui/pdfgeneralpage.ui:833
msgctxt "pdfgeneralpage|extended_tip|bookmarks"
msgid "Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Chapter Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document."
-msgstr ""
+msgstr "Seleccioneu aquesta opció per a exportar les adreces d'interès dels documents del Writer com a adreces d'interès PDF. Les adreces d'interès es creen per a tots els paràgrafs de l'esquema (Eines ▸ Numeració de capítols) i per a totes les entrades de l'índex general a les quals heu assignat enllaços en el document d'origen."
#. kQbPh
#: filter/uiconfig/ui/pdfgeneralpage.ui:844
@@ -645,13 +645,13 @@ msgstr "Expo_rta els espais reservats"
#: filter/uiconfig/ui/pdfgeneralpage.ui:859
msgctxt "pdfgeneralpage|comments"
msgid "Comm_ents as PDF annotations"
-msgstr ""
+msgstr "Com_entaris com a anotacions PDF"
#. SijbK
#: filter/uiconfig/ui/pdfgeneralpage.ui:868
msgctxt "pdfgeneralpage|extended_tip|comments"
msgid "Select to export comments of Writer and Calc documents as PDF annotations."
-msgstr ""
+msgstr "Seleccioneu aquesta opció per a exportar els comentaris dels documents del Writer i del Calc com a anotacions PDF."
#. y9evS
#: filter/uiconfig/ui/pdfgeneralpage.ui:879
@@ -663,7 +663,7 @@ msgstr "Exp_orta les pàgines en blanc inserides automàticament"
#: filter/uiconfig/ui/pdfgeneralpage.ui:888
msgctxt "pdfgeneralpage|extended_tip|emptypages"
msgid "If switched on, automatically inserted blank pages are exported to the PDF file. This is best if you are printing the pdf file double-sided. Example: In a book a chapter paragraph style is set to always start with an odd numbered page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even numbered blank page. This option controls whether to export that even numbered page or not."
-msgstr ""
+msgstr "Si s'activa, s'exporten automàticament pàgines en blanc al fitxer PDF. Això és millor si esteu imprimint el fitxer PDF de doble cara. Exemple: en un llibre s'estableix un estil de paràgraf de capítol per començar sempre amb una pàgina numerada senar. Si el capítol anterior acaba en una pàgina senar, el %PRODUCTNAME insereix una pàgina en blanc parella. Aquesta opció controla si exportar o no aquesta pàgina numerada."
#. sHqKP
#: filter/uiconfig/ui/pdfgeneralpage.ui:899
@@ -705,7 +705,7 @@ msgstr "Estructura"
#: filter/uiconfig/ui/pdflinkspage.ui:33
msgctxt "pdflinkspage|export"
msgid "Export outlines as named destinations"
-msgstr ""
+msgstr "Exporta els esquemes com a destinacions amb nom"
#. BDf69
#: filter/uiconfig/ui/pdflinkspage.ui:43
@@ -723,7 +723,7 @@ msgstr "_Converteix les referències del document en objectius PDF"
#: filter/uiconfig/ui/pdflinkspage.ui:64
msgctxt "pdflinkspage|extended_tip|convert"
msgid "Enable this checkbox to convert the URLs referencing other ODF files to PDF files with the same name. In the referencing URLs the extensions .odt, .odp, .ods, .odg, and .odm are converted to the extension .pdf."
-msgstr ""
+msgstr "Activeu aquesta casella de selecció per a convertir els URL que fan referència a altres fitxers ODF en fitxers PDF amb el mateix nom. En les referències URL, les extensions .odt, .odp, .ods, .odg i .odm es converteixen en l'extensió .pdf."
#. 6Lyp3
#: filter/uiconfig/ui/pdflinkspage.ui:75
diff --git a/source/ca/helpcontent2/source/text/scalc/01.po b/source/ca/helpcontent2/source/text/scalc/01.po
index f73240df77a..6acd0c927c0 100644
--- a/source/ca/helpcontent2/source/text/scalc/01.po
+++ b/source/ca/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2020-08-30 19:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/ca/>\n"
@@ -56474,6 +56474,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr "Ús d'expressions regulars i funcions imbricades"
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/sdraw.po b/source/ca/helpcontent2/source/text/sdraw.po
index 42e715afbf4..c58319ffbde 100644
--- a/source/ca/helpcontent2/source/text/sdraw.po
+++ b/source/ca/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-08-15 14:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/ca/>\n"
@@ -170,6 +170,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/shared/00.po b/source/ca/helpcontent2/source/text/shared/00.po
index de2ea767453..a6542c182ac 100644
--- a/source/ca/helpcontent2/source/text/shared/00.po
+++ b/source/ca/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-11-03 11:58+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/ca/>\n"
@@ -2663,76 +2663,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "Un bon exemple de base de dades relacional pot ser una base de dades que contingui les taules Clients, Compres i Factures. A la taula Factures no hi ha cap dada de clients ni de compres, però la taula conté referències mitjançant enllaços relacionals o una relació als respectius camps de les taules Clients i Compres (per exemple, el camp de l'identificador de client de la taula Clients)."
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>conforme al registre; definició</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "Conforme al registre"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/ca/helpcontent2/source/text/shared/01.po b/source/ca/helpcontent2/source/text/shared/01.po
index 64dcaadc7ca..3d173a7d661 100644
--- a/source/ca/helpcontent2/source/text/shared/01.po
+++ b/source/ca/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-05 10:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-20 06:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/ca/>\n"
"Language: ca\n"
@@ -5124,24 +5124,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr "Per alguns tipus de documents, podeu triar imprimir un fullet."
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr ""
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr ""
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9418,14 +9400,14 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "Canvia entre el mode mestre i el mode normal."
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icona</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgstr ""
#. 3Lq2G
#: 02110000.xhp
@@ -9455,14 +9437,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr ""
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icona</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgstr ""
#. nRB3E
#: 02110000.xhp
@@ -9491,14 +9473,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Feu clic al contingut que voleu actualitzar.</ahelp>"
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icona</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgstr ""
#. F4J5u
#: 02110000.xhp
@@ -9626,14 +9608,14 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "També podeu inserir fitxers al document mestre; per fer-ho, arrossegueu un fitxer des de l'escriptori i deixeu-lo anar a la vista mestra del Navegador."
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icona</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgstr ""
#. ijR7M
#: 02110000.xhp
@@ -9734,14 +9716,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Desa una còpia dels continguts dels fitxers enllaçats al document mestre. D'aquesta manera, el contingut actual està disponible quan no es pot accedir als fitxers enllaçats.</ahelp>"
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icona</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgstr ""
#. ADEyJ
#: 02110000.xhp
@@ -9770,14 +9752,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Desplaça la selecció una posició cap amunt a la llista del Navegador.</ahelp> Per a desplaçar les entrades, arrossegueu-les i deixeu-les anar a la llista. Si moveu una secció de text a una altra secció, es fusionen les dues seccions de text."
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icona</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgstr ""
#. GqEUL
#: 02110000.xhp
@@ -9806,14 +9788,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Desplaça la selecció una posició cap avall a la llista del Navegador.</ahelp> També podeu desplaçar les entrades si les arrossegueu i les deixeu anar a la llista. Si desplaceu una secció de text a una altra secció, es fusionen les dues seccions de text."
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
-msgstr "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icona</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgstr ""
#. DLEGF
#: 02110000.xhp
@@ -47482,7 +47464,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Embedding Fonts"
-msgstr "Incrustació de tipus de lletra"
+msgstr "Incrustació de lletres tipogràfiques"
#. MhNdc
#: prop_font_embed.xhp
@@ -47522,13 +47504,12 @@ msgstr "Incrustació de tipus de lletra"
#. LM4Gn
#: prop_font_embed.xhp
-#, fuzzy
msgctxt ""
"prop_font_embed.xhp\n"
"par_id3153114\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/documentfontspage/embedFonts\">Mark this box to embed document fonts into the document file, for portability between different computer systems.</ahelp> The document with embedded fonts has a larger size and the fonts are used on the target computer for better rendering of the document layout."
-msgstr "<ahelp hid=\"sfx/ui/documentfontspage/embedFonts\">Marca aquesta casella per incrustar els tipus de lletra per als tipus de lletra del document en el fitxer de document per a tots els sistemes d'ordinador diferents.</ahelp>Un document amb el document incrustat amb tipus de lletra incrustats té una mida més gran i els tipus de lletra s'utilitzen a l'ordinador de destinació per a la millor renderització del document."
+msgstr "<ahelp hid=\"sfx/ui/documentfontspage/embedFonts\">Activeu aquesta casella per a incrustar les lletres al document, per a facilitar la portabilitat entre diferents sistemes.</ahelp> Els documents amb lletres tipogràfiques incrustades són més grans, però les lletres s'utilitzen als ordinadors de destinació i s'obté la millor representació de la disposició dels elements del document."
#. fV4Cs
#: prop_font_embed.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/02.po b/source/ca/helpcontent2/source/text/shared/02.po
index 555288dde2c..5cc4282450b 100644
--- a/source/ca/helpcontent2/source/text/shared/02.po
+++ b/source/ca/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/ca/>\n"
@@ -11057,14 +11057,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Redueix el sagnat\">Redueix el sagnat</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11084,14 +11084,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icona</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11129,14 +11129,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr "<bookmark_value>paràgrafs; augment del sagnat dels</bookmark_value><bookmark_value>augment del sagnat del paràgraf</bookmark_value>"
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Augmenta el sagnat\">Augmenta el sagnat</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11156,14 +11156,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icona</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/optionen.po b/source/ca/helpcontent2/source/text/shared/optionen.po
index 732de8f23c0..b4217ca26b1 100644
--- a/source/ca/helpcontent2/source/text/shared/optionen.po
+++ b/source/ca/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-09-10 05:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-20 06:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/ca/>\n"
"Language: ca\n"
@@ -3039,7 +3039,7 @@ msgctxt ""
"hd_id3149398\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010700.xhp\" name=\"Fonts\">Fonts</link>"
-msgstr "<link href=\"text/shared/optionen/01010700.xhp\" name=\"Tipus de lletra\">Tipus de lletra</link>"
+msgstr "<link href=\"text/shared/optionen/01010700.xhp\" name=\"Lletres tipogràfiques\">Lletres tipogràfiques</link>"
#. zTJGT
#: 01010700.xhp
@@ -10806,7 +10806,7 @@ msgctxt ""
"par_id3151242\n"
"help.text"
msgid "<emph>Example</emph>: Cell E5 contains the text \"Europe\". Below, in cell E6, is the value 100 and in cell E7 the value 200. If the <emph>Automatically find column and row labels</emph> box is marked, you can write the following formula in cell A1: =SUM(Europe)."
-msgstr "<emph>Exemple</emph>: la cel·la E5 conté el text \"Europa\". A sota, a la cel·la E6, hi ha el valor 100, i a la cel·la E7 el valor 200. Si activeu la casella <emph>Cerca automàticament les etiquetes de columna i fila</emph>, podreu escriure la fórmula següent a la cel·la A1: =SUMA(Europa)."
+msgstr "<emph>Exemple</emph>: la cel·la E5 conté el text «Europa». A sota, a la cel·la E6, hi ha el valor 100, i a la cel·la E7 el valor 200. Si activeu la casella <emph>Cerca automàticament les etiquetes de columna i fila</emph>, podreu escriure la fórmula següent a la cel·la A1: =SUMA(Europa)."
#. zDS7k
#: 01060500.xhp
@@ -11861,32 +11861,32 @@ msgctxt ""
msgid "Snap"
msgstr "Ajusta"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "A les línies de captura"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "També podeu definir aquest paràmetre mitjançant la icona <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Ajusta a les guies\"><emph>Ajusta a les guies</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Ajusta a les guies\"><emph>Ajusta a les guies</emph></link></caseinline><defaultinline><emph>Ajusta a les guies</emph></defaultinline></switchinline>, que està disponible a la barra <emph>Opcions</emph> d'una presentació o d'un document de dibuix."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr ""
#. eUCCJ
#: 01070300.xhp
diff --git a/source/ca/helpcontent2/source/text/simpress/01.po b/source/ca/helpcontent2/source/text/simpress/01.po
index d9fae989f1a..0c33d11535c 100644
--- a/source/ca/helpcontent2/source/text/simpress/01.po
+++ b/source/ca/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: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-09-10 05:35+0000\n"
+"PO-Revision-Date: 2020-11-20 06:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress01/ca/>\n"
"Language: ca\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1561340808.000000\n"
#. mu9aV
@@ -8474,13 +8474,12 @@ msgstr "Animació de text"
#. pg7L2
#: effectoptionseffect.xhp
-#, fuzzy
msgctxt ""
"effectoptionseffect.xhp\n"
"par_idN1075C\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customanimationeffecttab/text_animation_list\">Select the animation mode for the text of the current shape</ahelp>:"
-msgstr "<ahelp hid=\"modules/simpress/ui/customanimationeffecttab/textanimationlist\">Selecciona el mode d'animació per al text de la forma actual</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/customanimationeffecttab/text_animation_list\">Seleccioneu el mode d'animació per al text de la forma actual</ahelp>"
#. ZpbAD
#: effectoptionseffect.xhp
diff --git a/source/ca/helpcontent2/source/text/simpress/02.po b/source/ca/helpcontent2/source/text/simpress/02.po
index a7e829b84d3..62f2de0fa5a 100644
--- a/source/ca/helpcontent2/source/text/simpress/02.po
+++ b/source/ca/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-22 11:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress02/ca/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1561340761.000000\n"
@@ -5696,41 +5696,41 @@ msgctxt ""
msgid "Exit all groups"
msgstr "Surt de tots els grups"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Ajusta a les guies"
+msgid "Snap to Snap Guides"
+msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Ajusta a les guies\">Ajusta a les guies</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icona</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Ajusta a les guies"
+msgid "Snap to Snap Guides"
+msgstr ""
#. oXWsX
#: 13150000.xhp
diff --git a/source/ca/helpcontent2/source/text/swriter.po b/source/ca/helpcontent2/source/text/swriter.po
index 360d93bf814..4eba78db670 100644
--- a/source/ca/helpcontent2/source/text/swriter.po
+++ b/source/ca/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-02 14:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/ca/>\n"
@@ -2213,14 +2213,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "D'esquerra a dreta"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">icona d'esquerra a dreta</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2240,14 +2240,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "De dreta a esquerra"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">icona de dreta a esquerra</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/ca/helpcontent2/source/text/swriter/01.po b/source/ca/helpcontent2/source/text/swriter/01.po
index b455b91193c..78a2653adc0 100644
--- a/source/ca/helpcontent2/source/text/swriter/01.po
+++ b/source/ca/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-04 00:16+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/ca/>\n"
@@ -683,13 +683,13 @@ msgctxt ""
msgid "Navigator"
msgstr "Navegador"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -710,13 +710,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -764,13 +764,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -800,13 +800,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -908,13 +908,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -926,13 +926,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -944,13 +944,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30146,6 +30146,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Obre el diàleg <emph>Destinataris de la combinació de correu</emph>.</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/swriter/guide.po b/source/ca/helpcontent2/source/text/swriter/guide.po
index 9d71a34b6bb..24f9bf2de9f 100644
--- a/source/ca/helpcontent2/source/text/swriter/guide.po
+++ b/source/ca/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-10-22 11:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/ca/>\n"
@@ -7793,50 +7793,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Sagnat de paràgrafs</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr "Per a canviar les unitats de mesura, trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME ▸ Preferències</item></caseinline><defaultinline><item type=\"menuitem\">Eines ▸ Opcions</item></defaultinline></switchinline><item type=\"menuitem\"> ▸ %PRODUCTNAME Writer ▸ General</item> i seleccioneu una unitat de mesura nova en l'àrea de configuració."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "Podeu canviar els sagnats del paràgraf actual, de tots els paràgrafs seleccionats o per a un estil de paràgraf."
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "Podeu canviar els sagnats del paràgraf actual, de tots els paràgrafs seleccionats o per a un estil de paràgraf."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "Trieu <item type=\"menuitem\">Format - Paràgraf - Sagnats i espaiat</item> per canviar els sagnats del paràgraf actual o de tots els paràgrafs seleccionats. També podeu <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">definir els sagnats mitjançant el regle</link>."
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "També podeu <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">definir els sagnats mitjançant el regle</link>. Per a visualitzar el regle, trieu <item type=\"menuitem\">Visualitza ▸ Regle</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "Trieu <item type=\"menuitem\">Format - Paràgraf - Sagnats i espaiat</item> per canviar els sagnats del paràgraf actual o de tots els paràgrafs seleccionats. També podeu <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">definir els sagnats mitjançant el regle</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "També podeu <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">definir els sagnats mitjançant el regle</link>. Per a visualitzar el regle, trieu <item type=\"menuitem\">Visualitza ▸ Regle</item>."
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "Feu clic amb el botó dret en un paràgraf i trieu <item type=\"menuitem\">Edita l'estil del paràgraf - Sagnats i espaiat</item> per canviar els sagnats de tots els paràgrafs amb el mateix estil de paràgraf."
+msgid "Positioning indents"
+msgstr ""
#. qUxKq
#: indenting.xhp
@@ -7847,6 +7847,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "Els sagnats es calculen en relació amb els marges de pàgina esquerre i dret. Introduïu un valor negatiu si voleu que el paràgraf ocupi el marge de la pàgina."
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr "Per a canviar les unitats de mesura, trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME ▸ Preferències</item></caseinline><defaultinline><item type=\"menuitem\">Eines ▸ Opcions</item></defaultinline></switchinline><item type=\"menuitem\"> ▸ %PRODUCTNAME Writer ▸ General</item> i seleccioneu una unitat de mesura nova en l'àrea de configuració."
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7856,6 +7865,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "Els sagnats varien segons la direcció de l'escriptura. Aquest és el cas, per exemple, del valor de sagnat <item type=\"menuitem\">abans del text </item>per a les llengües que s'escriuen d'esquerra a dreta. La vora esquerra del paràgraf. L'extrem esquerre del paràgraf se sagna respecte del marge esquerre de la pàgina. En canvi, per a les llengües que s'escriuen de dreta a esquerra, amb aquest valor l'extrem dret del paràgraf se sagna respecte del marge dret de la pàgina."
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7865,6 +7883,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "Per als sagnats francesos, introduïu un valor positiu a <item type=\"menuitem\">Des de l'esquerra</item> i un valor negatiu a <item type=\"menuitem\">Primera línia</item>."
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10232,14 +10295,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "Activació i desactivació del reconeixement de nombres en taules"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>nombres; reconeixement automàtic en taules de text</bookmark_value> <bookmark_value>taules; reconeixement de nombres</bookmark_value> <bookmark_value>dates;formatació automàtica en taules</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10268,14 +10331,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Realitzeu una de les accions següents:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "Feu doble clic a una cel·la de la taula i trieu <item type=\"menuitem\">Reconeixement de nombres</item>. Quan aquesta característica està activada, es mostra una marca de selecció davant de l'ordre <item type=\"menuitem\">Reconeixement de nombres</item>."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10286,6 +10358,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr "Trieu <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Taula</item> i activeu o desactiveu la casella de selecció <item type=\"menuitem\">Reconeixement de nombres</item>."
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12215,6 +12296,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "Quan creeu un document que vulgueu imprimir com a fullet, utilitzeu l'orientació vertical per a les pàgines. El Writer aplicarà la disposició de fullet quan imprimiu el document."
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12260,50 +12359,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "Si la vostra impressora imprimeix a doble cara, i tenint en compte que els fullets sempre s'imprimeixen en mode horitzontal, haureu d'utilitzar la configuració \"doble cara - vora curta\" del diàleg de configuració de la impressora."
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
-msgstr "Torneu al diàleg <emph>Imprimeix</emph> i feu clic la pestanya <emph>Disposició de la pàgina</emph>."
+msgid "Return to <emph>Print</emph> dialog."
+msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
-msgstr "Seleccioneu <emph>Fullet</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
+msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "Si la vostra impressora imprimeix automàticament a dues cares, indiqueu que voleu imprimir \"Totes les pàgines\"."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Feu clic a <emph>D'acord</emph>."
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "Si el %PRODUCTNAME imprimeix les pàgines en l'ordre equivocat, obriu la pestanya <emph>Opcions</emph>, seleccioneu <emph>Imprimeix les pàgines en ordre invers</emph> i torneu a imprimir el document."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12377,6 +12476,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr "<link href=\"text/swriter/01/01120000.xhp\" name=\"Fitxer ▸ Previsualització d'impressió\">Fitxer ▸ Previsualització d'impressió</link>."
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12404,32 +12728,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Impressió de pàgines múltiples en un full\">Impressió de pàgines múltiples en un full</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
-msgstr "A la pestanya <emph>Disposició de la pàgina</emph> del diàleg <item type=\"menuitem\">Fitxer ▸ Imprimeix</item>, teniu la possibilitat d'imprimir pàgines múltiples en un sol full."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
+msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
-msgstr "Trieu <emph>Fitxer ▸ Imprimeix</emph> i feu clic a la pestanya <emph>Disposició de la pàgina</emph>."
+msgid "Choose <menuitem>File - Print</menuitem>"
+msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Realitzeu una de les accions següents:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13408,13 +13732,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
index a3e5c8d96fc..f98e1c9537f 100644
--- a/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-09 15:35+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2020-11-20 14:48+0000\n"
+"Last-Translator: Jaumej <jaume.jorba@gmail.com>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562301193.000000\n"
#. W5ukN
@@ -13574,7 +13574,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Regular Triangle"
-msgstr ""
+msgstr "Triangle regular"
#. BUJ28
#: Effects.xcu
@@ -14144,7 +14144,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fall and fade out"
-msgstr ""
+msgstr "Caiguda i fosa de sortida"
#. cCMGr
#: Effects.xcu
@@ -14154,7 +14154,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fall simulated"
-msgstr ""
+msgstr "Caiguda simulada"
#. BqK9h
#: Effects.xcu
@@ -25296,7 +25296,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Comment Thread"
-msgstr ""
+msgstr "Esborrar el fil del comentari"
#. s3CwY
#: GenericCommands.xcu
@@ -25316,7 +25316,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Resolved Thread"
-msgstr ""
+msgstr "Fil resolt"
#. JZHpu
#: GenericCommands.xcu
@@ -26446,7 +26446,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Distribute Selection"
-msgstr ""
+msgstr "Distribueix la selecció"
#. vDkBA
#: GenericCommands.xcu
@@ -26496,7 +26496,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Horizontally Spacing"
-msgstr ""
+msgstr "Distribueix l'espai horitzontalment"
#. GQEXJ
#: GenericCommands.xcu
@@ -26506,7 +26506,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Horizontally ~Spacing"
-msgstr ""
+msgstr "Horitzontalment ~espaiat"
#. Smk23
#: GenericCommands.xcu
@@ -26516,7 +26516,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Horizontally Right"
-msgstr ""
+msgstr "Distribueix horitzontalment a la dreta"
#. SDkHd
#: GenericCommands.xcu
@@ -26526,7 +26526,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Horizontally ~Right"
-msgstr ""
+msgstr "Horitzontalment a la ~dreta"
#. iJB7y
#: GenericCommands.xcu
@@ -26536,7 +26536,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Vertically Top"
-msgstr ""
+msgstr "Distribueix verticalment a dalt"
#. 9wa7z
#: GenericCommands.xcu
@@ -26546,7 +26546,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Vertically ~Top"
-msgstr ""
+msgstr "Verticalment a ~dalt"
#. FAkxM
#: GenericCommands.xcu
@@ -26556,7 +26556,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Vertically Center"
-msgstr ""
+msgstr "Distribueix verticalment al centre"
#. PaLDT
#: GenericCommands.xcu
@@ -26566,7 +26566,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Vertically C~enter"
-msgstr ""
+msgstr "Verticalment al C~entre"
#. jwLqM
#: GenericCommands.xcu
@@ -26576,7 +26576,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Vertically Spacing"
-msgstr ""
+msgstr "Distribueix l'espai verticalment"
#. 2RAqA
#: GenericCommands.xcu
@@ -26586,7 +26586,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Vertically S~pacing"
-msgstr ""
+msgstr "E~spaiat verticalment"
#. ELgnZ
#: GenericCommands.xcu
@@ -26596,7 +26596,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Vertically Bottom"
-msgstr ""
+msgstr "Distribueix verticalment a baix"
#. rankC
#: GenericCommands.xcu
@@ -26606,7 +26606,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Vertically ~Bottom"
-msgstr ""
+msgstr "Verticalment a ~baix"
#. uaVMn
#: ImpressWindowState.xcu
@@ -29886,7 +29886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show ~Tracked Changes"
-msgstr ""
+msgstr "Mostra els canvis ~seguits"
#. sMgCx
#: WriterCommands.xcu
@@ -29956,7 +29956,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show tracked deletions in margin"
-msgstr ""
+msgstr "Mostra els seguiments esborrats al marge"
#. 3GVrG
#: WriterCommands.xcu
@@ -29966,7 +29966,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show tracked deletions in margin"
-msgstr ""
+msgstr "Mostra el seguiment dels esborrats al marge"
#. QFi68
#: WriterCommands.xcu
@@ -31466,7 +31466,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Through"
-msgstr ""
+msgstr "~A través"
#. SocUA
#: WriterCommands.xcu
@@ -35226,7 +35226,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Inspector Deck"
-msgstr ""
+msgstr "Tauler d'inspecció"
#. joS9f
#: WriterFormWindowState.xcu
diff --git a/source/ca/sc/messages.po b/source/ca/sc/messages.po
index d94b81e1d94..cf1da164bfc 100644
--- a/source/ca/sc/messages.po
+++ b/source/ca/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-09 15:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-18 15:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/ca/>\n"
"Language: ca\n"
@@ -1469,7 +1469,7 @@ msgstr "Importa de DIF"
#: sc/inc/globstr.hrc:272
msgctxt "STR_STYLENAME_STANDARD"
msgid "Default"
-msgstr ""
+msgstr "Per defecte"
#. TG9pD
#: sc/inc/globstr.hrc:273
@@ -28625,38 +28625,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr "Especifica que quan enganxeu cel·les del porta-retalls a un interval de cel·les que no estigui buit aparegui un avís."
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Utilitza la mètrica de la impressora per a la formatació de text"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "Especifica que la mètrica de la impressora s'aplica per a imprimir i també per a formatar la visualització en pantalla."
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Realça la sele_cció a les capçaleres de columnes/files"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr "Especifica si es realcen les capçaleres de columna i de fila de les columnes o files seleccionades."
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Actualitza les referències en ordenar els intervals de cel·les"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Paràmetres d'entrada"
diff --git a/source/ca/sd/messages.po b/source/ca/sd/messages.po
index 582ecc7ddbe..d3a3d656fa6 100644
--- a/source/ca/sd/messages.po
+++ b/source/ca/sd/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-04 20:47+0000\n"
+"PO-Revision-Date: 2020-11-20 07:13+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/ca/>\n"
"Language: ca\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562916317.000000\n"
#. WDjkB
@@ -3105,10 +3105,9 @@ msgstr "Introduïu la distància vertical entre els centres de l'objecte selecci
#. uyLiW
#: sd/uiconfig/sdraw/ui/copydlg.ui:306
-#, fuzzy
msgctxt "copydlg|extended_tip|angle"
msgid "Enter the angle (0 to 359 degrees) by which you want to rotate the duplicate object. Positive values rotate the duplicate object in a clockwise direction and negative values in a counterclockwise direction."
-msgstr "Introduïu l'angle (de 0 a 359 graus) amb què voleu girar l'objecte duplicat. Els valors positius giren l'objecte duplicat en el sentit de les agulles del rellotge i els valors negatius en sentit contrari. "
+msgstr "Introduïu l'angle (de 0 a 359 graus) amb què voleu girar l'objecte duplicat. Els valors positius giren l'objecte duplicat en el sentit de les agulles del rellotge i els valors negatius en sentit contrari."
#. Mb9Gs
#: sd/uiconfig/sdraw/ui/copydlg.ui:323
@@ -3166,10 +3165,9 @@ msgstr "Trieu un color per a l'objecte seleccionat."
#. AAoBa
#: sd/uiconfig/sdraw/ui/copydlg.ui:530
-#, fuzzy
msgctxt "copydlg|extended_tip|end"
msgid "Choose a color for the duplicate object. If you are making more than one copy, this color is applied to the last copy."
-msgstr "Trieu un color per a l'objecte duplicat. Si esteu fent més d'una còpia, aquest color s'aplica a l'última còpia. "
+msgstr "Trieu el color de l'objecte duplicat. Si esteu fent més d'una còpia, aquest color s'aplica a l'última."
#. F3A93
#: sd/uiconfig/sdraw/ui/copydlg.ui:547
@@ -3179,7 +3177,6 @@ msgstr "Colors"
#. W2wTC
#: sd/uiconfig/sdraw/ui/copydlg.ui:580
-#, fuzzy
msgctxt "copydlg|extended_tip|DuplicateDialog"
msgid "Makes one or more copies of a selected object."
msgstr "Crea una o diverses còpies d'un objecte seleccionat. "
@@ -3614,7 +3611,7 @@ msgstr "_Nom"
#: sd/uiconfig/sdraw/ui/insertlayer.ui:148
msgctxt "insertlayer|extended_tip|title"
msgid "Enter the title of the layer."
-msgstr ""
+msgstr "Introduïu el títol de la capa."
#. hCTSd
#: sd/uiconfig/sdraw/ui/insertlayer.ui:159
@@ -3672,10 +3669,9 @@ msgstr "Evita la modificació dels elements de la capa."
#. ogtGC
#: sd/uiconfig/sdraw/ui/insertlayer.ui:313
-#, fuzzy
msgctxt "insertlayer|extended_tip|InsertLayerDialog"
msgid "Inserts a new layer in the document. Layers are only available in Draw, not in Impress."
-msgstr "Insereix una capa nova al document. Les capes són disponibles només al Draw, i no pas a l'Impress. "
+msgstr "Insereix una capa nova al document. Les capes només estan disponibles al Draw, i no a l'Impress."
#. dCRtD
#: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:18
@@ -4656,17 +4652,15 @@ msgstr "Color de la difu_minació:"
#. KrjQe
#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:270
-#, fuzzy
msgctxt "customanimationeffecttab|extended_tip|sound_list"
msgid "Select a sound from the Gallery or select one of the special entries."
-msgstr "Selecciona un so de la galeria o selecciona una de les entrades especials."
+msgstr "Seleccioneu un so de la galeria o una de les entrades especials."
#. XcRTu
#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:289
-#, fuzzy
msgctxt "customanimationeffecttab|extended_tip|sound_preview"
msgid "Plays the selected sound file."
-msgstr " Reprodueix el fitxer de so seleccionat."
+msgstr "Reprodueix el fitxer de so seleccionat."
#. EwZ9F
#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:320
@@ -4683,7 +4677,6 @@ msgstr "retard entre caràcters"
#. DQV2T
#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:358
-#, fuzzy
msgctxt "customanimationeffecttab|extended_tip|text_delay"
msgid "Specifies the percentage of delay between animations of words or letters."
msgstr "Especifica el percentatge de retard entre les animacions de paraules o lletres."
@@ -4714,10 +4707,9 @@ msgstr "Amaga a l'animació següent"
#. PZg2D
#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:389
-#, fuzzy
msgctxt "customanimationeffecttab|extended_tip|aeffect_list"
msgid "Select a color to be shown after the animation ends, or select another after-effect from the list"
-msgstr "Seleccioneu un color que es mostrarà després que acabi l'animació o seleccioneu un altre efecte posterior de la llista"
+msgstr "Seleccioneu el color que es mostrarà un cop acabi l'animació, o seleccioneu un altre efecte de la llista"
#. 7k6dN
#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:405
@@ -4739,10 +4731,9 @@ msgstr "Lletra per lletra"
#. CFDW6
#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:411
-#, fuzzy
msgctxt "customanimationeffecttab|extended_tip|text_animation_list"
msgid "Select the animation mode for the text of the current shape"
-msgstr "Selecciona el mode d'animació per al text de la forma actual"
+msgstr "Seleccioneu el mode d'animació per al text de la forma actual"
#. vF4Wp
#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:428
@@ -4879,7 +4870,7 @@ msgstr "Animació del text"
#, fuzzy
msgctxt "customanimationspanel|extended_tip|custom_animation_list"
msgid "The animation list displays all animations for the current slide."
-msgstr "La llista d'animacions mostra totes les animacions de la diapositiva actual. "
+msgstr "La llista d'animacions mostra totes les animacions de la diapositiva actual."
#. KFRTW
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:163
@@ -5057,10 +5048,9 @@ msgstr "_Retard:"
#. g6bR3
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:536
-#, fuzzy
msgctxt "customanimationspanel|extended_tip|delay_value"
msgid "The animation starts delayed by this amount of time."
-msgstr "L'animació comença retardat per aquesta quantitat de temps."
+msgstr "L'animació comença retardada aquesta quantitat de temps."
#. FgkKZ
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:560
@@ -5124,10 +5114,9 @@ msgstr "A_grupa el text:"
#. 2eY3z
#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:50
-#, fuzzy
msgctxt "customanimationtexttab|extended_tip|auto_after_value"
msgid "Enter an additional delay in seconds to animate subsequent paragraphs."
-msgstr "Introduïu un retard addicional en segons per animar paràgrafs posteriors."
+msgstr "Introduïu un retard addicional en segons per animar els paràgrafs posteriors."
#. ujWxH
#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:61
@@ -5137,10 +5126,9 @@ msgstr "_Automàticament després de:"
#. DLeHn
#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:70
-#, fuzzy
msgctxt "customanimationtexttab|extended_tip|auto_after"
msgid "If \"Group text - By 1st level paragraphs\" is selected, the paragraphs are animated one after the other."
-msgstr "Si se selecciona \"Text de grup - Per paràgrafs de primer nivell\" els paràgrafs s'animaran un després de l'altre."
+msgstr "Si se selecciona \"Text de grup - Per paràgrafs del primer nivell\" els paràgrafs s'animaran un darrere l'altra."
#. KEqJZ
#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:84
@@ -5189,7 +5177,7 @@ msgstr "Per paràgrafs de cinquè nivell"
#, fuzzy
msgctxt "customanimationtexttab|extended_tip|group_text_list"
msgid "Specifies how multiple paragraphs are animated"
-msgstr "Especifica com s'animen múltiples paràgrafs "
+msgstr "Especifica com s'animen múltiples paràgrafs"
#. LDD3y
#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:112
@@ -5199,10 +5187,9 @@ msgstr "Anima la _forma adjunta"
#. T6S58
#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:121
-#, fuzzy
msgctxt "customanimationtexttab|extended_tip|animate_shape"
msgid "Deselect this box to animate only the text, not the shape."
-msgstr "Desselecciona aquest quadre per animar només el text no la forma."
+msgstr "Desseleccioneu aquest quadre per animar només el text, no la forma."
#. ir4kZ
#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:133
@@ -5212,10 +5199,9 @@ msgstr "En ordre _invers"
#. LK7yC
#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:142
-#, fuzzy
msgctxt "customanimationtexttab|extended_tip|reverse_order"
msgid "Animates the paragraphs in reverse order."
-msgstr "Animata els paràgrafs en ordre invers."
+msgstr "Anima els paràgrafs en ordre invers."
#. QGBar
#: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:48
@@ -5719,7 +5705,7 @@ msgstr "Alinea les imatges de la seqüència d'animació."
#: sd/uiconfig/simpress/ui/dockinganimation.ui:410
msgctxt "dockinganimation|label1"
msgid "Animation Group"
-msgstr ""
+msgstr "Grup d’animació"
#. Bu3De
#: sd/uiconfig/simpress/ui/dockinganimation.ui:454
diff --git a/source/ca/sfx2/messages.po b/source/ca/sfx2/messages.po
index 36c24e25b44..e770fcecdb5 100644
--- a/source/ca/sfx2/messages.po
+++ b/source/ca/sfx2/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-10-27 11:35+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"PO-Revision-Date: 2020-11-20 14:48+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -1654,286 +1654,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Tanca el quadre"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Acobla"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Desacobla"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Més opcions"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Tanca la barra lateral"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Configuració de la barra lateral"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Personalització"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Restaura els valors per defecte"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Tanca la barra lateral"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alitzarina"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Rusc"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Corba blava"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Cianotip"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Blau brillant"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Vermell elegant"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ADN"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Focus"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Au forestal"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impressió"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiració"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Llums"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Verd exuberant"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metròpoli"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Blau de mitjanit"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natura"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Llapis"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portafolis"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progrés"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Ocàs"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Llampant"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Currículum"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Per defecte"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Carta comercial moderna, lletra sense serif"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Carta comercial moderna, lletra amb serif"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Targeta de visita amb logotip"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Simple"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Suprimeix"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Neteja-ho tot"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Longitud de la contrasenya"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "La contrasenya que heu introduït té problemes d'interoperabilitat. Introduïu una contrasenya de menys de 52 bytes o de més de 55 bytes."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "Mantingueu premuda la tecla %{key} i feu clic a l'enllaç per a obrir-lo: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Feu clic per a obrir l'enllaç: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(utilitzat per: %STYLELIST)"
@@ -2636,10 +2600,9 @@ msgstr "_Incrusta les lletres tipogràfiques en el document"
#. FzuRv
#: sfx2/uiconfig/ui/documentfontspage.ui:40
-#, fuzzy
msgctxt "documentfontspage|extended_tip|embedFonts"
msgid "Mark this box to embed document fonts into the document file, for portability between different computer systems."
-msgstr "Marca aquesta casella per incrustar els tipus de lletra per als tipus de lletra del document en el fitxer de document per a tots els sistemes d'ordinador diferents."
+msgstr "Activeu aquesta casella per a incrustar les lletres al document, per a facilitar la portabilitat entre diferents sistemes."
#. 6rfon
#: sfx2/uiconfig/ui/documentfontspage.ui:52
@@ -2651,7 +2614,7 @@ msgstr "_Només insereix les lletres tipogràfiques que s'usen en els documents"
#: sfx2/uiconfig/ui/documentfontspage.ui:74
msgctxt "documentfontspage|fontEmbeddingLabel"
msgid "Font Embedding"
-msgstr ""
+msgstr "Incrustació tipogràfica"
#. Gip6V
#: sfx2/uiconfig/ui/documentfontspage.ui:105
@@ -2681,7 +2644,7 @@ msgstr "Sistemes escriptura dels tipus a inserir"
#: sfx2/uiconfig/ui/documentfontspage.ui:173
msgctxt "documentfontspage|extended_tip|DocumentFontsPage"
msgid "Embed document fonts in the current file."
-msgstr ""
+msgstr "Fonts incrustades en l'arxiu actual."
#. CCxGn
#: sfx2/uiconfig/ui/documentinfopage.ui:19
@@ -3005,7 +2968,7 @@ msgstr "_Mostra"
#: sfx2/uiconfig/ui/helpindexpage.ui:121
msgctxt "helpindexpage|label1"
msgid "_Search Term"
-msgstr ""
+msgstr "_Terme de cerca"
#. wKLbH
#: sfx2/uiconfig/ui/helpmanual.ui:7
@@ -3203,13 +3166,13 @@ msgstr "Mostra l'aplicació que va desar per última vegada el fitxer d'origen.
#: sfx2/uiconfig/ui/linkeditdialog.ui:171
msgctxt "linkeditdialog|extended_tip|file"
msgid "Path to the source file. Relative paths must be expressed by full URI, for example, with file://."
-msgstr ""
+msgstr "Camí al fitxer font. Els camins relatius s'han d'expressar amb l'URI completa, utilitzant file://."
#. cMPNq
#: sfx2/uiconfig/ui/linkeditdialog.ui:188
msgctxt "linkeditdialog|extended_tip|category"
msgid "Lists the section or object that the link refers to in the source file. If you want, you can enter a new section or object here."
-msgstr ""
+msgstr "Llista la secció o l'objecte a què fa referència l'enllaç del fitxer font. Si voleu, aquí podeu introduir una nova secció o objecte."
#. hiapi
#: sfx2/uiconfig/ui/linkeditdialog.ui:209
@@ -3759,10 +3722,9 @@ msgstr "Contrasenya"
#. yVorz
#: sfx2/uiconfig/ui/password.ui:167
-#, fuzzy
msgctxt "password|extended_tip|pass1ed"
msgid "Type a password. A password is case sensitive."
-msgstr "Escriviu una contrasenya per la contrasenya distingeixen entre majúscules i minúscules."
+msgstr "Escriviu una contrasenya. Es distingeix entre majúscules i minúscules."
#. kEcVk
#: sfx2/uiconfig/ui/password.ui:186
@@ -3790,10 +3752,9 @@ msgstr "Confirmació:"
#. EkHiq
#: sfx2/uiconfig/ui/password.ui:273
-#, fuzzy
msgctxt "password|extended_tip|pass2ed"
msgid "Type a password. A password is case sensitive."
-msgstr "Escriviu una contrasenya per la contrasenya distingeixen entre majúscules i minúscules."
+msgstr "Escriviu una contrasenya. Es distingeix entre majúscules i minúscules."
#. c4nGS
#: sfx2/uiconfig/ui/password.ui:292
@@ -4167,6 +4128,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Suprimeix..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
@@ -4285,13 +4282,13 @@ msgstr "Paràmetres"
#: sfx2/uiconfig/ui/templatedlg.ui:367
msgctxt "templatedlg|extensions_btn"
msgid "_Extensions"
-msgstr ""
+msgstr "_Extensions"
#. uC7Rk
#: sfx2/uiconfig/ui/templatedlg.ui:371
msgctxt "templatedlg|online_link|tooltip_text"
msgid "Add more templates via extension"
-msgstr ""
+msgstr "Afegir més plantilles mitjançant l'extensió"
#. PXRa3
#: sfx2/uiconfig/ui/templatedlg.ui:386
diff --git a/source/ca/starmath/messages.po b/source/ca/starmath/messages.po
index c6683f0c2a2..eb223e36612 100644
--- a/source/ca/starmath/messages.po
+++ b/source/ca/starmath/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-10-27 11:35+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"PO-Revision-Date: 2020-11-20 07:13+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "or"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Signe +"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Signe -"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Signe +-"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Signe -+"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "NO lògic"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Suma +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Resta -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Multiplicació (punt)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Multiplicació (creu)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Multiplicació (asterisc)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Divisió (barra inclinada)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Divisió (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Divisió (fracció)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
-msgstr ""
+msgstr "Fracció"
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Barra encerclada"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Punt encerclat"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Signe menys encerclat"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Signe més encerclat"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Producte tensorial"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "I lògic"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "O lògic"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "És igual"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "No és igual"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "És menor que"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "És major que"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "És menor o igual que"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "És major o igual que"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "És menor o igual que"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "És major o igual que"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "És molt menor que"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "És molt major que"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Es defineix com a"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "És congruent amb"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "És aproximadament igual"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "És semblant a"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "És semblant o igual"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "És proporcional a"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "És ortogonal a"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "És paral·lel a"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Tendeix"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Correspon a (esquerra)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Correspon a (dreta)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Contingut a"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "No contingut a"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Conté"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Unió"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Intersecció"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Diferència"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
-msgstr ""
+msgstr "Conjunt quocient"
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Subconjunt"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Subconjunt o igual a"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Superconjunt"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Superconjunt o igual a"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "No subconjunt"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "No subconjunt ni igual"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "No superconjunt"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "No superconjunt ni igual"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr "Funció general"
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Valor absolut"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Factorial"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Arrel quadrada"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "Arrel enèsima"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Funció exponencial"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Funció exponencial"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Logaritme natural"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logaritme"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sinus"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Cosinus"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangent"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Cotangent"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arc sinus"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arc cosinus"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arc tangent"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arc cotangent"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Sinus hiperbòlic"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Cosinus hiperbòlic"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Tangent hiperbòlica"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Cotangent hiperbòlica"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Arc sinus hiperbòlic de l'àrea"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Arc cosinus hiperbòlic de l'àrea"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Arc tangent hiperbòlica de l'àrea"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Arc cotangent hiperbòlica de l'àrea"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr "Operador general"
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr "Operador general subíndex inferior"
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr "Operador general superíndex superior"
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr "Operador general subíndex i superíndex"
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Suma"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Suma amb subíndex inferior"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Suma amb superíndex superior"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Suma amb superíndex/subíndex"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Producte"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Producte amb subíndex inferior"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Producte amb superíndex superior"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Producte amb superíndex/subíndex"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Coproducte"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Coproducte amb subíndex inferior"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Coproducte amb superíndex superior"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Coproducte amb superíndex/subíndex"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Límit"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Límit amb subíndex inferior"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Límit amb superíndex superior"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Límit amb superíndex i subíndex"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Límit inferior"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Límit inferior amb subíndex"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Límit inferior amb superíndex"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Límit inferior amb subíndex i superíndex"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Límit superior"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Límit superior amb subíndex"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Límit superior amb superíndex"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Límit superior amb subíndex i superíndex"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Existeix"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "No existeix"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Per a tots"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integral"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Integral amb subíndex inferior"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Integral amb superíndex superior"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integral amb superíndex i subíndex"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Integral doble"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Integral doble amb subíndex a sota"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Integral doble amb superíndex a sobre"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Integral doble amb superíndex i subíndex"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Integral triple"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Integral triple amb subíndex a sota"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Integral triple amb superíndex a sobre"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Integral triple amb superíndex i subíndex"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Integral de línia"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Integral de línia amb subíndex inferior"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Integral de línia amb superíndex superior"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Integral de línia amb superíndex i subíndex"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Integral de línia doble"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Integral de línia doble amb subíndex inferior"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Integral de línia doble amb superíndex superior"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Integral de línia doble amb superíndex i subíndex"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Integral de línia triple"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Integral de línia triple amb subíndex inferior"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Integral de línia triple amb superíndex superior"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Integral de línia triple amb superíndex i subíndex"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Accent agut"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Línia superior"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Breu"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Circumflex invers"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Cercle"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Punt"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Punt doble"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Punt triple"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Accent greu"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Circumflex"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Titlla"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Fletxa vectorial"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Arpó"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Línia a sota"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Línia a sobre"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Línia a través"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Transparent"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Lletra negreta"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Lletra cursiva"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Canvia la mida"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Canvia la lletra tipogràfica"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Color negre"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Color blau"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Color verd"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Color vermell"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
-msgstr ""
+msgstr "Color aiguamarina"
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
-msgstr ""
+msgstr "Color fucsia"
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Color gris"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Color llimona"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Color marró"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Color blau marí"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Color verd oliva"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Color porpra"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Color plata"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Color xarxet"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Color groc"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "Color RGB"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
-msgstr ""
+msgstr "Color RGBA"
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
+msgstr "Color hexadecimal"
+
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
msgstr ""
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Claudàtors d'agrupament"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Parèntesis"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Claudàtors"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Claudàtors dobles"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Claus"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Parèntesis angulars"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Sostre"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Terra"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Línies simples"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Línies dobles"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Claudàtors d'operador"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Parèntesis (dimensionables)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Claudàtors (dimensionables)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Claudàtors dobles (dimensionables)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Claus (dimensionables)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Parèntesis angulars (dimensionables)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Sostre (escalable)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Terra (escalable)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Línies simples (dimensionables)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Línies dobles (dimensionables)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Claudàtors d'operador (dimensionables)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Avaluat com a"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Claus a la part superior (dimensionables)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Claus a la part inferior (dimensionables)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
-msgstr ""
+msgstr "Avalua"
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
-msgstr ""
+msgstr "Avalua el subíndex a sota"
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
-msgstr ""
+msgstr "Avalua el superíndex a sobre"
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
-msgstr ""
+msgstr "Avalua amb superíndex/subíndex"
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Subíndex a la dreta"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Potència"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Subíndex a l'esquerra"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Superíndex a l'esquerra"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Subíndex a sota"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Superíndex a sobre"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Separació petita"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Buit"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Línia nova"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Pila vertical (2 elements)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Pila vertical"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Matriu"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Alineació a l'esquerra"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Alineació al centre"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Alineació a la dreta"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Àlef"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Conjunt buit"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Part real"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Part imaginària"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Infinit"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Parcial"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr "Transformada de Laplace"
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr "Transformada de Fourier"
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "p de Weierstrass"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Punts al mig"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Punts cap amunt"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Punts cap avall"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Punts per sota"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Punts en vertical"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Concatena"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Divisió (barra inclinada)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Divisió (contra barra inclinada)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Divideix"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "No divideix"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Fletxa doble esquerra"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Fletxa doble esquerra i dreta"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Fletxa doble dreta"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Conjunt dels nombres naturals"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Conjunt dels nombres enters"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Conjunt dels nombres racionals"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Conjunt dels nombres reals"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Conjunt dels nombres complexos"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Circumflex gran"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Titlla gran"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Fletxa vectorial llarga"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Arpó gran"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h barrada"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda barrada"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Fletxa esquerra"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Fletxa dreta"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Fletxa amunt"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Fletxa avall"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Sense espai"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Precedeix"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Precedeix o és igual a"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Precedeix o és equivalent a"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Succeeix"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Succeeix o és igual a"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Succeeix o és equivalent a"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "No precedeix"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "No succeeix"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Operadors unaris i binaris"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Relacions"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Operacions amb conjunts"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funcions"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operadors"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Atributs"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Claudàtors"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formats"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Altres"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Exemples"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Circumferència"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Equivalència massa-energia"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Teorema de Pitàgores"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
-msgstr ""
+msgstr "Sèrie de Taylor"
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Distribució de Gauss"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
-msgstr ""
+msgstr "Equació d'Euler-Lagrange"
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
-msgstr ""
+msgstr "Teorema fonamental del càlcul"
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
-msgstr ""
+msgstr "Equació del caos"
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
-msgstr ""
+msgstr "Identitat d'Euler"
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
-msgstr ""
+msgstr "Segona llei de Newton"
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
-msgstr ""
+msgstr "Relativitat general"
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
-msgstr ""
+msgstr "Relativitat especial"
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Estàndard"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Cursiva"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Negreta"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "negre"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blau"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "verd"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "vermell"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
-msgstr ""
+msgstr "aiguamarina"
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
-msgstr ""
+msgstr "fúcsia"
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "gris"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "llimona"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "marró"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "blau marí"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "verd oliva"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "porpra"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "plata"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "jade"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "groc"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
-msgstr ""
+msgstr "rgba"
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
-msgstr ""
+msgstr "hex"
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "amaga"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "mida"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "lletra tipogràfica"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "esquerra"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centre"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "dreta"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Ordres"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Fórmula"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "S'està desant el document..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Fórmula del %PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR: "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Caràcter no esperat"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Símbol inesperat"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "S'esperava «{»"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "S'esperava «}»"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "S'esperava «(»"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "S'esperava «)»"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Els símbols esquerre i dret no es corresponen"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
-msgstr "S'esperava «fixed«, «sans» o «serif»"
+msgstr "S'esperava «fixed», «sans» o «serif»"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "«size» seguit d'un senyal no esperat"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "No es permet l'alineació doble"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "No es permeten ni els subíndexs dobles ni els superíndexs dobles"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
-msgstr ""
+msgstr "S'esperava un nombre"
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "S'esperava «#»"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Es necessita un color"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "S'esperava «RIGHT»"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Contingut"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Títol"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Text de la fórmula"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "V~ores"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Mida"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Mida o~riginal"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Ajusta a la ~pàgina"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "E~scalat"
diff --git a/source/ca/svtools/messages.po b/source/ca/svtools/messages.po
index dc706b5aaad..bed700b9053 100644
--- a/source/ca/svtools/messages.po
+++ b/source/ca/svtools/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-10-27 11:35+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-18 15:35+0000\n"
+"Last-Translator: Jaumej <jaume.jorba@gmail.com>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Desfés: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Refés: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Repeteix: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Text sense format"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Text sense format (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Imatge de mapa de bits (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Metafitxer de interfície de dispositiu d'imatge (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Format de text enriquit (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Format de text enriquit (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Format de dibuix del %PRODUCTNAME"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Animació o mapa de bits de l'StarView (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Informació d'estat d'un enllaç intern de SVX"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Enllaç deL %PRODUCTNAME (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Adreça d'interès del Netscape"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Format de servidor Star"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Format d'objecte Star"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Objecte miniaplicació"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Objecte connector"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objecte de l'StarWriter 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objecte de l'StarWriter 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objecte de l'StarWriter 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objecte de l'StarWriter/Web 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objecte de l'StarWriter/Web 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Objecte de l'StarWriter/Master 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Objecte de l'StarWriter/Master 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objecte de l'StarDraw"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objecte de l'StarDraw 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objecte de l'StarImpress 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objecte de l'StarDraw 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objecte de l'StarCalc"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objecte de l'StarCalc 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objecte de l'StarCalc 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objecte de l'StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objecte de l'StarChart 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objecte de l'StarChart 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objecte de l'StarImage"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objecte de l'StarImage 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objecte de l'StarImage 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objecte de l'StarMath"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objecte de l'StarMath 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objecte de l'StarMath 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objecte de l'StarObject Paint"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Llenguatge de marques d'hipertext (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Llenguatge de marques d'hipertext simplificat (Simple HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Format d'intercanvi binari del Microsoft Excel 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Format d'intercanvi binari del Microsoft Excel 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Intercanvi de dades dinàmiques (enllaç DDE)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Format d'intercanvi de dades (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objecte de Microsoft Word"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objecte de l'StarFrameSet"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Objecte document d'Office"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Informació de document de Notes"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Document SFX"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objecte de l'StarChart 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Objecte gràfic"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Objecte de l'OpenOffice.org Writer 1.0"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Objecte de l'OpenOffice.org Writer/Web 1.0"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Objecte mestre de l'OpenOffice.org Writer 1.0"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Objecte de l'OpenOffice.org Draw 1.0"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Objecte de l'OpenOffice.org Impress 1.0"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Objecte de l'OpenOffice.org Calc 1.0"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Objecte de diagrama de l'OpenOffice.org 1.0"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Objecte de l'OpenOffice.org Math 1.0"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Metafitxer de Windows"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Objecte font de dades"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Taula de font de dades"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Consulta SQL"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Diàleg de l'OpenOffice.org 1.0"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Enllaç"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Format HTML sense comentaris"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Imatge de xarxa portàtil (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "No s'ha pogut inserir l'objecte %."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "No s'ha pogut inserir l'objecte del fitxer %."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Objectes addicionals"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Font desconeguda"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "kB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1234 +501,1234 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumèric"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Joc de caràcters"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Diccionari"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Traç"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Llibreta de telèfons"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonètic (primer alfanumèric)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonètic (últim alfanumèric)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumèric"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Diccionari"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Traç"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonètic (primer alfanumèric, agrupat per síl·labes)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonètic (primer alfanumèric, agrupat per consonants)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonètic (últim alfanumèric, agrupat per síl·labes)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonètic (últim alfanumèric, agrupat per consonants)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Clar"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Cursiva lleu"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normal"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Cursiva"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Negreta"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Negreta cursiva"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Negre"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Negra cursiva"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Llibre"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Negreta obliqua"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensada"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Condensada negreta"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Condensada negreta cursiva"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Condensada negreta obliqua"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Condensada cursiva"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Condensada obliqua"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Extafina"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Extrafina cursiva"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Obliqua"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Seminegreta"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Seminegreta cursiva"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "S'utilitzarà la mateixa lletra tipogràfica a la impressora i a la pantalla."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Lletra d'impressora. La visualització per pantalla podria ser diferent."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Aquest estil de lletra s'imitarà o s'utilitzarà el més adequat."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Aquesta lletra tipogràfica no està instal·lada. S'utilitzarà la lletra tipogràfica disponible més adient."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Mou a l'inici"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Mou a l'esquerra"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Mou a la dreta"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Mou al final"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Afegeix"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Regle horitzontal"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Regle vertical"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Llindar d'un bit"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Tramat d'un bit"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Escala de grisos de 4 bits"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Color de 4 bits"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Escala de grisos de 8 bits"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Color de 8 bits"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Color real de 24 bits"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "La imatge necessita aproximadament %1 kB de memòria."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "La imatge necessita aproximadament %1 kB de memòria; la mida del fitxer és %2 kB."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "La mida del fitxer és %1 kB."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "amfitrió"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Un altre CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Preparat"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "En pausa"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Supressió pendent"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Ocupat"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "S'està inicialitzant"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "S'està esperant"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "S'està escalfant"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "S'està processant"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "S'està imprimint"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Desconnectat"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Error"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Servidor desconegut"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Bloqueig de paper"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "No hi ha prou paper"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Alimentació manual"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problema amb el paper"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "E/S actives"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "La paperera de sortida està plena"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Tòner baix"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "No hi ha tòner"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Suprimeix la pàgina"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Cal la intervenció de l'usuari"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "No hi ha prou memòria"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Coberta oberta"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Mode d'estalvi d'energia"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Impressora per defecte"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documents"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<cap>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Empresa"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Departament"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Nom"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Cognoms"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Carrer"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Estat"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Codi postal"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Ciutat"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Títol"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posició"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Tractament"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Inicials"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Tancament complementari"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel.: particular"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel.: feina"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Adreça electrònica"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Usuari 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Usuari 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Usuari 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Usuari 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Identificador"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Comarca"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel.: oficina"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Buscapersones"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Tel. mòbil"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel.: altres"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendari"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Convida"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ de l'usuari $user$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
-msgstr ""
+msgstr "%PRODUCTNAME requereix l'entorn d'execució Java (JRE) per executar aquesta tasca. Si us plau, instal·leu JRE i reinicieu %PRODUCTNAME. %FAQLINK"
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
-msgstr ""
+msgstr "%PRODUCTNAME requereix %BITNESS-bit l'entorn de desenvolupament Java (JRE) per executar aquesta tasca. Si us plau, instal·leu JRE i reinicieu %PRODUCTNAME. %FAQLINK"
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
-msgstr ""
+msgstr "%PRODUCTNAME requereix el kit de desenvolupament Java d'Oracle (JDK) als macOS 10.10 o superiors per executar aquesta tasca. Si us plau, instaleu-lo i reinicieu %PRODUCTNAME. %FAQLINK"
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "La configuració del %PRODUCTNAME ha canviat. A %PRODUCTNAME ▸ Preferències ▸ %PRODUCTNAME ▸ Avançat, seleccioneu l'entorn d'execució de Java que voleu utilitzar amb el %PRODUCTNAME."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "La configuració del %PRODUCTNAME ha canviat. A Eines ▸ Opcions ▸ %PRODUCTNAME ▸ Avançat, seleccioneu l'entorn d'execució de Java que voleu utilitzar amb el %PRODUCTNAME."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "El %PRODUCTNAME necessita un entorn d'execució de Java (JRE) per a realitzar aquesta tasca. El JRE seleccionat no funciona correctament. Seleccioneu-ne una altra versió o instal·leu un JRE nou i seleccioneu-lo a %PRODUCTNAME ▸ Preferències ▸ %PRODUCTNAME ▸ Avançat."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "El %PRODUCTNAME necessita un entorn d'execució de Java (JRE) per a realitzar aquesta tasca. El JRE seleccionat no funciona correctament. Seleccioneu-ne una altra versió o instal·leu un JRE nou i seleccioneu-lo a Eines ▸ Opcions ▸ %PRODUCTNAME ▸ Avançat."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Es necessita un JRE"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Seleccioneu un JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "El JRE no funciona correctament"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Codi font"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Fitxer de marcadors"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Gràfics"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Fitxer de configuració"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplicació"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Taula de la base de dades"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Fitxer del sistema"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Document del MS Word"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Fitxer d'ajuda"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Document HTML"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Fitxer d'arxiu"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Fitxer de registre"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Base de dades de l'StarOffice"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Document mestre de l'StarWriter 4.0 / 5.0"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Imatge de l'StarOffice"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Fitxer de text"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Enllaç"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Plantilla de l'StarOffice 3.0 - 5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Document del MS Excel"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Plantilla del MS Excel"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Fitxer de lot"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Fitxer"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Carpeta"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Document de text"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Full de càlcul"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentació"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Dibuix"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Document HTML"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Document mestre"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Fórmula"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Base de dades"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Plantilla de full de càlcul de l'OpenOffice.org 1.0"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Plantilla de dibuix de l'OpenOffice.org 1.0"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Plantilla de presentació de l'OpenOffice.org 1.0"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Plantilla de document de text de l'OpenOffice.org 1.0"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unitat local"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Unitat de disc dur"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Unitat de CD-ROM"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Connexió de xarxa"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Document del MS PowerPoint"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Plantilla del MS PowerPoint"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Exposició del MS PowerPoint"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Fórmula de l'OpenOffice.org 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Diagrama de l'OpenOffice.org 1.0"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Dibuix de l'OpenOffice.org 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Full de càlcul de l'OpenOffice.org 1.0"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Presentació de l'OpenOffice.org 1.0"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Document de text de l'OpenOffice.org 1.0"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Document mestre de l'OpenOffice.org 1.0"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Document MathML"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Base de dades OpenDocument"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Dibuix OpenDocument"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Fórmula OpenDocument"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Document mestre OpenDocument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Presentació OpenDocument"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Full de càlcul OpenDocument"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Text OpenDocument"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Plantilla de full de càlcul OpenDocument"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Plantilla de dibuix OpenDocument"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Plantilla de presentació OpenDocument"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Plantilla de text OpenDocument"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Extensió del %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Verificador ortogràfic Hunspell"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Divisor de paraules Libhyphen"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Tesaure MyThes"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Llista de paraules ignorades"
diff --git a/source/ca/svx/messages.po b/source/ca/svx/messages.po
index d30562f89b4..96e664ed8e6 100644
--- a/source/ca/svx/messages.po
+++ b/source/ca/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-09 15:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/ca/>\n"
@@ -16338,11 +16338,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Como_dins"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_Comentaris"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/ca/sw/messages.po b/source/ca/sw/messages.po
index 4e968f6aa7c..793444040ad 100644
--- a/source/ca/sw/messages.po
+++ b/source/ca/sw/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-09 15:35+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-20 14:48+0000\n"
+"Last-Translator: Jaumej <jaume.jorba@gmail.com>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -92,19 +92,19 @@ msgstr "Eviteu el text flotant."
#: sw/inc/AccessibilityCheckStrings.hrc:28
msgctxt "STR_HEADING_IN_TABLE"
msgid "Tables must not contain headings."
-msgstr ""
+msgstr "Les taules no han de contenir encapçalaments."
#. LxJKy
#: sw/inc/AccessibilityCheckStrings.hrc:29
msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
-msgstr ""
+msgstr "Manté ordenats els nivells d'encapçalament. El nivell d'encapçalament %LEVEL_CURRENT% no ha d'anar després de %LEVEL_PREV%."
#. gkDzg
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr ""
+msgstr "Eviteu fontwork als vostres documents. Assegureu-vos que el feu servir per mostrar un exemple o un text no especialment significatiu."
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -614,20 +614,20 @@ msgstr "Paràgrafs numerats"
#: sw/inc/inspectorproperties.hrc:31
msgctxt "RID_CHAR_DIRECTFORMAT"
msgid "Character Direct Formatting"
-msgstr ""
+msgstr "Format directe de caràcters"
#. fYAUc
#: sw/inc/inspectorproperties.hrc:32
msgctxt "RID_PARA_DIRECTFORMAT"
msgid "Paragraph Direct Formatting"
-msgstr ""
+msgstr "Format directe dels paràgrafs"
#. YUbUQ
#. Format names
#: sw/inc/inspectorproperties.hrc:35
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Color"
-msgstr ""
+msgstr "Formata els noms"
#. 5Btdu
#: sw/inc/inspectorproperties.hrc:36
@@ -687,13 +687,13 @@ msgstr "Tipus de salt"
#: sw/inc/inspectorproperties.hrc:45
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Category"
-msgstr ""
+msgstr "Categoria"
#. cd79Y
#: sw/inc/inspectorproperties.hrc:46
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Cell"
-msgstr ""
+msgstr "Cel·la"
#. JzYHd
#: sw/inc/inspectorproperties.hrc:47
@@ -17447,86 +17447,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr "Introduïu el nombre de files que voleu a la taula."
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "General"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "En_capçalament"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr "Inclou una fila capçalera a la taula."
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Repeteix les files d'encapçalament a les _pàgines noves"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr "Repeteix l'encapçalament de la taula a la part superior de les pàgines següents si la taula ocupa més d'una pàgina."
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "No _divideixis la taula entre pàgines"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr "Evita que la taula ocupi més d'una pàgina."
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr "Seleccioneu el nombre de files que voleu utilitzar per a l'encapçalament."
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Files d'_encapçalament:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Opcions"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr "Mostra una previsualització de la selecció actual."
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr "Seleccioneu un estil predefinit per a la taula nova."
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Estils"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr "Insereix una taula en el document. També podeu fer clic a la fletxa, arrossegar per a seleccionar el nombre de files i de columnes que voleu incloure a la taula i, a continuació, fer clic a l'última cel·la."
@@ -20048,289 +20054,289 @@ msgid "Text"
msgstr "Text"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Activa o desactiva la visualització mestra"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Canvia entre la visualització mestra i la normal si el document mestre és obert."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Visualització de navegació de contingut"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr "Canvia entre la visualització de totes les categories en el Navegador i la categoria seleccionada."
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Capçalera"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr "Mou el cursor a la capçalera o de la capçalera a l'àrea de text del document."
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Peu de pàgina"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr "Mou el cursor al peu de pàgina o del peu de pàgina a l'àrea de text del document."
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Àncora<->Text"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr "Trasllada el cursor alternativament al text de la nota al peu o a l'àncora corresponent."
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Defineix un recordatori"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Feu clic per establir un recordatori a la posició actual del cursor. Podeu definir un màxim de cinc recordatoris. Per saltar a un recordatori, feu clic a la icona Navegació, a la finestra Navegació feu clic a la icona Recordatori, després feu clic al botó Anterior o Següent."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Nivells d'encapçalament mostrats"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr "Feu clic en aquesta icona i, a continuació, trieu el nombre de nivells d'esquema d'encapçalament que voleu visualitzar a la finestra Navegador."
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Activa o desactiva el quadre de llista"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr "Mostra o amaga la llista del Navegador."
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Un nivell cap amunt"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Incrementa el nivell d'esquema de l'encapçalament seleccionat, i els encapçalaments que hi hagi sota, en un nivell. Per a incrementar el nivell d'esquema només de l'encapçalament seleccionat, manteniu premuda la tecla Ctrl i, a continuació, feu clic en aquesta icona."
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Un nivell cap avall"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Disminueix el nivell d'esquema de l'encapçalament seleccionat, i els encapçalaments que hi hagi sota, en un nivell. Per a disminuir només el nivell d'esquema de l'encapçalament seleccionat, manteniu premuda la tecla Ctrl i, a continuació, feu clic en aquesta icona."
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Capítol cap amunt"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Mou l'encapçalament seleccionat, i el text de sota de l'encapçalament, una posició amunt en el Navegador i en el document. Per a moure només l'encapçalament seleccionat i no el text associat, manteniu premuda la tecla Ctrl i, a continuació, feu clic en aquesta icona."
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Capítol cap avall"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Mou l'encapçalament seleccionat, i el text sota l'encapçalament, una posició d'encapçalament avall en el Navegador i en el document. Per a moure només l'encapçalament seleccionat i no el text associat, manteniu premuda la tecla Ctrl i, a continuació, feu clic en aquesta icona."
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Mode d'arrossegament"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr "Defineix les opcions d'arrossegar i deixar anar per a inserir elements del Navegador a un document, per exemple, com a enllaç. Feu clic en aquesta icona i, a continuació, seleccioneu l'opció que voleu utilitzar."
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Document"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Finestra activa"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Activa o desactiva a la visualització mestra"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Canvia entre la visualització mestra i la normal si el document mestre és obert."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Edita"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Actualitza"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Feu clic al contingut que voleu actualitzar."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Insereix"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Insereix un fitxer, un índex o un document nou al document mestre."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Desa també els continguts"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr "Desa una còpia dels continguts dels fitxers enllaçats al document mestre. D'aquesta manera, el contingut actual està disponible quan no es pot accedir als fitxers enllaçats."
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Mou cap amunt"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr "Desplaça la selecció una posició cap amunt a la llista del Navegador."
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Mou cap avall"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr "Desplaça la selecció una posició cap avall a la llista del Navegador."
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Selecció"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Índexs"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Enllaços"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Tot"
diff --git a/source/ckb/sc/messages.po b/source/ckb/sc/messages.po
index 79f02ac4b59..40a1a9498b5 100644
--- a/source/ckb/sc/messages.po
+++ b/source/ckb/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-08-02 07:43+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/ckb/>\n"
@@ -28528,38 +28528,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr ""
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr ""
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr ""
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "ڕێکخستنەکانی تێخستن"
diff --git a/source/ckb/sfx2/messages.po b/source/ckb/sfx2/messages.po
index 93c184132ae..652eb811402 100644
--- a/source/ckb/sfx2/messages.po
+++ b/source/ckb/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-08-17 10:44+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/ckb/>\n"
@@ -1576,286 +1576,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "لەنگەرگا(دۆک)"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr ""
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "هەڵبژاردەی زیاتر:"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr ""
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr ""
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr ""
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr ""
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "کار"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "خۆرئاوابوون"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "دەستپێکردنەوە"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "بنەڕەت"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "نوێ"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "سادە"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "سڕینەوە"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "هه‌مووی پاک بکه‌ره‌وه‌"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4077,6 +4041,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "سڕینەوە…"
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/ckb/starmath/messages.po b/source/ckb/starmath/messages.po
index 0eb876aa3d5..8f0ff566c2c 100644
--- a/source/ckb/starmath/messages.po
+++ b/source/ckb/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-07-24 04:35+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/ckb/>\n"
@@ -424,2065 +424,2198 @@ msgid "or"
msgstr ""
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr ""
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr ""
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr ""
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr ""
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr ""
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr ""
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr ""
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr ""
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr ""
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr ""
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr ""
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr ""
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr ""
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr ""
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr ""
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr ""
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr ""
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr ""
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr ""
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr ""
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr ""
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr ""
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr ""
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr ""
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr ""
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr ""
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr ""
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr ""
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr ""
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr ""
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr ""
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr ""
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr ""
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr ""
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr ""
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr ""
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr ""
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr ""
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr ""
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr ""
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr ""
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr ""
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr ""
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr ""
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr ""
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr ""
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr ""
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr ""
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr ""
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr ""
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr ""
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr ""
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr ""
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr ""
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr ""
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr ""
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr ""
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr ""
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr ""
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr ""
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr ""
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr ""
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr ""
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr ""
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr ""
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr ""
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr ""
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr ""
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr ""
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr ""
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr ""
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr ""
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr ""
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr ""
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr ""
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr ""
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr ""
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr ""
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr ""
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr ""
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr ""
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr ""
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr ""
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr ""
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr ""
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr ""
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr ""
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr ""
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr ""
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr ""
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr ""
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr ""
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr ""
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr ""
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr ""
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr ""
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr ""
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr ""
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr ""
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr ""
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr ""
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr ""
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr ""
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr ""
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr ""
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr ""
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr ""
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr ""
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr ""
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr ""
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr ""
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr ""
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr ""
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr ""
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr ""
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr ""
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr ""
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr ""
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr ""
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr ""
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr ""
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr ""
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr ""
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr ""
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr ""
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr ""
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr ""
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr ""
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr ""
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr ""
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr ""
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr ""
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr ""
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr ""
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr ""
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr ""
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr ""
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr ""
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr ""
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr ""
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr ""
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr ""
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr ""
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr ""
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr ""
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr ""
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr ""
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr ""
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr ""
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr ""
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr ""
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr ""
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr ""
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr ""
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr ""
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr ""
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr ""
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr ""
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr ""
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr ""
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr ""
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr ""
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr ""
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr ""
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr ""
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr ""
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr ""
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr ""
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr ""
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr ""
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr ""
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr ""
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr ""
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr ""
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr ""
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr ""
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr ""
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr ""
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr ""
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr ""
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr ""
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr ""
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr ""
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr ""
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr ""
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr ""
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr ""
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr ""
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr ""
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr ""
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr ""
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr ""
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr ""
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr ""
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr ""
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr ""
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr ""
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr ""
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr ""
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr ""
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr ""
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr ""
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr ""
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr ""
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr ""
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr ""
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr ""
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr ""
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr ""
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr ""
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr ""
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr ""
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "لار"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "قەڵەو"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr ""
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr ""
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr ""
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr ""
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr ""
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr ""
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr ""
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr ""
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr ""
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr ""
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr ""
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr ""
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr ""
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr ""
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr ""
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr ""
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr ""
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr ""
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr ""
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr ""
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr ""
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr ""
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr ""
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr ""
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr ""
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr ""
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr ""
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr ""
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr ""
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr ""
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr ""
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "قەبارە"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "قەبارەی بنە~ڕەتی"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "بیگونجێنە لەگەڵ پە~ڕەکە"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~پێوانەکردن"
diff --git a/source/ckb/svtools/messages.po b/source/ckb/svtools/messages.po
index 9364e5fd2af..252f8f37fda 100644
--- a/source/ckb/svtools/messages.po
+++ b/source/ckb/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-04 14:35+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ckb/>\n"
@@ -17,482 +17,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "گەڕانەوە: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "چوونەپێش: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~دووبارە: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "دەقی شێوەپێنەدراو"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "دەقی شێوەپێنەدراو (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr ""
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr ""
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr ""
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr ""
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr ""
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr ""
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr ""
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr ""
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr ""
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr ""
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr ""
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr ""
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr ""
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr ""
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr ""
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr ""
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr ""
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr ""
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr ""
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr ""
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr ""
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr ""
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr ""
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr ""
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr ""
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr ""
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr ""
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr ""
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr ""
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr ""
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr ""
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr ""
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr ""
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr ""
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr ""
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr ""
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr ""
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr ""
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr ""
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr ""
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr ""
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr ""
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "بەستەر"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr ""
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr ""
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr ""
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr ""
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "سەرچاوە نەناسراوە"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "بایت"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "کب"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "مێگابایت"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "گب"
@@ -500,1234 +500,1234 @@ msgstr "گب"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "ئاسایی"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "سێتی نووسەکان"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "فەرهەنگی وشە"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr ""
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr ""
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr ""
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr ""
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr ""
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr ""
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr ""
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "فەرهەنگی وشە"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr ""
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr ""
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr ""
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr ""
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr ""
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr ""
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr ""
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "کاڵ"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "لاری کاڵ"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "ڕێک"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "لار"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "قەڵەو"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "قەڵەو لار"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "ڕەش"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "لاری ڕەش"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "پەرتووک"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr ""
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr ""
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr ""
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr ""
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr ""
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr ""
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "بیبە بۆ لای چەپ"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "بیبە بۆ لای ڕاست"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "زیادکردن"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr ""
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "ڕاستەی ستوونی"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr ""
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr ""
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr ""
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr ""
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr ""
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "خانەخوێ"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "پۆرت"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "ئامادەیە"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "ڕاگیرا"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "لە چاوەڕوانی سڕینەوە"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "سەرقاڵ"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "ڕێگەپێدان"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "لە چاوەڕوانیدا"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "گەرمکردن"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "لە کاردایا"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "چاپدەکرێت"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "دەرهێڵ"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "هەڵە"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "ڕاژەی نەناسراو"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "پەڕە جام بووە"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "پەڕەی پێویستی تیا نیە"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "تێکردنی دەستی"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "کێشەی لە پەرە"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "مەرەکەبی کەمە"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "مەرەکەبی تیا نیە"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "پەڕە بسڕەوە"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "بیرگەی پێویست نیە"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "بەرگ بکەوە"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "دۆخی پاراستنی ووزە"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "چاپکەری بنەڕەتی"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "‫%d بەڵگەنامە"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<نیە>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "کۆمپانیا"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "بەش"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "ناوی یەکەم"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "ناوی کۆتایی"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "شەقام"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "وڵات"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "کۆدی Zip"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "شار"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "ناونیشان"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "شوێن"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr ""
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "سەرەتایی"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr ""
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "تێل: ماڵەوە"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "تێل: کار"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "فاکس"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "پۆستی ئەلکترۆنی"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "بەستەر"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "تێبینی"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "بەکارهێنەر ١"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "بەکارهێنەر ٢"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "بەکارهێنەر ٣"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "بەکارهێنەر ٤"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ناسنامە"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "پارێزگا"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "تێل: نوسینگە"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr ""
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "مۆبایل"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "تێل: هیتر"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "ڕۆژژمێر"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "بانگهێشتکردن"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "‫$user$’s $service$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr ""
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr ""
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr ""
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "کۆسی سەرچاوە"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "پەڕگەی دڵخوازەکان"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "گرافیک"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "پەڕگەی ڕێکخستن"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "نەرمەواڵا"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr ""
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "پەڕگەی سیستم"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr ""
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "پەڕگەی یارمەتی"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "بەڵگەنامەی HTML"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "پەڕگەی ئەرشیف"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr ""
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr ""
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr ""
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr ""
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr ""
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "بەستەر"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr ""
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr ""
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr ""
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr ""
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "پەڕگە"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "بوخچە"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "بەڵگەنامەی دەق"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "خشتە"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "پێشکەشکردن"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "کێشان"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "بەڵگەنامەی HTML"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "بەڵگەنامەی سەرەکی"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "هاوکێشە"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "بنکەی دراو"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "داڕێژەی خشتەیی OpenOffice.org 1.0"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "داڕێژەی کێشانی OpenOffice.org 1.0"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "داڕێژەی پێشکەشکردنی OpenOffice.org 1.0"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "داڕێژەی دەقی بەڵگەنامەی OpenOffice.org 1.0"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "لێخوڕی ناوخۆیی"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "په‌پکه‌لێخوڕ"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "وەگەڕخەری CD-ROM"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "پەیوەندی ڕایەڵە"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr ""
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr ""
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr ""
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "هاوکێشەی OpenOffice.org 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "کێشان OpenOffice.org 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "خشتەی OpenOffice.org 1.0"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "پێشکەش OpenOffice.org 1.0"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "دەقی بەڵگەنامەی OpenOffice.org 1.0"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr ""
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "بنکەدراوی OpenDocument"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "‫OpenDocument کێشان"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "هاوکێشەی OpenDocument"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr ""
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "پێشکەشکردن OpenDocument"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "‫OpenDocument خشتەیی"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "دەقی OpenDocument"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "داڕێژەی خشتەیی OpenDocument"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "داڕێژەی کێشانی OpenDocument"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "داڕێژەی پێشکەشکردنی OpenDocument"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "داڕێژەی دەقی OpenDocument"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "زیادکراوەکانی %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "لیستی پیتە پشتگوێخراوەکان"
diff --git a/source/ckb/svx/messages.po b/source/ckb/svx/messages.po
index c38ef52c524..ccb02c7b5bd 100644
--- a/source/ckb/svx/messages.po
+++ b/source/ckb/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-04 14:35+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/ckb/>\n"
@@ -16299,11 +16299,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_لێدوانەکان"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/ckb/sw/messages.po b/source/ckb/sw/messages.po
index d653ca4afbd..91befd10fbe 100644
--- a/source/ckb/sw/messages.po
+++ b/source/ckb/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-16 14:24+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-22 13:31+0100\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/ckb/>\n"
"Language: ckb\n"
@@ -17411,86 +17411,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "گشتی"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr ""
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr ""
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr ""
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr ""
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "هەڵبژاردەکان"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "شێوازەکان"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20004,289 +20010,289 @@ msgid "Text"
msgstr "دەق"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "سەرپەڕە"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "پێپەرە"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "بیرخەرەوە زیادبکە"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "ئاستی بەرزکردنەوە"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "ئاستی پلەداگرتن"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "بەش بەرزبکەرەوە"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "بەش پلەدابگرە"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "دۆخی ڕاکێشان"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "بەڵگەنامە"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "پەنجەرەی چالاک"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "دەسکاریکردن"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "نوێکردنەوە"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "هێنان"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "ناوەڕۆکیش پاشەکەوت بکە"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "بیبە بۆ سەرەوە"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "بیبە بۆ خوارەوە"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "بۆ دیاریکردن"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "پێڕستەکان"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "به‌سته‌ره‌كان"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "هەمووی"
diff --git a/source/cs/cui/messages.po b/source/cs/cui/messages.po
index e537b071f89..24f3367ad89 100644
--- a/source/cs/cui/messages.po
+++ b/source/cs/cui/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-15 09:48+0000\n"
+"PO-Revision-Date: 2020-11-17 20:35+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1565905500.000000\n"
#. GyY9M
@@ -3401,7 +3401,7 @@ msgstr "Nelze upravit nebo odstranit vlastní styl buňky? Zkontrolujte všechny
#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Potřebujete vyplnit posloupnost? Vyberte oblast buněk, následně List ▸ Vyplnit buňky ▸ Vyplnit posloupnost a zvolte mezi možnostmi Lineární, Růst, Datum a Automatické vyplnění."
#. BiSJM
#. local help missing
@@ -3474,7 +3474,7 @@ msgstr "Vyvíjíte nové filtry formátu XSLT a XML?"
#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General."
-msgstr ""
+msgstr "Pokud není v Nástroje ▸ Možnosti ▸ %PRODUCTNAME ▸ Obecné povolena možnost „Rozšířené tipy“, zobrazíte v dialogových oknem dostupné rozšířené tipy stisknutím Shift+F1."
#. hsZPg
#: cui/inc/tipoftheday.hrc:274
@@ -5630,7 +5630,7 @@ msgstr "Definované _uživatelem:"
#: cui/uiconfig/ui/borderpage.ui:98
msgctxt "borderpage|userdefft"
msgid "Click edge or corner to cycle through three states: set, unchanged, remove."
-msgstr ""
+msgstr "Klepáním na okraj nebo roh budete procházet tři stavy: nastavený, nezměněný, odstraněný."
#. sRXeg
#: cui/uiconfig/ui/borderpage.ui:111
@@ -5732,7 +5732,7 @@ msgstr "Vzdál_enost:"
#: cui/uiconfig/ui/borderpage.ui:547
msgctxt "borderpage|distanceft"
msgid "Width of shadow"
-msgstr ""
+msgstr "Šířka stínu"
#. gEF6E
#: cui/uiconfig/ui/borderpage.ui:572
diff --git a/source/cs/helpcontent2/source/text/sbasic/shared.po b/source/cs/helpcontent2/source/text/sbasic/shared.po
index 9947753cbc2..f951d7c9706 100644
--- a/source/cs/helpcontent2/source/text/sbasic/shared.po
+++ b/source/cs/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: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-11-14 15:35+0000\n"
+"PO-Revision-Date: 2020-11-21 15:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/cs/>\n"
"Language: cs\n"
@@ -26123,7 +26123,7 @@ msgctxt ""
"par_id3154143\n"
"help.text"
msgid "Defines one or more identifiers as constants."
-msgstr ""
+msgstr "Definuje jeden nebo více identifikátorů jako konstanty."
#. 4sYHn
#: 03100700.xhp
@@ -26132,7 +26132,7 @@ msgctxt ""
"par_id3147264\n"
"help.text"
msgid "A constant is a variable that helps to improve the readability of a program. Constants are not defined as a specific type of variable, but rather are used as placeholders in the code. You can only define a constant once and it cannot be modified."
-msgstr ""
+msgstr "Konstanta je proměnná, která pomáhá zlepšovat čitelnost programu. Konstanty se nedefinují jako proměnné určitého typu, ale spíše se v kódu používají jako zástupné symboly. Konstantu je možné definovat pouze jednou a nelze ji změnit."
#. ucqd6
#: 03100700.xhp
@@ -26141,7 +26141,7 @@ msgctxt ""
"par_id831588865616326\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/Const_statement.svg\" id=\"img_id651588865616326\"><alt id=\"alt_id281588865616326\">Const syntax</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/Const_statement.svg\" id=\"img_id651588865616326\"><alt id=\"alt_id281588865616326\">Syntaxe příkaz Const</alt></image>"
#. QZJkC
#: 03100700.xhp
@@ -26150,7 +26150,7 @@ msgctxt ""
"par_id3150984\n"
"help.text"
msgid "[Global|Private|Public] Const name = expression[, ...]"
-msgstr ""
+msgstr "[Global|Private|Public] Const název = výraz[, ...]"
#. 8cNC9
#: 03100700.xhp
@@ -26159,7 +26159,7 @@ msgctxt ""
"par_id3153897\n"
"help.text"
msgid "<emph>name:</emph> Any identifier that follows the standard variable naming conventions."
-msgstr ""
+msgstr "<emph>název:</emph> Identifikátor, který splňuje pravidla pro pojmenování proměnných."
#. MYNoo
#: 03100700.xhp
@@ -26168,7 +26168,7 @@ msgctxt ""
"par_id791593689338208\n"
"help.text"
msgid "<emph>expression:</emph> Any literal expression."
-msgstr ""
+msgstr "<emph>výraz:</emph> Jakýkoliv výraz."
#. C8b4Z
#: 03100700.xhp
@@ -26177,7 +26177,7 @@ msgctxt ""
"par_id3150400\n"
"help.text"
msgid "The data type must be omitted. When a library gets loaded in memory, %PRODUCTNAME Basic converts the program code internally so that each time a constant is used, the defined expression replaces it."
-msgstr ""
+msgstr "Datový typ je nutné vynechat. Ve chvíli, kdy se knihovna načte do paměti, %PRODUCTNAME Basic převede interně kód programu tak, že pokaždé, když se použije konstanta, nahradí ji definovaný výraz."
#. fYdeb
#: 03100700.xhp
@@ -26186,7 +26186,7 @@ msgctxt ""
"hd_id51593690561479\n"
"help.text"
msgid "Scope"
-msgstr ""
+msgstr "Rozsah platnosti"
#. QwPhy
#: 03100700.xhp
@@ -26195,7 +26195,7 @@ msgctxt ""
"par_id431593690612961\n"
"help.text"
msgid "By default constants are defined as private in modules and routines. Constants can be made public or global in order to be used from all modules, from all Basic libraries."
-msgstr ""
+msgstr "Ve výchozím nastavení jsou konstanty definovány jako soukromé v modulech a podprogramech. Aby je bylo možné používat ze všech modulů a ze všech knihoven Basicu, lze je změnit na veřejné nebo globální."
#. EAL5T
#: 03100700.xhp
@@ -26204,7 +26204,7 @@ msgctxt ""
"par_id241593693307830\n"
"help.text"
msgid "<literal>Global</literal>, <literal>Private</literal> and <literal>Public</literal> specifiers can only be used for module constants."
-msgstr ""
+msgstr "Specifikátory <literal>Global</literal>, <literal>Private</literal> a <literal>Public</literal> lze použít pouze pro konstanty modulu."
#. 7HRGK
#: 03100700.xhp
@@ -26213,7 +26213,7 @@ msgctxt ""
"bas_id911593692598060\n"
"help.text"
msgid "Const EARTH = \"♁\" ' module scope"
-msgstr ""
+msgstr "Const EARTH = \"♁\" ' rozsah platnosti modul"
#. pCVMW
#: 03100700.xhp
@@ -26222,7 +26222,7 @@ msgctxt ""
"bas_id441593692601125\n"
"help.text"
msgid "Private Const MOON = \"☾\" ' module scope"
-msgstr ""
+msgstr "Private Const MOON = \"☾\" ' rozsah platnosti modul"
#. xjhjq
#: 03100700.xhp
@@ -26231,7 +26231,7 @@ msgctxt ""
"bas_id161593692601597\n"
"help.text"
msgid "Public Const VENUS=\"♀\", MARS=\"♂\" ' general scope"
-msgstr ""
+msgstr "Public Const VENUS=\"♀\", MARS=\"♂\" ' obecný rozsah platnosti"
#. 6LzLX
#: 03100700.xhp
@@ -26240,7 +26240,7 @@ msgctxt ""
"bas_id581593692602046\n"
"help.text"
msgid "Global Const SUN = \"☉\", STAR = \"☆\" ' general scope"
-msgstr ""
+msgstr "Global Const SUN = \"☉\", STAR = \"☆\" ' obecný rozsah platnosti"
#. aFEH7
#: 03100700.xhp
@@ -26249,7 +26249,7 @@ msgctxt ""
"par_idm1341160752\n"
"help.text"
msgid "Const SUN = 3 * 1.456 / 56 ' SUN is local"
-msgstr ""
+msgstr "Const SUN = 3 * 1.456 / 56 ' SUN je lokální"
#. 5ZVn4
#: 03100700.xhp
@@ -26258,7 +26258,7 @@ msgctxt ""
"par_idm1341159520\n"
"help.text"
msgid "MsgBox SUN,, MOON ' SUN global constant is unchanged"
-msgstr ""
+msgstr "MsgBox SUN,, MOON ' globální konstanta SUN se nezměnila"
#. e9BxY
#: 03100700.xhp
@@ -26267,7 +26267,7 @@ msgctxt ""
"par_id111593694878677\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/enum.xhp\" name=\"Enum\">Enum</link> statement"
-msgstr ""
+msgstr "Příkaz <link href=\"text/sbasic/shared/enum.xhp\" name=\"Enum\">Enum</link>"
#. ZYFUV
#: 03100700.xhp
@@ -26276,7 +26276,7 @@ msgctxt ""
"par_id111953694878677\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Enum\">Type</link> statement"
-msgstr ""
+msgstr "Příkaz <link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type\">Type</link>"
#. FmimE
#: 03100900.xhp
@@ -26627,7 +26627,7 @@ msgctxt ""
"par_id971587473488701\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/Defxxx_statements.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">DefType statements diagram</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/Defxxx_statements.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Diagram příkazů DefType</alt></image>"
#. NFRzL
#: 03101100.xhp
@@ -26636,7 +26636,7 @@ msgctxt ""
"par_id3147336\n"
"help.text"
msgid "<emph>char:</emph> Letter prefix that specifies default data type for variables."
-msgstr ""
+msgstr "<emph>char:</emph> Písmeno určující výchozí datový typ proměnných."
#. CBqSz
#: 03101100.xhp
@@ -26645,7 +26645,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "<emph>char-char:</emph> Letter range prefixes that specify default data type for variables."
-msgstr ""
+msgstr "<emph>char-char:</emph> Rozsah písmen určující výchozí datový typ proměnných."
#. 9vqSg
#: 03101100.xhp
@@ -26654,7 +26654,7 @@ msgctxt ""
"par_id3156152\n"
"help.text"
msgid "' Prefix definitions for variable types:"
-msgstr ""
+msgstr "' definice písmen pro typy proměnných:"
#. QC5gr
#: 03101100.xhp
@@ -26663,7 +26663,7 @@ msgctxt ""
"par_id3152481\n"
"help.text"
msgid "Print TypeName(Boole), VarType(Babbage), bitcoin ' Displays: Boolean 11 False"
-msgstr ""
+msgstr "Print TypeName(Boole), VarType(Babbage), bitcoin ' Zobrazí: Boolean 11 False"
#. i5aFp
#: 03101100.xhp
@@ -26672,7 +26672,7 @@ msgctxt ""
"par_id3151381\n"
"help.text"
msgid "bOK=True ' bOK is an implicit boolean variable"
-msgstr ""
+msgstr "bOK=True ' bOK je implicitně booleovská proměnná"
#. zabpF
#: 03101110.xhp
@@ -26717,7 +26717,7 @@ msgctxt ""
"par_idN105D8\n"
"help.text"
msgid "Print liquid, Typename(coinbit), VarType(money) ' Result is: 0.0000 Currency 6"
-msgstr ""
+msgstr "Print liquid, Typename(coinbit), VarType(money) ' Výsledkem je: 0.0000 Currency 6"
#. uA7E4
#: 03101110.xhp
@@ -26726,7 +26726,7 @@ msgctxt ""
"par_idN105D9\n"
"help.text"
msgid "cCur=Currency ' cCur is an implicit currency variable."
-msgstr "cCur=Currency ' cCur je výchozí proměnná měny."
+msgstr "cCur=Currency ' cCur je implicitně proměnná měny."
#. QvNCR
#: 03101120.xhp
@@ -26816,7 +26816,7 @@ msgctxt ""
"par_idN105D3\n"
"help.text"
msgid "wSng=Single ' wSng is an implicit single variable"
-msgstr ""
+msgstr "wSng=Single ' wSng je implicitně typu Single"
#. B2kjC
#: 03101130.xhp
@@ -26825,7 +26825,7 @@ msgctxt ""
"par_idN105D4\n"
"help.text"
msgid "Print afloat, Typename(Word), VarType(anyNum) ' Result is : 0 single 4"
-msgstr ""
+msgstr "Print afloat, Typename(Word), VarType(anyNum) ' Výsldekem je: 0 single 4"
#. zfvWo
#: 03101140.xhp
@@ -26879,7 +26879,7 @@ msgctxt ""
"par_idN105D4\n"
"help.text"
msgid "Print VarType(slice), strng, TypeName(sheet) ' Result is: 8 \"\" String"
-msgstr ""
+msgstr "Print VarType(slice), strng, TypeName(sheet) ' Výsledkem je: 8 \"\" String"
#. E5nXi
#: 03101300.xhp
@@ -26933,7 +26933,7 @@ msgctxt ""
"par_id3153562\n"
"help.text"
msgid "Print VarType(tea), train, TypeName(timedate), IsDate(tick) ' Displays: 7 00:00:00 Date True"
-msgstr ""
+msgstr "Print VarType(tea), train, TypeName(timedate), IsDate(tick) ' Zobrazí: 7 00:00:00 Date True"
#. c8vDs
#: 03101400.xhp
@@ -26978,7 +26978,7 @@ msgctxt ""
"par_id3154244\n"
"help.text"
msgid "fValue=1.23e43 ' fValue is an implicit double variable type"
-msgstr ""
+msgstr "fValue=1.23e43 ' fValue je implicitně proměnná typu Double"
#. DcRHT
#: 03101400.xhp
@@ -26987,7 +26987,7 @@ msgctxt ""
"par_id3153144\n"
"help.text"
msgid "Print Typename(float), VarType(fire), factory ' Result is: Double 5 0"
-msgstr ""
+msgstr "Print Typename(float), VarType(fire), factory ' Výsledkem je: Double 5 0"
#. mcUhD
#: 03101500.xhp
@@ -27032,7 +27032,7 @@ msgctxt ""
"par_id3164728\n"
"help.text"
msgid "iCount=200 ' iCount is an implicit integer variable"
-msgstr ""
+msgstr "iCount=200 ' iCount je implicitně proměnná typu Integer"
#. kXjfq
#: 03101500.xhp
@@ -27041,7 +27041,7 @@ msgctxt ""
"par_id3153728\n"
"help.text"
msgid "Print kilos, Typename(number), VarType(Java) ' Result is: 0 Integer 2"
-msgstr ""
+msgstr "Print kilos, Typename(number), VarType(Java) ' Výsledkem je: 0 Integer 2"
#. kK2Aw
#: 03101600.xhp
@@ -27086,7 +27086,7 @@ msgctxt ""
"par_id3145273\n"
"help.text"
msgid "xCount=123456789 ' xCount is an implicit long integer variable"
-msgstr ""
+msgstr "xCount=123456789 ' xCount je implicitně proměnná typu Long Integer"
#. Pg49N
#: 03101600.xhp
@@ -27095,7 +27095,7 @@ msgctxt ""
"par_id3255273\n"
"help.text"
msgid "Print VarType(Yes), zinc, Typename(Max) ' Result is: 3 0 Long"
-msgstr ""
+msgstr "Print VarType(Yes), zinc, Typename(Max) ' Výsledkem je: 3 0 Long"
#. k5A5k
#: 03101700.xhp
@@ -27140,7 +27140,7 @@ msgctxt ""
"par_id3255273\n"
"help.text"
msgid "Print Typename(properties), VarType(ordinal), IsNull(unique), IsObject(org)' Result is: Object 9 True False"
-msgstr ""
+msgstr "Print Typename(properties), VarType(ordinal), IsNull(unique), IsObject(org)' Výsledkem je: Object 9 True False"
#. oaF9W
#: 03102000.xhp
@@ -27194,7 +27194,7 @@ msgctxt ""
"par_id3146121\n"
"help.text"
msgid "values=\"Hello world\""
-msgstr ""
+msgstr "values=\"Hello world\""
#. BoCFz
#: 03102000.xhp
@@ -27203,7 +27203,7 @@ msgctxt ""
"par_id3147221\n"
"help.text"
msgid "Print Typename(glob), VarType(values), IsEmpty(vOffer) ' Displays: Empty 8 True"
-msgstr ""
+msgstr "Print Typename(glob), VarType(values), IsEmpty(vOffer) ' Zobrazí: Empty 8 True"
#. 2jpst
#: 03102100.xhp
@@ -31640,7 +31640,7 @@ msgctxt ""
"par_id3143228\n"
"help.text"
msgid "<emph>n:</emph> Numeric expression that defines the number of spaces in the string. The maximum allowed value of <emph>n</emph> is 2,147,483,648."
-msgstr ""
+msgstr "<emph>n:</emph> Číselný výraz určující počet mezer v řetězci. Maximální povolená hodnota je 2 147 483 648."
#. xfAcE
#: 03120201.xhp
@@ -31712,7 +31712,7 @@ msgctxt ""
"par_id3154347\n"
"help.text"
msgid "<emph>n:</emph> Numeric expression that indicates the number of characters to return in the string. The maximum allowed value of n is 2,147,483,648."
-msgstr ""
+msgstr "<emph>n:</emph> Číselný výraz určující počet znaků ve vráceném řetězci. Maximální povolená hodnota je 2 147 483 648."
#. uARjD
#: 03120202.xhp
@@ -32288,7 +32288,7 @@ msgctxt ""
"par_id3149456\n"
"help.text"
msgid "<emph>n:</emph> Numeric expression that specifies the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 2,147,483,648."
-msgstr ""
+msgstr "<emph>n:</emph> Číselný výraz určující počet znaků, které chcete vrátit. Pokud <emph>n</emph> = 0, vrátí se prázdný řetězec. Maximální povolená hodnota je 2 147 483 648."
#. FPXvk
#: 03120303.xhp
@@ -32567,7 +32567,7 @@ msgctxt ""
"par_id3150359\n"
"help.text"
msgid "<emph>Start: </emph>Numeric expression that indicates the character position within the string where the string portion that you want to replace or to return begins. The minimum allowed value is 1. The maximum allowed value is 2,147,483,648."
-msgstr ""
+msgstr "<emph>Začátek:</emph> Číselný výraz určující pozici znaku, kde začíná část řetězce, kterou chcete nahradit nebo vrátit. Minimální povolená hodnota je 1. Maximální povolená hodnota je 2 147 483 648."
#. dtyT5
#: 03120306.xhp
@@ -32576,7 +32576,7 @@ msgctxt ""
"par_id3148451\n"
"help.text"
msgid "<emph>Length:</emph> Numeric expression that returns the number of characters that you want to replace or return. The maximum allowed value is 2,147,483,648."
-msgstr ""
+msgstr "<emph>Délka:</emph> Číselný výraz určující počet znaků, které chcete nahradit nebo vrátit. Maximální povolená hodnota je 2 147 483 648."
#. Cw9Ts
#: 03120306.xhp
@@ -32693,7 +32693,7 @@ msgctxt ""
"par_id3151211\n"
"help.text"
msgid "<emph>n:</emph> Numeric expression that defines the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 2,147,483,648."
-msgstr ""
+msgstr "<emph>n:</emph> Číselný výraz určující počet znaků, které chcete vrátit. Pokud <emph>n</emph> = 0, vrátí se prázdný řetězec. Maximální povolená hodnota je 2 147 483 648."
#. ezXrq
#: 03120307.xhp
@@ -33485,7 +33485,7 @@ msgctxt ""
"par_id3153126\n"
"help.text"
msgid "<emph>Start: </emph>A numeric expression that marks the position in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the first character of the string. The minimum allowed value is 1. The maximum allowed value is 2,147,483,648."
-msgstr ""
+msgstr "<emph>Začátek:</emph> Číselný výraz, který označuje pozici v řetězci, kde začíná hledání podřetězce. Pokud tento parametr vynecháte, hledání začne na prvním znaku řetězce. Minimální povolená hodnota je 1. Maximální povolená hodnota je 2 147 483 648."
#. SnP3c
#: 03120401.xhp
@@ -38732,7 +38732,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Compiler Options"
-msgstr ""
+msgstr "Možnosti kompilátoru"
#. 4BZ89
#: Compiler_options.xhp
@@ -38741,7 +38741,7 @@ msgctxt ""
"bm_id681592403821304\n"
"help.text"
msgid "<bookmark_value>Compiler Options</bookmark_value> <bookmark_value>Runtime conditions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>možnosti kompilátoru</bookmark_value><bookmark_value>podmínky běhu programů</bookmark_value>"
#. xtwLp
#: Compiler_options.xhp
@@ -38750,7 +38750,7 @@ msgctxt ""
"hd_id951592401835244\n"
"help.text"
msgid "<variable id=\"compileroptions\"><link href=\"text/sbasic/shared/Compiler_options.xhp\" name=\"Compiler Options\">Compiler Options, Runtime Conditions</link></variable>"
-msgstr ""
+msgstr "<variable id=\"compileroptions\"><link href=\"text/sbasic/shared/Compiler_options.xhp\" name=\"Možnosti kompilátoru\">Možnosti kompilátoru a podmínky běhu programů</link></variable>"
#. PEuT6
#: Compiler_options.xhp
@@ -38759,7 +38759,7 @@ msgctxt ""
"N0084\n"
"help.text"
msgid "Compiler options specified at the module level affect %PRODUCTNAME <emph>Basic compiler checks</emph> and error messages. Basic syntax as well as Basic set of instructions can be different according to the options that are in use. The less <literal>Option</literal>, the easiest and tolerant %PRODUCTNAME Basic language is. The more <literal>Option</literal>, the richer and controlled Basic language gets."
-msgstr ""
+msgstr "Možnosti kompilátoru, určované na úrovni modulu, mají vliv na <emph>kontroly</emph>, které provádí kompilátor jazyka %PRODUCTNAME, a na chybové zprávy. Syntaxe Basicu a použitá sada instrukcí se mohou odlišovat podle toho, které možnosti se používají. Čím méně možností <literal>Option</literal> použijete, tím bude jazyk %PRODUCTNAME Basic prostší a tolerantnější. Více možností <literal>Option</literal> znamená kontrolovanější jazyk Basic s více pravidly."
#. auPDi
#: Compiler_options.xhp
@@ -38768,7 +38768,7 @@ msgctxt ""
"par_id141592406254504\n"
"help.text"
msgid "Compiler options must be specified before the executable program code in a module."
-msgstr ""
+msgstr "Možnosti kompilátoru je nutné určit před spustitelným kódem programu v modulu."
#. U5B8L
#: Compiler_options.xhp
@@ -38777,7 +38777,7 @@ msgctxt ""
"par_id491585753339474\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/Option_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Option Statement diagram</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/Option_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Diagram příkazu Option</alt></image>"
#. AXgWX
#: Compiler_options.xhp
@@ -38786,7 +38786,7 @@ msgctxt ""
"hd_id331592403410631\n"
"help.text"
msgid "Option Private Module"
-msgstr ""
+msgstr "Option Private Module"
#. DeBTh
#: Compiler_options.xhp
@@ -38795,7 +38795,7 @@ msgctxt ""
"par_id161592405163812\n"
"help.text"
msgid "Specifies that the scope of the module is that of the Basic library it belongs to."
-msgstr ""
+msgstr "Určuje, že rozsah platnosti modulu bude stejný, jako má knihovna Basicu, ke které náleží."
#. 4fh7R
#: Compiler_options.xhp
@@ -38804,7 +38804,7 @@ msgctxt ""
"par_id141592408035462\n"
"help.text"
msgid "Options specified at the module level also affect %PRODUCTNAME <emph>Basic runtime conditions</emph>. The behaviour of %PRODUCTNAME Basic instructions can differ."
-msgstr ""
+msgstr "Možnosti určené na úrovni modulu mají vliv také na <emph>podmínky běhů programů v jazyce %PRODUCTNAME Basic</emph>. Chování instrukcí Basicu se proto může lišit."
#. cGCiF
#: Compiler_options.xhp
@@ -38813,7 +38813,7 @@ msgctxt ""
"par_id291592407073335\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/property.xhp\" name=\"Property statement\">Property statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/property.xhp\" name=\"Příkaz Property\">Příkaz Property</link>"
#. ZbXw2
#: ErrVBA.xhp
@@ -38903,7 +38903,7 @@ msgctxt ""
"N0017\n"
"help.text"
msgid "The VBA <literal>Err</literal> object has the following properties and methods:"
-msgstr ""
+msgstr "Objekt VBA <literal>Err</literal> má následující vlastnosti a metody:"
#. ivkYo
#: ErrVBA.xhp
@@ -38921,7 +38921,7 @@ msgctxt ""
"N0020\n"
"help.text"
msgid "The <emph>Description</emph> property gives the nature of the error. <emph>Description</emph> details the various reasons that may be the cause of the error. Ideally, it provides the multiple course of actions to help solve the issue and prevent its reoccurrence. The Basic alias is the <link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error function\">Error</link> function for %PRODUCTNAME predefined errors."
-msgstr ""
+msgstr "Vlastnost <emph>Description</emph> udává charakter chyby. Obsahuje podrobnosti o příčinách, které mohly chyby způsobit. V ideálním případě nabízí kroky, které problém vyřeší a zabrání jeho zopakování. V jazyce Basic je jejím aliasem pro předem definované chyby %PRODUCTNAME funkce <link href=\"text/sbasic/shared/03050300.xhp\" name=\"Funkce Error\">Error</link>."
#. jfSHu
#: ErrVBA.xhp
@@ -38930,7 +38930,7 @@ msgctxt ""
"N0022\n"
"help.text"
msgid "The error code associated with the error. <literal>Err</literal> object default property is <emph>Number</emph>. The %PRODUCTNAME Basic alias is the <link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err\">Err</link> function."
-msgstr ""
+msgstr "Výchozí vlastností objektu <literal>Err</literal> je <emph>Number</emph>. Jedná se o kód odpovídající chybě. V jazyce %PRODUCTNAME Basic je jejím aliasem funkce <link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err\">Err</link>."
#. NJEmn
#: ErrVBA.xhp
@@ -38957,7 +38957,7 @@ msgctxt ""
"N0027\n"
"help.text"
msgid "Resets description, <link href=\"text/sbasic/shared/03050100.xhp\" name=\"error line\">Erl</link>, number and source properties of current error. The %PRODUCTNAME Basic alias is the <link href=\"text/sbasic/shared/03050500.xhp\" name=\"Resume statement\">Resume</link> statement."
-msgstr ""
+msgstr "Vymaže u aktuální chyby vlastnosti Description, <link href=\"text/sbasic/shared/03050100.xhp\" name=\"řádek chyby\">Erl</link>, Number a Source. V jazyce %PRODUCTNAME Basic je jejím aliasem příkaz <link href=\"text/sbasic/shared/03050500.xhp\" name=\"příkaz Resume\">Resume</link>."
#. jnyJG
#: ErrVBA.xhp
@@ -38966,7 +38966,7 @@ msgctxt ""
"N0029\n"
"help.text"
msgid "Throws user-defined errors or predefined errors. The %PRODUCTNAME Basic alias is the <link href=\"text/sbasic/shared/03050200.xhp\" name=\"Error statement\">Error</link> statement."
-msgstr ""
+msgstr "Vyvolá uživatelem definovanou nebo předem definovanou chybu. V jazyce %PRODUCTNAME Basic je jejím aliasem příkaz <link href=\"text/sbasic/shared/03050200.xhp\" name=\"Příkaz Error\">Error</link>."
#. EyCJv
#: ErrVBA.xhp
@@ -38984,7 +38984,7 @@ msgctxt ""
"N0031\n"
"help.text"
msgid "<emph>Number</emph>: A user-defined or predefined error code to be raised."
-msgstr ""
+msgstr "<emph>Number</emph>: Uživatelem definovaný nebo předem definovaný kód chyby, která se má vyvolat."
#. DoFG8
#: ErrVBA.xhp
@@ -39002,7 +39002,7 @@ msgctxt ""
"N0033\n"
"help.text"
msgid "<emph>Source</emph>: The name of the routine raising the error. A name in the form of \"myLibrary.myModule.myProc\" is recommended."
-msgstr ""
+msgstr "<emph>Source</emph>: Název programu, v němž byla chyba vyvolána. Doporučuje se název ve tvaru \"mojeKnihovna.mujModul.mojeProcedura\"."
#. wFqtB
#: ErrVBA.xhp
@@ -39011,7 +39011,7 @@ msgctxt ""
"N0034\n"
"help.text"
msgid "<emph>Description</emph>: A description of the problem leading to stop the running process, accompanied with the various reasons that may cause it. A detailed list of the possible course of actions that may help solve the problem is recommended."
-msgstr ""
+msgstr "<emph>Description</emph>: Popis problému, který vedl k zastavení běžícího procesu, spolu s možnými příčinami. Doporučuje se připojit seznam kroků, které mohou problém vyřešit."
#. q9uAh
#: ErrVBA.xhp
@@ -39020,7 +39020,7 @@ msgctxt ""
"N0041\n"
"help.text"
msgid "Err.Raise 2020, Description:=\"This is an intended user-defined error …\""
-msgstr ""
+msgstr "Err.Raise 2020, Description:=\"Toto je záměrná uživatelem definovaná chyba…\""
#. vuP6g
#: ErrVBA.xhp
@@ -39245,7 +39245,7 @@ msgctxt ""
"par_id331586090532804\n"
"help.text"
msgid "<emph>label</emph>: Resets error information and resumes execution at the specified label of the current subroutine."
-msgstr ""
+msgstr "<emph>label</emph>: Vymaže informaci o chybě a spustí aktuální podprogram od určeného návěstí."
#. 7NaeS
#: Resume.xhp
@@ -39362,7 +39362,7 @@ msgctxt ""
"par_id461586091018138\n"
"help.text"
msgid "Using <literal>Resume</literal> without parameters to re-execute the faulty instruction can fit certain situations. However that may cause a never ending loop."
-msgstr ""
+msgstr "<literal>Resume</literal> bez parametrů použijte tehdy, chcete-li znovu spustit instrukci, která chybu způsobila. To však může způsobit nekonečnou smyčku."
#. t97uD
#: calc_functions.xhp
@@ -40010,7 +40010,7 @@ msgctxt ""
"par_id871592355721957\n"
"help.text"
msgid "IMSIN"
-msgstr ""
+msgstr "IMSIN"
#. LnpEu
#: calc_functions.xhp
@@ -40604,7 +40604,7 @@ msgctxt ""
"N0125\n"
"help.text"
msgid "Changing behavior of Basic <literal>Dir</literal> command. The directory flag (16) for the <literal>Dir</literal> command means that only directories are returned in %PRODUCTNAME Basic, while in VBA normal files and directories are returned."
-msgstr ""
+msgstr "Změna chování příkazu Basicu <literal>Dir</literal>. Příznak pro adresáře (16) u příkazu <literal>Dir</literal> znamená, že se v jazyku %PRODUCTNAME Basic vrátí pouze adresáře, kdežto v režimu VBA se vrátí adresáře i běžné soubory."
#. piCTC
#: compatibilitymode.xhp
@@ -40847,7 +40847,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Syntax Diagrams"
-msgstr ""
+msgstr "Diagramy syntaxe"
#. CkdjC
#: conventions.xhp
@@ -40856,7 +40856,7 @@ msgctxt ""
"bm_id861593777289558\n"
"help.text"
msgid "<bookmark_value>Syntax diagrams; How to read</bookmark_value> <bookmark_value>Statements syntax;How to read</bookmark_value> <bookmark_value>Typographical conventions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>diagramy syntaxe;jak číst</bookmark_value><bookmark_value>syntaxe příkazů;jak číst</bookmark_value><bookmark_value>typografické konvence</bookmark_value>"
#. VTTA3
#: conventions.xhp
@@ -40865,7 +40865,7 @@ msgctxt ""
"hd_id221543446540070\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/conventions.xhp\" name=\"conventions\">How to Read Syntax Diagrams and Statements</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/conventions.xhp\" name=\"konvence\">Jak číst diagramy syntaxe a příkazů</link>"
#. jJGWn
#: conventions.xhp
@@ -40874,7 +40874,7 @@ msgctxt ""
"par_id601593699108443\n"
"help.text"
msgid "%PRODUCTNAME Basic statements use syntax diagrams and textual conventions that follow these typographical rules:"
-msgstr ""
+msgstr "Diagramy syntaxe a konvence zápisu příkazů jazyka %PRODUCTNAME Basic se řídí těmito typografickými pravidly:"
#. ZnMxE
#: conventions.xhp
@@ -40883,7 +40883,7 @@ msgctxt ""
"par_id158193699546735\n"
"help.text"
msgid "%PRODUCTNAME Basic keywords or functions use proper casing: Call, DimArray, InputBox, Property."
-msgstr ""
+msgstr "Klíčová slova a funkce jazyka %PRODUCTNAME Basic používají velká písmena: Call, DimArray, InputBox, Property."
#. ny9xr
#: conventions.xhp
@@ -40892,7 +40892,7 @@ msgctxt ""
"par_id711593699548486\n"
"help.text"
msgid "Lowercase characters indicate information to supply: end, expression, start, variable."
-msgstr ""
+msgstr "Malá písmena značí dodatečnou informaci: konec, výraz, začátek, proměnná."
#. 6cDAC
#: conventions.xhp
@@ -40901,7 +40901,7 @@ msgctxt ""
"par_id881593760345504\n"
"help.text"
msgid "The syntax of a %PRODUCTNAME Basic one line statement is illustrated herewith:"
-msgstr ""
+msgstr "Syntaxe jednořádkového příkazu v %PRODUCTNAME Basic může být následující:"
#. 8Co5j
#: conventions.xhp
@@ -40910,7 +40910,7 @@ msgctxt ""
"hd_id871593700670279\n"
"help.text"
msgid "Diagram example"
-msgstr ""
+msgstr "Příklad diagramu"
#. 5AfpR
#: conventions.xhp
@@ -40919,7 +40919,7 @@ msgctxt ""
"par_id181593699574635\n"
"help.text"
msgid "Basic statement diagrams start and end with double vertical bars,"
-msgstr ""
+msgstr "Diagram příkazu Basicu začíná a končí dvěma svislými čarami."
#. oNAUQ
#: conventions.xhp
@@ -40928,7 +40928,7 @@ msgctxt ""
"par_id711596399548486\n"
"help.text"
msgid "Loops indicate a possible repetition, an optional separator may be present,"
-msgstr ""
+msgstr "Smyčky značí možné opakování, mohou zahrnovat volitelný oddělovač."
#. qBArU
#: conventions.xhp
@@ -40937,7 +40937,7 @@ msgctxt ""
"par_id541593706654897\n"
"help.text"
msgid "Rectangles denote subsequent diagram fragments,"
-msgstr ""
+msgstr "Obdélníky značí po sobě následující fragmenty diagramu."
#. MgRRZ
#: conventions.xhp
@@ -40946,7 +40946,7 @@ msgctxt ""
"par_id251593706717957\n"
"help.text"
msgid "Diagram fragments extremities exhibit single vertical bars."
-msgstr ""
+msgstr "Okraje fragmentů diagramu jsou vyznačeny jednoduchými svislými čarami."
#. 2ERcw
#: conventions.xhp
@@ -40955,7 +40955,7 @@ msgctxt ""
"par_id831588865616326\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/a_statement.svg\" id=\"img_id651588865616326\"><alt id=\"alt_id281588865616326\">syntax of a statement</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/a_statement.svg\" id=\"img_id651588865616326\"><alt id=\"alt_id281588865616326\">Syntaxe příkazu</alt></image>"
#. QDyRr
#: conventions.xhp
@@ -40964,7 +40964,7 @@ msgctxt ""
"par_id411579301639711\n"
"help.text"
msgid "A set of %PRODUCTNAME Basic statements - with optional labels - is using a colon <literal>:</literal> sign to separate them, it can be terminated with an optional comment. <literal>REM</literal> or an apostrophe sign introduce a comment."
-msgstr ""
+msgstr "Sada příkazů jazyka %PRODUCTNAME Basic - s volitelným návěstím - používá k jejich oddělení znak <literal>:</literal> a lze ji zakončit volitelným komentářem, který je uvozen znakem apostrofu nebo pomocí <literal>REM</literal>."
#. fR7p7
#: conventions.xhp
@@ -40973,7 +40973,7 @@ msgctxt ""
"par_id931593707147102\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/comment_fragment.svg\" id=\"img_id191593707147102\"><alt id=\"alt_id111593707147102\">diagram fragment</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/comment_fragment.svg\" id=\"img_id191593707147102\"><alt id=\"alt_id111593707147102\">Diagram fragmentu</alt></image>"
#. tMPo2
#: conventions.xhp
@@ -40982,7 +40982,7 @@ msgctxt ""
"hd_id71593700691968\n"
"help.text"
msgid "Textual example"
-msgstr ""
+msgstr "Příklad zápisu"
#. vtggd
#: conventions.xhp
@@ -40991,7 +40991,7 @@ msgctxt ""
"par_id181593700546735\n"
"help.text"
msgid "<emph>[opt1|opt2|opt3]</emph> Items inside brackets are optional, alternatives are indicated with a vertical bar,"
-msgstr ""
+msgstr "<emph>[opt1|opt2|opt3]</emph> Položky v hranatých závorkách jsou volitelné, alternativy jsou odděleny svislou čarou."
#. ap6xE
#: conventions.xhp
@@ -41000,7 +41000,7 @@ msgctxt ""
"par_id181593699546735\n"
"help.text"
msgid "<emph>case[[sep]…]</emph> An ellipsis indicates a possible repetition, an optional separator may be specified,"
-msgstr ""
+msgstr "<emph>case[[sep]…]</emph> Výpustka značí možné opakování, volitelně lze určit oddělovač."
#. FEGF3
#: conventions.xhp
@@ -41009,7 +41009,7 @@ msgctxt ""
"par_id712593699548486\n"
"help.text"
msgid "<emph>{choice1|choice2}</emph> Items inside curly braces are compulsory, alternatives are indicated with a vertical bar."
-msgstr ""
+msgstr "<emph>{choice1|choice2}</emph> Položky ve složených závorkách jsou povinné, alternativy jsou odděleny svislou čarou."
#. VFKcU
#: conventions.xhp
@@ -41018,7 +41018,7 @@ msgctxt ""
"par_id411593701639711\n"
"help.text"
msgid "A set of %PRODUCTNAME Basic statements - with optional labels - is using a colon <literal>:</literal> sign to separate them, it can be terminated with an optional comment. <literal>REM</literal> or an apostrophe sign introduce a comment."
-msgstr ""
+msgstr "Sada příkazů jazyka %PRODUCTNAME Basic - s volitelným návěstím - používá k jejich oddělení znak <literal>:</literal> a lze ji zakončit volitelným komentářem, který je uvozen znakem apostrofu nebo pomocí <literal>REM</literal>."
#. RUhNn
#: conventions.xhp
@@ -41027,7 +41027,7 @@ msgctxt ""
"N0018\n"
"help.text"
msgid "GoTo there ' skip first statement"
-msgstr ""
+msgstr "GoTo there ' přeskočí první příkaz"
#. oCE77
#: conventions.xhp
@@ -41036,7 +41036,7 @@ msgctxt ""
"N0019\n"
"help.text"
msgid "here: Print 1, : there: Print 2 REM explanatory text here"
-msgstr ""
+msgstr "here: Print 1, : there: Print 2 REM místo pro vysvětlující text"
#. 7pf8S
#: enum.xhp
@@ -41198,7 +41198,7 @@ msgctxt ""
"hd_id431587045941514\n"
"help.text"
msgid "<variable id=\"argumenth2\"><link href=\"text/sbasic/shared/fragments.xhp\" name=\"arguments in Function, Sub and Property statements\"/>argument fragment</variable>"
-msgstr ""
+msgstr "<variable id=\"argumenth2\"><link href=\"text/sbasic/shared/fragments.xhp\" name=\"Argumenty v příkazech Function, Sub a Property\"/>Fragment argumentu</variable>"
#. pfHq8
#: fragments.xhp
@@ -41360,7 +41360,7 @@ msgctxt ""
"hd_id231587046013458\n"
"help.text"
msgid "<variable id=\"typenameh4\">typename fragment</variable>"
-msgstr ""
+msgstr "<variable id=\"typenameh4\">Fragment názvu typu</variable>"
#. AqfYj
#: fragments.xhp
@@ -41378,7 +41378,7 @@ msgctxt ""
"hd_id231587046013459\n"
"help.text"
msgid "<variable id=\"charh4\">char fragment</variable>"
-msgstr ""
+msgstr "<variable id=\"charh4\">Fragment znaku</variable>"
#. JFwPg
#: fragments.xhp
@@ -41855,7 +41855,7 @@ msgctxt ""
"N0183\n"
"help.text"
msgid "A property, also called field or attribute, characterizes a given object or piece of information. Properties can be used to control access to data. It is common use to include instructions at setting or reading time of properties. Code can vary from simple assignment to complex context dependent routines. Using <emph>Get</emph>, <emph>Let</emph> or <emph>Set</emph> accessors enforces properties' consistency when necessary."
-msgstr ""
+msgstr "Vlastnost, označovaná také jako atribut, charakterizuje daný objekt nebo informaci. Vlastnosti lze použít k řízení přístupu k datům. Obvykle se zadávají instrukce, které se mají provést při nastavování nebo čtení vlastnosti. Může se jednat o jednoduché přiřazení i o komplexní podprogramy závisející na kontextu. Přístupové funkce <emph>Get</emph>, <emph>Let</emph> a <emph>Set</emph> v případě potřeby zajišťují, aby vlastnost zůstala konzistentní."
#. hD9fA
#: property.xhp
diff --git a/source/cs/helpcontent2/source/text/scalc/00.po b/source/cs/helpcontent2/source/text/scalc/00.po
index 82bc5c77cd3..28eb6b956f6 100644
--- a/source/cs/helpcontent2/source/text/scalc/00.po
+++ b/source/cs/helpcontent2/source/text/scalc/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-10-28 19:35+0000\n"
+"PO-Revision-Date: 2020-11-18 18:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1557549259.000000\n"
#. E9tti
@@ -509,7 +509,7 @@ msgctxt ""
"par_id3159173\n"
"help.text"
msgid "<variable id=\"logical\"><emph>Insert - Function</emph> - Category <emph>Logical</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"logical\"><emph>Vložit - Funkce</emph> - Kategorie <emph>Logické</emph></variable>"
#. FqeXh
#: 00000404.xhp
diff --git a/source/cs/helpcontent2/source/text/scalc/01.po b/source/cs/helpcontent2/source/text/scalc/01.po
index 8620c84cbb3..98fd83414f5 100644
--- a/source/cs/helpcontent2/source/text/scalc/01.po
+++ b/source/cs/helpcontent2/source/text/scalc/01.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-05 10:35+0000\n"
-"Last-Translator: raal <raal@post.cz>\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
+"PO-Revision-Date: 2020-11-21 15:36+0000\n"
+"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/cs/>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1559927186.000000\n"
@@ -9996,7 +9996,7 @@ msgctxt ""
"par_id3149312\n"
"help.text"
msgid "<variable id=\"logicaltext\">This category contains the <emph>Logical</emph> functions.</variable>"
-msgstr ""
+msgstr "<variable id=\"logicaltext\">Tato kategorie obsahuje <emph>Logické</emph> funkce.</variable>"
#. ADKTB
#: 04060105.xhp
@@ -56474,6 +56474,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr "Použití regulárních výrazů a vnořených funkcí"
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr "Aby tyto příklady fungovaly tak, jak jsou popsány, je nezbytné zaškrtnout <emph>Povolit regulární výrazy ve vzorcích</emph> v <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Předvolby</menuitem></caseinline><defaultinline><menuitem>Nástroje - Možnosti</menuitem></defaultinline></switchinline><menuitem>- $[officename] Calc - Výpočty</menuitem>."
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/sdraw.po b/source/cs/helpcontent2/source/text/sdraw.po
index a178f507521..b35b243dc60 100644
--- a/source/cs/helpcontent2/source/text/sdraw.po
+++ b/source/cs/helpcontent2/source/text/sdraw.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-07-02 14:07+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-21 15:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1561116950.000000\n"
#. dHbww
@@ -113,7 +113,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "View (menu in Draw)"
-msgstr ""
+msgstr "Zobrazit (nabídka v Draw)"
#. hWYJ3
#: main0103.xhp
@@ -158,7 +158,7 @@ msgctxt ""
"par_idN105B2\n"
"help.text"
msgid "Master"
-msgstr ""
+msgstr "Předloha"
#. eSnQZ
#: main0103.xhp
@@ -167,7 +167,61 @@ msgctxt ""
"par_idN105B6\n"
"help.text"
msgid "Switch to the master view."
-msgstr ""
+msgstr "Přepne na zobrazení předlohy."
+
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"Uživatelské rozhraní\">Uživatelské rozhraní</link>"
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr "Otevře dialogové okno s výběrem rozvržení uživatelského rozhraní."
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr "Komentáře"
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr "Zobrazí nebo skryje na stránce komentáře."
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr "Posun"
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr "Slouží k posunu stránky v okně. Je-li zapnut, změní se vzhled ukazatele myši. Klepněte na stránku a přetáhněte ji na požadované místo."
#. 7AgpR
#: main0103.xhp
@@ -509,7 +563,7 @@ msgctxt ""
"hd_id3146313\n"
"help.text"
msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Přichytit k vodítkům\">Přichytit k vodítkům</link>"
#. eUTG8
#: main0213.xhp
diff --git a/source/cs/helpcontent2/source/text/shared/00.po b/source/cs/helpcontent2/source/text/shared/00.po
index 6c4a517fb8b..1de29117992 100644
--- a/source/cs/helpcontent2/source/text/shared/00.po
+++ b/source/cs/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-07-02 14:07+0000\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"PO-Revision-Date: 2020-11-18 18:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/cs/>\n"
"Language: cs\n"
@@ -680,7 +680,7 @@ msgctxt ""
"hd_id321597440555403\n"
"help.text"
msgid "Apply"
-msgstr ""
+msgstr "Použít"
#. yJtrx
#: 00000001.xhp
@@ -689,7 +689,7 @@ msgctxt ""
"par_id51597440622057\n"
"help.text"
msgid "Applies the modified or selected values without closing the Options dialog."
-msgstr ""
+msgstr "Použije změněné nebo vybrané hodnoty bez zavření dialogového okna Možnosti."
#. BRStA
#: 00000001.xhp
@@ -734,7 +734,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, email, 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 "Pokud jste nový uživatel sítě Internet, narazíte na neznámé termíny: prohlížeč, záložka, e-mail, domovská stránka, vyhledávací stroj a mnoho dalších. Abychom vám usnadnili první kroky, najdete zde vysvětlení některých důležitých pojmů."
#. 3Sv9k
#: 00000002.xhp
@@ -1256,7 +1256,7 @@ msgctxt ""
"par_id3152931\n"
"help.text"
msgid "The Uniform Resource Locator (URL) displays the address of a document or a server in the Internet. The general structure of a URL varies according to type and is generally in the form Service://Hostname:Port/Path/Page#Mark although not all elements are always required. An URL can be a FTP address, a WWW (HTTP) address, a file address or an email address."
-msgstr ""
+msgstr "Adresa URL (Uniform Resource Locator) zobrazuje adresu dokumentu nebo serveru v síti Internet. Obecná struktura adresy URL se liší podle typu a obvykle má podobu služba://hostitel:port/cesta/stránka#značka, i když ne všechny prvky jsou vždy povinné. Adresa URL může být adresou serveru FTP, adresou sítě WWW (HTTP), adresou souboru nebo e-mailovou adresou."
#. qAvon
#: 00000003.xhp
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "Příklad takové databáze představuje databáze nákupu, která obsahuje tabulky s informacemi o zákaznících, nákupu a fakturách. Tabulka faktur neobsahuje žádná data o zákaznících či nákupu, ale pouze odkazy (pomocí relační vazby, relace) na pole příslušné tabulky (například pole ID zákazníka z tabulky zákazníků)."
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>registr; definice</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "Registr"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/cs/helpcontent2/source/text/shared/01.po b/source/cs/helpcontent2/source/text/shared/01.po
index 7ab04af9263..1fcbb0cbee3 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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-02 14:56+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-18 18:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/cs/>\n"
"Language: cs\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr "U některých typů dokumentu můžete zvolit tisk příručky."
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr "Další možnosti"
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr "<ahelp hid=\".\">V okně <emph>Další možnosti</emph> můžete nastavit pro aktuální tiskovou úlohu některé další možnosti.</ahelp>"
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,14 +9376,14 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "Přepíná mezi hlavním a normálním pohledem."
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Ikona</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgstr ""
#. 3Lq2G
#: 02110000.xhp
@@ -9430,14 +9412,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_EDIT\">Upraví obsah komponenty označené v <emph>Navigátoru</emph>. Je-li vybrán soubor, bude otevřen pro úpravy. Je-li vybrán rejstřík, otevře se dialogové okno <emph>Rejstřík</emph>. </ahelp>"
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Ikona</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgstr ""
#. nRB3E
#: 02110000.xhp
@@ -9466,14 +9448,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Klepněte a vyberte obsah, který chcete aktualizovat.</ahelp>"
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Ikona</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgstr ""
#. F4J5u
#: 02110000.xhp
@@ -9601,14 +9583,14 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "Soubory do hlavního dokumentu je možné vkládat přetažením souboru do hlavního pohledu Navigátoru."
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Ikona</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgstr ""
#. ijR7M
#: 02110000.xhp
@@ -9709,14 +9691,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Uloží do hlavního dokumentu také obsah připojených souborů. To zaručuje, že je obsah k dispozici, i když nejsou připojené soubory přístupné.</ahelp>"
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Ikona</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgstr ""
#. ADEyJ
#: 02110000.xhp
@@ -9745,14 +9727,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Posune výběr v Navigátoru o jednu pozici výše.</ahelp> Položky je také je možné přesouvat přetažením v seznamu. Pokud přesunete textovou část na jinou textovou část, obě části se spojí."
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Ikona</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgstr ""
#. GqEUL
#: 02110000.xhp
@@ -9781,14 +9763,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Posune výběr v Navigátoru o jednu pozici níže.</ahelp> Položky je také možné přesouvat přetažením v seznamu. Pokud přesunete textovou část na jinou textovou část, obě části se spojí."
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
-msgstr "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Ikona</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgstr ""
#. DLEGF
#: 02110000.xhp
@@ -26996,7 +26978,7 @@ msgctxt ""
"hd_id3148585\n"
"help.text"
msgid "Bitmap"
-msgstr ""
+msgstr "Rastr"
#. 8ZuCa
#: 05210500.xhp
@@ -27023,7 +27005,7 @@ msgctxt ""
"hd_id71592866308524\n"
"help.text"
msgid "Add/Import"
-msgstr ""
+msgstr "Přidat/Importovat"
#. SGKZW
#: 05210500.xhp
diff --git a/source/cs/helpcontent2/source/text/shared/02.po b/source/cs/helpcontent2/source/text/shared/02.po
index 07ab0d19a96..94d3e5416b8 100644
--- a/source/cs/helpcontent2/source/text/shared/02.po
+++ b/source/cs/helpcontent2/source/text/shared/02.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-10 20:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-21 15:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1561117732.000000\n"
#. Edm6o
@@ -788,7 +788,7 @@ msgctxt ""
"par_id3148645\n"
"help.text"
msgid "Right-click the control and choose <menuitem>Control Properties</menuitem>. A dialog opens where you can define the properties of the control."
-msgstr ""
+msgstr "Klepněte pravým tlačítkem na ovládací prvek a zvolte <menuitem>Vlastnosti ovládacího prvku</menuitem>. Otevře se dialogové okno, kde je možné upravit vlastnosti ovládacího prvku."
#. WTQie
#: 01170000.xhp
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr "<bookmark_value>odstavce;zmenšení odsazení</bookmark_value><bookmark_value>zmenšení odsazení odstavce</bookmark_value>"
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Zmenšit odsazení\">Zmenšit odsazení</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr "<variable id=\"decreaseindent_h1\"><link href=\"text/shared/02/02130000.xhp\" name=\"Zmenšit odsazení\">Zmenšit odsazení</link></variable>"
#. DCXbA
#: 02130000.xhp
@@ -11059,14 +11059,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Pokud jste předtím zvětšili odsazení pro několik vybraných odstavců najednou, tento příkaz může zmenšit odsazení všech vybraných odstavců.</caseinline><caseinline select=\"CALC\">Odsazením obsahu buňky se míní aktuální hodnota pod <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cell - Alignment\"><emph>Formát - Buňky - Zarovnání</emph></link>.</caseinline></switchinline>"
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Ikonka</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Ikona</alt></image>"
#. 9iqpg
#: 02130000.xhp
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr "<bookmark_value>odstavce;zvětšení odsazení</bookmark_value><bookmark_value>zvětšení odsazení odstavce</bookmark_value>"
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Zvětšit odsazení\">Zvětšit odsazení</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Zvětšit odsazení\">Zvětšit odsazení</link></variable>"
#. FBggx
#: 02140000.xhp
@@ -11131,14 +11131,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Pokud je vybráno několik odstavců, zvětší se odsazení všech vybraných odstavců najednou.</caseinline><caseinline select=\"CALC\">Odsazením obsahu buňky se míní aktuální hodnota na kartě <link href=\"text/shared/01/05340300.xhp\" name=\"Formát - Buňky - Zarovnání\"><emph>Formát - Buňky - Zarovnání</emph></link>.</caseinline></switchinline>"
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Ikonka</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Ikona</alt></image>"
#. bAyat
#: 02140000.xhp
@@ -16673,7 +16673,7 @@ msgctxt ""
"bm_id571605452705033\n"
"help.text"
msgid "<bookmark_value>cell widths; using ruler</bookmark_value><bookmark_value>cell widths; using mouse</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>šířka buněk;pomocí pravítka</bookmark_value><bookmark_value>šířka buněk;pomocí myši</bookmark_value>"
#. EFuiR
#: 13020000.xhp
@@ -16727,7 +16727,7 @@ msgctxt ""
"par_id3156136\n"
"help.text"
msgid "<image id=\"img_id3153750\" src=\"media/helpimg/linleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153750\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153750\" src=\"media/helpimg/linleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153750\">Ikona</alt></image>"
#. JJcBs
#: 13020000.xhp
@@ -16745,7 +16745,7 @@ msgctxt ""
"par_id3150774\n"
"help.text"
msgid "<image id=\"img_id3145071\" src=\"media/helpimg/linright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145071\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145071\" src=\"media/helpimg/linright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145071\">Ikona</alt></image>"
#. Wr4CA
#: 13020000.xhp
diff --git a/source/cs/helpcontent2/source/text/shared/guide.po b/source/cs/helpcontent2/source/text/shared/guide.po
index 6729164e1c8..477dfb79583 100644
--- a/source/cs/helpcontent2/source/text/shared/guide.po
+++ b/source/cs/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-13 12:35+0000\n"
+"PO-Revision-Date: 2020-11-18 18:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1547113478.000000\n"
#. iharT
@@ -11921,7 +11921,7 @@ msgctxt ""
"par_id951604586347866\n"
"help.text"
msgid "<image src=\"cmd/32/pushbutton.png\" id=\"img_id741604586347866\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id641604586347866\">Push Button Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/32/pushbutton.png\" id=\"img_id741604586347866\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id641604586347866\">Ikona Tlačítko</alt></image>"
#. 4GWCF
#: formfields.xhp
@@ -11957,7 +11957,7 @@ msgctxt ""
"par_idN107B2\n"
"help.text"
msgid "Right-click the button and choose <menuitem>Control Properties</menuitem>."
-msgstr ""
+msgstr "Klepněte pravým tlačítkem a zvolte <menuitem>Vlastnosti ovládacího prvku</menuitem>."
#. Atf22
#: formfields.xhp
@@ -12011,7 +12011,7 @@ msgctxt ""
"par_idN10828\n"
"help.text"
msgid "Right-click the button and choose <menuitem>Form Properties</menuitem>."
-msgstr ""
+msgstr "Klepněte pravým tlačítkem a zvolte <menuitem>Vlastnosti formuláře</menuitem>."
#. kGATC
#: formfields.xhp
diff --git a/source/cs/helpcontent2/source/text/shared/optionen.po b/source/cs/helpcontent2/source/text/shared/optionen.po
index 5fc256bfbb8..38eee097cea 100644
--- a/source/cs/helpcontent2/source/text/shared/optionen.po
+++ b/source/cs/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-01 10:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-21 15:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1549360506.000000\n"
@@ -9150,7 +9150,7 @@ msgctxt ""
"par_id3151114\n"
"help.text"
msgid "<ahelp hid=\".\">Click a color. Click the <emph>None</emph> button to remove a background color.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klepněte na barvu. Klepnutím na tlačítko <emph>Žádná</emph> barvu pozadí odstraníte.</ahelp>"
#. YvDPU
#: 01060000.xhp
@@ -11861,32 +11861,32 @@ msgctxt ""
msgid "Snap"
msgstr "Přichytit"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
+msgid "To snap guides"
msgstr "K vodítkům"
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
-msgstr "<variable id=\"anlinie\"><ahelp hid=\".\">Po uvolnění tlačítka myši se okraj přetahovaného objektu přichytí k nejbližší vodicí čáře.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
+msgstr "<variable id=\"anlinie\"><ahelp hid=\".\">Po uvolnění tlačítka myši se okraj přetahovaného objektu přichytí k nejbližšímu vodítku.</ahelp></variable>"
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "V prezentaci či kresbě můžete tuto funkci zapnout také pomocí ikony <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Přichytit k vodítkům\"><emph>Přichytit k vodítkům</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Přichytit k vodítkům\"><emph>Přichytit k vodítkům</emph></link></caseinline><defaultinline><emph>Zachytit na vodící čáry</emph></defaultinline></switchinline>, která se nachází v liště <emph>Možnosti</emph> u prezentace nebo kresby."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr "V prezentaci či kresbě můžete tuto funkci zapnout také pomocí ikony <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Přichytit k vodítkům\"><emph>Přichytit k vodítkům</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Přichytit k vodítkům\"><emph>Přichytit k vodítkům</emph></link></caseinline><defaultinline><emph>Přichytit k vodítkům</emph></defaultinline></switchinline>, která se nachází na liště <emph>Možnosti</emph> u prezentace nebo kresby."
#. eUCCJ
#: 01070300.xhp
diff --git a/source/cs/helpcontent2/source/text/simpress/02.po b/source/cs/helpcontent2/source/text/simpress/02.po
index c574cba52db..db40b3e0a32 100644
--- a/source/cs/helpcontent2/source/text/simpress/02.po
+++ b/source/cs/helpcontent2/source/text/simpress/02.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
-"PO-Revision-Date: 2020-01-13 22:05+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-21 15:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress02/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1561035032.000000\n"
#. AiACn
@@ -5695,41 +5695,41 @@ msgctxt ""
msgid "Exit all groups"
msgstr "Opustit všechny skupiny"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Přichytit k vodícím čarám"
+msgid "Snap to Snap Guides"
+msgstr "Přichytit k vodítkům"
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Připojit k vodítkům\">Přichytit k vodicím čarám</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Přichytit k vodítkům\">Přichytit k vodítkům</link>"
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Ikonka</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Ikona</alt></image>"
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Přichytit k vodícím čarám"
+msgid "Snap to Snap Guides"
+msgstr "Přichytit k vodítkům"
#. oXWsX
#: 13150000.xhp
diff --git a/source/cs/helpcontent2/source/text/swriter.po b/source/cs/helpcontent2/source/text/swriter.po
index c3109583c60..05df8b175ce 100644
--- a/source/cs/helpcontent2/source/text/swriter.po
+++ b/source/cs/helpcontent2/source/text/swriter.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
-"PO-Revision-Date: 2020-11-13 12:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-21 15:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/cs/>\n"
"Language: cs\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "Zleva doprava"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">Ikona Zleva doprava</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">Ikona Zleva doprava</alt></image>"
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "Zprava doleva"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">Ikona Zleva doprava</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">Ikona Zprava doleva</alt></image>"
#. TMwGp
#: main0202.xhp
diff --git a/source/cs/helpcontent2/source/text/swriter/00.po b/source/cs/helpcontent2/source/text/swriter/00.po
index 8ea7824105a..3c68e622ce8 100644
--- a/source/cs/helpcontent2/source/text/swriter/00.po
+++ b/source/cs/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-10-28 19:35+0000\n"
+"PO-Revision-Date: 2020-11-18 18:35+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter00/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1550732536.000000\n"
#. E9tti
@@ -824,7 +824,7 @@ msgctxt ""
"par_id3154197\n"
"help.text"
msgid "<variable id=\"sectionindents\">Choose <menuitem>Insert > Section > Indents</menuitem> tab or choose <menuitem>Format > Sections</menuitem> - <widget>Options</widget> button - <emph>Indents</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"sectionindents\">Zvolte kartu <menuitem>Vložit - Sekce - Odsazení</menuitem> nebo tlačítko <menuitem>Formát - Sekce</menuitem> - tlačítko <widget>Možnosti</widget> - karta <emph>Odsazení</emph>.</variable>"
#. oCG8Q
#: 00000404.xhp
@@ -1616,7 +1616,7 @@ msgctxt ""
"par_id3149298\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> - <emph>Page Styles</emph> - open context menu for selected page style - <menuitem>Modify/New - Columns</menuitem> tab."
-msgstr ""
+msgstr "Zvolte <menuitem>Zobrazit - Styly</menuitem> - <emph>Styly stránky</emph> - otevřete místní nabídku vybraného stylu stránky - karta <menuitem>Upravit/Nový - Sloupce</menuitem>."
#. 9sMo7
#: 00000405.xhp
@@ -1643,7 +1643,7 @@ msgctxt ""
"par_id3143276\n"
"help.text"
msgid "Choose <menuitem>Insert - Section - Columns</menuitem> tab."
-msgstr ""
+msgstr "Zvolte kartu <menuitem>Vložit - Sekce - Sloupce</menuitem>."
#. ZCfVD
#: 00000405.xhp
@@ -1652,7 +1652,7 @@ msgctxt ""
"par_id461604680991423\n"
"help.text"
msgid "Choose <menuitem>Format - Section - </menuitem><widget>Options</widget> button - <menuitem>Columns</menuitem> tab."
-msgstr ""
+msgstr "Zvolte <menuitem>Formát - Sekce - </menuitem>tlačítko <widget>Možnosti</widget> - karta <menuitem>Sloupce</menuitem>."
#. Gdf8J
#: 00000405.xhp
diff --git a/source/cs/helpcontent2/source/text/swriter/01.po b/source/cs/helpcontent2/source/text/swriter/01.po
index 93b8d4d73ed..32df9462389 100644
--- a/source/cs/helpcontent2/source/text/swriter/01.po
+++ b/source/cs/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-15 09:48+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/cs/>\n"
@@ -682,14 +682,14 @@ msgctxt ""
msgid "Navigator"
msgstr "Navigátor"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
-msgstr "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigátor\"><variable id=\"Navigator\">Navigátor</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
+msgstr ""
#. uXgCi
#: 02110000.xhp
@@ -709,14 +709,14 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr "Navigátor otevřete pomocí <menuitem>Zobrazit - Navigátor</menuitem> (<keycode>F5</keycode>). Okno Navigátoru lze přesouvat tažením za jeho záhlaví. Přetažením okna Navigátoru k levému, pravému, hornímu nebo dolnímu okraji pracovní plochy dojde k jeho ukotvení. Ukotvený Navigátor lze uvolnit přidržením klávesy <keycode>Ctrl</keycode> a poklepáním na jeho neaktivní (šedou) plochu."
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
-msgstr "Klepnutím na plus (<keycode>+</keycode>) vedle kategorie v Navigátoru zobrazíte položky kategorie. Počet položek v kategorii se zobrazí, jestliže najedete ukazatelem myši nad kategorii a chvilku posečkáte. Na položku v dokumentu přejdete tím, že na ni poklepete."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgstr ""
#. WD2Zz
#: 02110000.xhp
@@ -763,14 +763,14 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Přejde na předchozí položku v dokumentu. Typ položky určíte pomocí klepnutí na ikonu <emph>Navigace</emph> a poté na kategorii, např. \"Obrázky\".</ahelp> Přejde na předchozí položku v dokumentu, jejíž typ je určen v <emph>Navigovat podle</emph>."
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
-msgstr "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Ikona Předchozí objekt</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgstr ""
#. z3HC5
#: 02110000.xhp
@@ -799,14 +799,14 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Přejde na předchozí položku v dokumentu. Typ položky určíte pomocí klepnutí na ikonu <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigace\"><emph>Navigace</emph></link> a poté na kategorii, např. \"Obrázky\".</ahelp> Přejde na další položku v dokumentu, jejíž typ je určen v <emph>Navigovat podle</emph>."
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
-msgstr "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Ikona Další objekt</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgstr ""
#. xyGWM
#: 02110000.xhp
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Otevře dialog <emph>Příjemci hromadné korespondence</emph>.</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/swriter/guide.po b/source/cs/helpcontent2/source/text/swriter/guide.po
index b6007abe216..ceeb88da1e4 100644
--- a/source/cs/helpcontent2/source/text/swriter/guide.po
+++ b/source/cs/helpcontent2/source/text/swriter/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-15 09:48+0000\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"PO-Revision-Date: 2020-11-21 15:35+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/cs/>\n"
"Language: cs\n"
@@ -2381,7 +2381,7 @@ msgctxt ""
"bm_id3149909\n"
"help.text"
msgid "<bookmark_value>calculating; in text</bookmark_value> <bookmark_value>formulas; calculating in text</bookmark_value> <bookmark_value>references;in Writer tables</bookmark_value> <bookmark_value>=;in Writer tables</bookmark_value> <bookmark_value>tables;starting cell with =</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>výpočty; v textu</bookmark_value><bookmark_value>vzorce; výpočty v textu</bookmark_value><bookmark_value>odkazy; v tabulkách Writeru</bookmark_value><bookmark_value>=;v tabulkách Writeru</bookmark_value><bookmark_value>tabulky;buňky s = na začátku</bookmark_value>"
#. ArJvi
#: calculate.xhp
@@ -2444,7 +2444,7 @@ msgctxt ""
"hd_id971605353826552\n"
"help.text"
msgid "Cell Entries that Start with Equal Sign (<keycode>=</keycode>)"
-msgstr ""
+msgstr "Buňky začínající znaménkem je rovno (<keycode>=</keycode>)"
#. hXyjD
#: calculate.xhp
@@ -2453,7 +2453,7 @@ msgctxt ""
"par_id981605353389582\n"
"help.text"
msgid "To make a table cell entry that starts with <keycode>=</keycode> sign, first enter a space, then the <keycode>=</keycode> sign, and then delete the space."
-msgstr ""
+msgstr "Chcete-li do tabulky zadat položku buňky začínající znaménkem <keycode>=</keycode>, nejprve zadejte mezeru, poté znaménko <keycode>=</keycode> a následně mezeru smažte."
#. i3E8j
#: calculate_clipboard.xhp
@@ -7792,50 +7792,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Odsazení odstavců</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr "Chcete-li změnit měrnou jednotku, zvolte <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Předvolby</item></caseinline><defaultinline><item type=\"menuitem\">Nástroje - Možnosti</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Obecné</item> a vyberte novou měrnou jednotku v oblasti Nastavení."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "Můžete změnit odsazení aktuálního odstavce, všech označených odstavců nebo stylu odstavce."
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "Můžete změnit odsazení aktuálního odstavce, všech označených odstavců nebo stylu odstavce."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "Pro změnu odsazení aktuálního odstavce nebo všech označených odstavců zvolte <item type=\"menuitem\">Formát - Odstavec - Odsazení a rozestupy</item>. Odsazení můžete nastavit také <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">pomocí pravítka</link>."
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "Odsazení můžete také <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">nastavit pomocí pravítka</link>. Pro zobrazení pravítka zvolte <item type=\"menuitem\">Zobrazit - Pravítko</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr "Pokud chcete změnit odsazení pro všechny odstavce se stejným stylem odstavce, klepněte pravým tlačítkem myši v odstavci a zvolte kartu <menuitem>Odstavec - Upravit styl - Odsazení a rozestupy</menuitem>."
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "Pro změnu odsazení aktuálního odstavce nebo všech označených odstavců zvolte <item type=\"menuitem\">Formát - Odstavec - Odsazení a rozestupy</item>. Odsazení můžete nastavit také <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">pomocí pravítka</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "Odsazení můžete také <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">nastavit pomocí pravítka</link>. Pro zobrazení pravítka zvolte <item type=\"menuitem\">Zobrazit - Pravítko</item>."
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "Pokud chcete změnit odsazení pro všechny odstavce se stejným stylem odstavce, klepněte pravým tlačítkem myši v odstavci a zvolte <item type=\"menuitem\">Upravit styl odstavce - Odsazení a rozestupy</item>."
+msgid "Positioning indents"
+msgstr "Umístění odsazení"
#. qUxKq
#: indenting.xhp
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "Odsazení se počítá vzhledem k levému a pravému okraji stránky. Pokud chcete, aby odstavec přesáhl do okraje stránky, zadejte záporné číslo."
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr "Chcete-li změnit měrnou jednotku, zvolte <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Předvolby</item></caseinline><defaultinline><item type=\"menuitem\">Nástroje - Možnosti</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Obecné</item> a vyberte novou měrnou jednotku v oblasti Nastavení."
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "Odsazení zohledňuje směr psaní. Vezměme jako příklad hodnotu odsazení <item type=\"menuitem\">Zleva</item>. V jazycích psaných zleva doprava podle ní bude odsazen levý okraj odstavce vzhledem k levému okraji stránky. V jazycích psaných zprava doleva podle ní bude odsazen pravý okraj odstavce vzhledem k pravému okraji stránky."
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr "Předsazení prvního řádku"
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "Předsazení vytvoříte zadáním kladné hodnoty do <item type=\"menuitem\">Zleva</item> a záporné hodnoty do <item type=\"menuitem\">První řádek</item>."
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr "Ikona <emph>Předsazení prvního řádku</emph> se nachází v části Odstavec na postranní liště Vlastnosti. Klepnutím na tuto ikonu zaměníte hodnoty <menuitem>Před textem</menuitem> a <menuitem>První řádek</menuitem>. Díky tomu můžete u odstavce přepínat mezi odsazeným prvním řádkem a předsazením."
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr "Chcete-li předsazení prvního řádku vytvořit: Zadejte odsazení prvního řádku na místě, kde má předsazení začínat, a poté klepněte na ikonu Předsazení prvního řádku."
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Ikona Předsazení prvního řádku</alt></image>"
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr "Předsazení prvního řádku"
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr "Příkaz <emph>Předsazení prvního řádku</emph> lze přidat jako <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"Přidat tlačítko\">tlačítko na nástrojovou lištu</link>, jako <link href=\"text/shared/01/06140100.xhp\" name=\"Přidat položku nabídku\">položku do nabídky</link> či <link href=\"text/shared/01/06140300.xhp\" name=\"Upravit místní nabídku\">do místní nabídky</link> nebo jako <link href=\"text/shared/01/06140200.xhp\" name=\"Vytvořit klávesovou zkratku\">klávesovou zkratku</link>."
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,14 +10294,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "Zapnutí a vypnutí rozpoznávání čísel v tabulkách"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>čísla; automatické rozpoznávání v tabulkách v textu</bookmark_value> <bookmark_value>tabulky; automatické rozpoznávání</bookmark_value> <bookmark_value>data;automatické formátování v tabulkách</bookmark_value> <bookmark_value>rozpoznávání;čísla</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10267,14 +10330,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Udělejte jedno z následujícího:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "Klepněte pravým tlačítkem na buňku a zvolte <item type=\"menuitem\">Rozpoznávání čísel</item>. Pokud je tato vlastnost zapnutá, zobrazuje se před příkazem <item type=\"menuitem\">Rozpoznávání čísel</item> zaškrtnutí."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr "Zvolte <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Předvolby</caseinline><defaultinline>Nástroje - Možnosti</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Tabulka</item> a zaškrtněte nebo zrušte zaškrtnutí pole <item type=\"menuitem\">Rozpoznávání čísel</item>."
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12211,6 +12292,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "Pokud vytváříte dokument, který chcete tisknout jako příručku, použijte orientaci stránky na šířku. Program Writer použije rozvržení příručky při jejím tisku."
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr "%PRODUCTNAME není navržen pro tisk příručky z dokumentů, které obsahují stránky orientované na šířku, přesto je možné takové dokumenty vytisknout."
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr "Nelze však vytisknout velký obrázek zabírající dvě stránky. Takový obrázek rozdělte na dvě části a každou vložte na jinou stránku."
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12256,50 +12355,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "Pokud vaše tiskárna podporuje duplexní tisk, měli byste při tisku příručky zvolit v nastavení tiskárny možnost \"duplex - short edge\" (duplexní - krátká strana), protože příručky se vždy tisknou v režimu na šířku."
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
-msgstr "Vraťte se do dialogu <emph>Tisk</emph> a klepněte na kartu <emph>Rozvržení stránek</emph>."
+msgid "Return to <emph>Print</emph> dialog."
+msgstr "Vraťte se do dialogového okna <emph>Tisk</emph>."
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
-msgstr "Vyberte <emph>Příručka</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
+msgstr "V části <emph>Rozvržení stránky</emph> vyberte <emph>Příručka</emph>."
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "Máte-li tiskárnu, která automaticky tiskne na obě strany papíru, upřesněte, aby se zahrnuly \"Všechny stránky\"."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr "Máte-li tiskárnu, která automaticky tiskne na obě strany papíru, upřesněte v části <emph>Rozsah a kopie</emph>, aby se zahrnuly <emph>Liché a sudé stránky</emph>."
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Klepněte na <emph>OK</emph>."
+msgid "Click <emph>Print</emph>."
+msgstr "Klepněte na <emph>Tisk</emph>."
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "Pokud %PRODUCTNAME tiskne stránky ve špatném pořadí, otevřete kartu <emph>Obecné</emph>, zaškrtněte <emph>Vytisknout v opačném pořadí</emph> a vytiskněte dokument znovu."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr "Pokud %PRODUCTNAME tiskne stránky ve špatném pořadí, zaškrtněte v části <emph>Rozsah a kopie</emph> možnost <emph>Vytisknout v opačném pořadí</emph> a vytiskněte dokument znovu."
#. FgeK4
#: print_preview.xhp
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr "<link href=\"text/swriter/01/01120000.xhp\" name=\"Soubor - Náhled tisku\">Soubor - Náhled tisku</link>."
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr "Výběr tisknutých částí"
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr "<bookmark_value>vybírání;stránky k tisku</bookmark_value><bookmark_value>tisk;rozsah stránek</bookmark_value><bookmark_value>tisk;výběr</bookmark_value>"
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Výběr tisknutých částí</link></variable>"
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr "Pro tisk je možné zvolit jednotlivé stránky, rozsah stránek nebo výběr v dokumentu."
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr "Tisk jedné stránky"
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr "Volbou <menuitem>Soubor - Tisk</menuitem> otevřete dialogové okno <emph>Tisk</emph>."
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr "V části <emph>Rozsah a kopie</emph> vyberte možnost <emph>Stránky</emph>. V textovém poli se zobrazí číslo aktuální stránky."
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr "Zadejte číslo stránky, kterou si přejete vytisknout."
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr "Vybraná stránka se zobrazí v náhledu vlevo."
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr "Tisk rozsahu stránek"
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr "Volbou <menuitem>Soubor - Tisk</menuitem> otevřete dialogové okno <emph>Tisk</emph>."
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr "V části <emph>Rozsah a kopie</emph> vyberte možnost <emph>Stránky</emph>. V textovém poli se zobrazí číslo aktuální stránky."
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr "Zadejte čísla stránek, které chcete vytisknout."
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr "Pro rozsah stránek použijte znak <literal>-</literal> (například <input>1-4</input> vytiskne všechny stránky od 1 do 4)."
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr "Lze použít také částečný rozsah."
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr "<input>-5</input> vytiskne všechny stránky do čísla 5."
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr "<input>10-</input> vytiskne stránky od 10 do konce dokumentu."
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr "Pro seznam stránek použijte znak <literal>,</literal> nebo <literal>;</literal> (například <input>1,3;7</input> vytiskne stránky 1, 3 a 7, volitelně lze doplnit mezery, fungovat bude také 1, 3, 7)."
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr "Možné jsou také kombinace, například <input>1, 3, 5-10, 15-</input> vytiskne stránky 1, 3, od 5 do 10 a od 15 do konce dokumentu."
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr "Vybrané stránky se zobrazí v náhledu vlevo."
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr "Tisk vybraného textu nebo obrázků"
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr "Vyberte obsah, který chcete vytisknout."
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr "Volbou <menuitem>Soubor - Tisk</menuitem> otevřete dialogové okno <emph>Tisk</emph>."
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr "V části <emph>Rozsah a kopie</emph> zvolte možnost <emph>Výběr</emph>."
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr "Vybraný obsah se zobrazí v náhledu vlevo."
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,32 +12724,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Tisk více stránek na jednu stranu</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
-msgstr "Na kartě <emph>Rozvržení stránek</emph> v dialogovém okně <item type=\"menuitem\">Soubor - Tisk</item> můžete vybrat tisk více stránek na jeden list."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
+msgstr "V části <emph>Rozvržení stránky</emph> dialogového okna <menuitem>Soubor - Tisk</menuitem> máte možnost vytisknout více stránek na jeden list."
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
-msgstr "Vyberte <emph>Soubor - Tisk</emph> a klepněte na kartu <emph>Rozvržení stránek</emph>."
+msgid "Choose <menuitem>File - Print</menuitem>"
+msgstr "Zvolte <menuitem>Soubor - Tisk</menuitem>."
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Udělejte jedno z následujícího:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr "V části <emph>Rozvržení stránky</emph> proveďte jeden z následujících kroků:"
#. G8yiU
#: print_small.xhp
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Tisk s řádkováním stránky</link></variable>"
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
@@ -13496,7 +13820,7 @@ msgctxt ""
"par_idN1068C\n"
"help.text"
msgid "Open the Styles window (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>), click the Paragraph Style you want to exempt, right-click that style, choose <emph>Modify</emph>. In the dialog, click the <link href=\"text/shared/01/05030100.xhp\" name=\"formatparagraph2\"><emph>Indents & Spacing</emph></link> tab."
-msgstr ""
+msgstr "Otevřete okno Styly (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>), klepněte pravým tlačítkem na styl odstavce, který si přejete vynechat, a zvolte <emph>Upravit</emph>. V dialogovém okně klepněte na kartu <link href=\"text/shared/01/05030100.xhp\" name=\"formatparagraph2\"><emph>Odsazení a rozestupy</emph></link>."
#. rzTBT
#: registertrue.xhp
@@ -13730,7 +14054,7 @@ msgctxt ""
"bm_id8186284\n"
"help.text"
msgid "<bookmark_value>rulers;using rulers</bookmark_value><bookmark_value>horizontal rulers</bookmark_value><bookmark_value>vertical rulers</bookmark_value><bookmark_value>indents; setting on rulers</bookmark_value><bookmark_value>page margins on rulers</bookmark_value><bookmark_value>table cells;adjusting the width on rulers</bookmark_value><bookmark_value>showing;rulers</bookmark_value><bookmark_value>hiding;rulers</bookmark_value><bookmark_value>adjusting page margins</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>pravítka;používání pravítek</bookmark_value><bookmark_value>vodorovná pravítka</bookmark_value><bookmark_value>svislá pravítka</bookmark_value><bookmark_value>odsazení; nastavení na pravítkách</bookmark_value><bookmark_value>okraje stránky na pravítkách</bookmark_value><bookmark_value>buňky tabulky;přizpůsobení šířky na pravítkách</bookmark_value><bookmark_value>zobrazení; pravítka</bookmark_value><bookmark_value>skrývání; pravítka</bookmark_value><bookmark_value>přizpůsobení okrajů stránky</bookmark_value>"
#. FTeNL
#: ruler.xhp
@@ -16061,7 +16385,7 @@ msgctxt ""
"par_id3149615\n"
"help.text"
msgid "<image id=\"img_id3149622\" src=\"cmd/sc_optimizetable.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149622\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149622\" src=\"cmd/sc_optimizetable.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149622\">Ikona</alt></image>"
#. BErzm
#: table_sizing.xhp
diff --git a/source/cs/helpcontent2/source/text/swriter/menu.po b/source/cs/helpcontent2/source/text/swriter/menu.po
index d7fbbd38f75..af0ec0ffb05 100644
--- a/source/cs/helpcontent2/source/text/swriter/menu.po
+++ b/source/cs/helpcontent2/source/text/swriter/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-10-28 19:35+0000\n"
+"PO-Revision-Date: 2020-11-18 18:35+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/textswritermenu/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1469204133.000000\n"
#. tP5yN
@@ -194,7 +194,7 @@ msgctxt ""
"par_id911601651828340\n"
"help.text"
msgid "<ahelp hid=\".\">Submenu with additional row, column, and page breaks</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Podnabídka s dodatečným zalomením řádku, sloupce a stránky.</ahelp>"
#. t534N
#: submenu_more_breaks.xhp
@@ -221,7 +221,7 @@ msgctxt ""
"bm_id651604885957774\n"
"help.text"
msgid "<bookmark_value>text documents; inserting column breaks</bookmark_value><bookmark_value>column breaks; inserting</bookmark_value><bookmark_value>inserting; manual column breaks</bookmark_value><bookmark_value>manual column breaks</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>textové dokument;vkládání zalomení sloupce</bookmark_value><bookmark_value>zalomení sloupce;vkládání</bookmark_value><bookmark_value>vkládání;ruční zalomení sloupce</bookmark_value><bookmark_value>ruční zalomení sloupce</bookmark_value>"
#. XBU67
#: submenu_more_breaks.xhp
diff --git a/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po b/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
index ccabe6aec4b..341125e4987 100644
--- a/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/cs/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-10 19:35+0000\n"
+"PO-Revision-Date: 2020-11-17 20:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1564947888.000000\n"
#. W5ukN
@@ -13574,7 +13574,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Regular Triangle"
-msgstr ""
+msgstr "Rovnostranný trojúhelník"
#. BUJ28
#: Effects.xcu
@@ -29886,7 +29886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show ~Tracked Changes"
-msgstr ""
+msgstr "Zobrazit ~sledované změny"
#. sMgCx
#: WriterCommands.xcu
diff --git a/source/cs/sc/messages.po b/source/cs/sc/messages.po
index aff7a6a5999..7cd019ba594 100644
--- a/source/cs/sc/messages.po
+++ b/source/cs/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-10-28 12:00+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1565903887.000000\n"
#. kBovX
@@ -1471,7 +1471,7 @@ msgstr "Importovat soubor Dif"
#: sc/inc/globstr.hrc:272
msgctxt "STR_STYLENAME_STANDARD"
msgid "Default"
-msgstr ""
+msgstr "Výchozí"
#. TG9pD
#: sc/inc/globstr.hrc:273
@@ -14686,7 +14686,7 @@ msgstr "Výsledek funkce, pokud je test PRAVDA."
#: sc/inc/scfuncs.hrc:3606
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Compares expression against list of value/result pairs, and returns result for first value that matches the expression. If expression does not match any value, a default result is returned, if it is placed as final item in parameter list without a value."
-msgstr ""
+msgstr "Porovná výraz se seznamem dvojic hodnot a výsledků a vrátí odpovídající první hodnotě, která je rovna zadanému výrazu. Jestliže výraz žádné hodnotě neodpovídá, vrátí se výchozí výsledek, pokud je umístěn v seznamu parametrů jako poslední položka bez hodnoty."
#. PneN8
#: sc/inc/scfuncs.hrc:3607
@@ -14698,7 +14698,7 @@ msgstr "Výraz"
#: sc/inc/scfuncs.hrc:3608
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Value to be compared against value1…valueN (N ≤ 127)"
-msgstr ""
+msgstr "Hodnota, která se porovná s parametry hodnota1...hodnotaN (N ≤ 127)"
#. 9wcvj
#: sc/inc/scfuncs.hrc:3609
@@ -14710,7 +14710,7 @@ msgstr "Hodnota"
#: sc/inc/scfuncs.hrc:3610
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Value to compare against expression. If no result is given, then value is returned as default result."
-msgstr ""
+msgstr "Hodnota, která se porovná s výrazem. Není-li zadán výsledek, jako výchozí výsledek se vrátí hodnota."
#. dsARv
#: sc/inc/scfuncs.hrc:3611
@@ -25218,13 +25218,13 @@ msgstr "Zvýraznění 3"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2653
msgctxt "notebookbar_groupedbar_full|Header1"
msgid "Heading 1"
-msgstr ""
+msgstr "Nadpis 1"
#. 6Ej4G
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2661
msgctxt "notebookbar_groupedbar_full|Header2"
msgid "Heading 2"
-msgstr ""
+msgstr "Nadpis 2"
#. sqE94
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2675
@@ -28628,38 +28628,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr "Pokud vložíte buňky ze schránky do oblasti neprázdných buněk, zobrazí se upozornění."
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr "Stisk klávesy Enter vloží ze schránky a schránku vymaže"
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Pro formátování textu použít metriku tiskárny"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "Pro tisk a také formátování na obrazovce se použije metrika tiskárny."
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "_Zvýraznit výběr v záhlaví sloupců a řádků"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr "Určuje, zda se má zvýraznit záhlaví sloupce a řádku pro vybrané sloupce či řádky."
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Při řazení oblasti buněk aktualizovat odkazy"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Nastavení vstupu"
diff --git a/source/cs/sfx2/messages.po b/source/cs/sfx2/messages.po
index c1a5d8c7947..3fa791f2953 100644
--- a/source/cs/sfx2/messages.po
+++ b/source/cs/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-10-28 12:00+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/cs/>\n"
@@ -1655,286 +1655,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Zavřít panel"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Uchytit"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Uvolnit"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Další možnosti"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Zavřít kartu postranní lišty"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Nastavení postranní lišty"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Přizpůsobení"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Obnovit výchozí"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Zavřít postranní lištu"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Včelí úl"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Modrá křivka"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blueprint plánu"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Jasně modrá"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Červená"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Ohnisko"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Lesní zátiší"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspirace"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Světla"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Svěží zelená"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Půlnoční modř"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Příroda"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Tužka"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klavír"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Pokrok"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Západ slunce"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Starožitnost"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Svěží"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "Životopis"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Stručný životopis"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Výchozí"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderní"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderní obchodní dopis bezpatkový"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderní obchodní dopis patkový"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Vizitky s logem"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Jednoduchý"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "Podnikové procesy (BPMN)"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Odstranit"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Vymazat vše"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Délka hesla"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Zadané heslo způsobuje problémy s interoperabilitou. Zadejte heslo kratší než 52 bajtů nebo delší než 55 bajtů."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}+kliknutí otevře hypertextový odkaz: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Kliknutím otevřete hypertextový odkaz: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(použity ve stylech: %STYLELIST)"
@@ -4165,6 +4129,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Smazat..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/cs/starmath/messages.po b/source/cs/starmath/messages.po
index 2a8dbe95512..9b459b3aae3 100644
--- a/source/cs/starmath/messages.po
+++ b/source/cs/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-08-05 13:35+0000\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/cs/>\n"
"Language: cs\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "or"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Znaménko +"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Znaménko -"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Znaménko +-"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Znaménko -+"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Booleovské NOT"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Sčítání +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Odčítání -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Násobení (tečka)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Násobení (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Násobení (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Dělení (lomítko)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Dělení (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Dělení (zlomek)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
-msgstr ""
+msgstr "Zlomek"
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Lomítko v kroužku"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Tečka v kroužku"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Minus v kroužku"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Plus v kroužku"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Tenzorový součin"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Booleovské AND"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Booleovské OR"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Je rovno"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Není rovno"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Je menší než"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Je větší než"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Je menší nebo rovno"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Je větší nebo rovno"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Je menší nebo rovno"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Je větší nebo rovno"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Je mnohem menší než"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Je mnohem větší než"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Je definováno jako"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Je shodno s"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Je přibližně rovno"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Je podobné"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Je podobné nebo rovno"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Je úměrné k"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Je ortogonální k"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Je rovnoběžné k"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Směrem"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Odpovídá (vlevo)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Odpovídá (vpravo)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Je obsaženo"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Není obsaženo"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Obsahuje"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Sjednocení"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Průnik"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Rozdíl"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
-msgstr ""
+msgstr "Množina dělitelnosti"
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Podmnožina"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Podmnožina nebo rovno"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Nadmnožina"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Nadmnožina nebo rovno"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Není podmnožinou"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Není podmnožinou nebo rovno"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Není nadmnožinou"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Není nadmnožinou nebo rovno"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr "Obecná funkce"
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Absolutní hodnota"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Faktoriál"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Druhá odmocnina"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "n-tá odmocnina"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Exponenciální funkce"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Exponenciální funkce"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Přirozený logaritmus"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logaritmus"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sinus"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Kosinus"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangens"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Kotangens"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arkussinus"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arkuskosinus"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arkustangens"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arkuskotangens"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Hyperbolický sinus"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Hyperbolický kosinus"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Hyperbolický tangens"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Hyperbolický kotangens"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Argument hyperbolického sinu"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Argument hyperbolického kosinu"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Argument hyperbolického tangens"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Argument hyperbolického kotangens"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr "Obecný operátor"
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr "Obecný operátor s indexem dole"
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr "Obecný operátor s indexem nahoře"
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr "Obecný operátor s indexem nahoře a dole"
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Suma"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Suma s indexem dole"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Suma s indexem nahoře"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Suma s indexem nahoře a dole"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Součin (produkt)"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Součin s indexem dole"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Součin s indexem nahoře"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Součin s indexem nahoře a dole"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Koprodukt"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Koprodukt s indexem dole"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Koprodukt s indexem nahoře"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Koprodukt s indexem nahoře a dole"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Limity"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Limita s indexem dole"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Limita s indexem nahoře"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Limita s indexem nahoře a dole"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Dolní limita"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Dolní limita s indexem dole"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Dolní limita s indexem nahoře"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Dolní limita s indexem nahoře a dole"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Horní limita"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Horní limita s indexem dole"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Horní limita s indexem nahoře"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Horní limita s indexem nahoře a dole"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Existuje"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Neexistuje"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Pro všechny"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integrál"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Integrál s indexem dole"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Integrál s indexem nahoře"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integrál s indexem nahoře a dole"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Dvojný integrál"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Dvojný integrál s indexem dole"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Dvojný integrál s indexem nahoře"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Dvojný integrál s indexem nahoře a dole"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Trojný integrál"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Trojný integrál s indexem dole"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Trojný integrál s indexem nahoře"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Trojný integrál s indexem nahoře a dole"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Křivkový integrál"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Křivkový integrál s indexem dole"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Křivkový integrál s indexem nahoře"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Křivkový integrál s indexem nahoře a dole"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Plošný integrál"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Plošný integrál s indexem dole"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Plošný integrál s indexem nahoře"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Plošný integrál s indexem nahoře a dole"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Objemový integrál"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Objemový integrál s indexem dole"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Objemový integrál s indexem nahoře"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Objemový integrál s indexem nahoře a dole"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Čárka"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "S pruhem"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Oblouček"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Háček"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Kroužek"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Tečka"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Dvojitá tečka"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Trojtečka"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Obrácená čárka"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Stříška"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tilda"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Vektorová šipka"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Šipka tvaru harpuny"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Čára pod"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Čára nad"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Čára přes"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Průhledné"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Tučné písmo"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Kurzíva"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Změnit velikost"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Změnit písmo"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Černá barva"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Modrá barva"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Zelená barva"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Červená barva"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
-msgstr ""
+msgstr "Azurová barva"
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
-msgstr ""
+msgstr "Purpurová barva"
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Šedá barva"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Žlutozelená barva"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Kaštanová barva"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Tmavomodrá barva"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Olivová barva"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Purpurová barva"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Stříbrná barva"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Zelenomodrá barva"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Žlutá barva"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "Barva RGB"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
-msgstr ""
+msgstr "Barva RGBA"
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
-msgstr ""
+msgstr "Barva šestnáctkově"
+
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr "Korálová barva"
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr "Rudá barva"
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr "Barva půlnoční modrá"
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr "Fialová barva"
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr "Oranžová barva"
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr "Oranžovočervená barva"
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr "Modrozelená barva"
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr "Indigová barva"
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr "Tmavě růžová barva"
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr "Levandulová barva"
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr "Světlemodrá"
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Skupinové závorky"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Kulaté závorky"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Hranaté závorky"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Dvojité hranaté závorky"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Složené závorky"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Špičaté závorky"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Horní celá část"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Dolní celá část"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Jednoduché čáry"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Dvojité čáry"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Závorky operátoru"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Kulaté závorky (zvětšující se)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Hranaté závorky (zvětšující se)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Dvojité hranaté závorky (zvětšující se)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Složené závorky (zvětšující se)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Špičaté závorky (zvětšující se)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Horní celá část (zvětšující se)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Dolní celá část (zvětšující se)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Jednoduché čáry (zvětšující se)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Dvojité čáry (zvětšující se)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Závorky operátoru (zvětšující se)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Vyhodnoceno pro"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Složená závorka nahoře (zvětšující se)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Složená závorka dole (zvětšující se)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
-msgstr ""
+msgstr "Vyhodnotit"
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
-msgstr ""
+msgstr "Vyhodnotit dolní index"
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
-msgstr ""
+msgstr "Vyhodnotit horní index"
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
-msgstr ""
+msgstr "Vyhodnotit horní/dolní index"
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Dolní index vpravo"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Exponent"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Dolní index vlevo"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Horní index vlevo"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Dolní index uprostřed"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Horní index uprostřed"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Malá mezera"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Mezera"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Nový řádek"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Vertikální zásobník (2 prvky)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Vertikální zásobník"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Maticový zásobník"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Zarovnat vlevo"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Zarovnat na střed"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Zarovnat vpravo"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Alef"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Prázdná množina"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Reálná část"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Imaginární část"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Nekonečno"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Parciální"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr "Laplaceova transformace"
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr "Fourierova transformace"
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrassovo p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Tečky uprostřed"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Tečky nahoru"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Tečky dolů"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Tečky dole"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Tečky svisle"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Spojit"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Dělení (široké lomítko)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Dělení (široké zpětné lomítko)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Dělitelné"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Nedělitelné"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Dvojitá šipka vlevo"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Dvojitá šipka vlevo a vpravo"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Dvojitá šipka vpravo"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Množina přirozených čísel"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Množina celých čísel"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Množina racionálních čísel"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Množina reálných čísel"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Množina komplexních čísel"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Velká stříška"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Velká tilda"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "S velkou vektorovou šipkou"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Velká šipka tvaru harpuny"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h s pruhem"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda s pruhem"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Levá šipka"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Šipka doprava"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Šipka nahoru"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Šipka dolů"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Bez mezery"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Předchází"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Předchází nebo se rovná"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Předchází nebo odpovídá"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Následuje"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Následuje nebo se rovná"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Následuje nebo odpovídá"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Nepředchází"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Nenásleduje"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Unární/binární operátory"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Relace"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Množinové operace"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funkce"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operátory"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Atributy"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Závorky"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formáty"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Jiné"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Příklady"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Obvod kruhu"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Vztah mezi hmotností a energií"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Pythagorova věta"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
-msgstr ""
+msgstr "Taylorova řada"
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Gaussovo rozdělení"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
-msgstr ""
+msgstr "Eulerova-Lagrangeova rovnice"
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
-msgstr ""
+msgstr "Základní věta integrálního počtu"
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
-msgstr ""
+msgstr "Rovnice chaosu"
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
-msgstr ""
+msgstr "Eulerova rovnost"
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
-msgstr ""
+msgstr "Druhý Newtonův zákon"
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
-msgstr ""
+msgstr "Obecná teorie relativity"
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
-msgstr ""
+msgstr "Speciální teorie relativity"
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standardní"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kurzíva"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Tučné"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "černá"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "modrá"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "zelená"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "červená"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
-msgstr ""
+msgstr "azurová"
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
-msgstr ""
+msgstr "purpurová"
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "šedá"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "žlutozelená"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "kaštanová"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "tmavomodrá"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olivová"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "tmavě purpurová"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "stříbrná"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "zelenomodrá"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "žlutá"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr "korálová"
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr "rudá"
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr "půlnoční modrá"
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr "fialová"
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr "oranžová"
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr "oranžovočervená"
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr "levandulová"
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr "světlemodrá"
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr "modrozelená"
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr "indigová"
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr "tmavě růžová"
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
-msgstr ""
+msgstr "rgba"
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
-msgstr ""
+msgstr "šestnáctkově"
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "skryté"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "velikost"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "písmo"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "vlevo"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "na střed"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "vpravo"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Příkazy"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Vzorec"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Ukládání dokumentu..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Vzorec %PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "CHYBA : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Neočekávaný znak"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Neočekávaný token"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Očekávána '{'"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Očekávána '}'"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Očekávána '('"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Očekávána ')'"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Levé a pravé symboly si neodpovídají"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Očekávána hodnota „fixed“, „sans“ nebo „serif“"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "Neočekávaný token za hodnotou „size“"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Nelze použít dvojí zarovnání"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Nelze použít dvojitý dolní nebo horní index"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
-msgstr ""
+msgstr "Očekáváno číslo"
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Očekáván '#'"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Je vyžadována barva"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Očekáváno 'RIGHT'"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Obsah"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Náz~ev"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Text ~vzorce"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "O~hraničení"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Velikost"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "~Původní velikost"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Přizpůsobit velikosti ~stránky"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Měřítko"
diff --git a/source/cs/svtools/messages.po b/source/cs/svtools/messages.po
index f785e95c3a4..518d53b7237 100644
--- a/source/cs/svtools/messages.po
+++ b/source/cs/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-10 19:35+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/cs/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "~Zpět: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Znovu: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "O~pakovat: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Neformátovaný text"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Neformátovaný text (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Rastrový obrázek (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Metasoubor Graphics Device Interface (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich text formatting (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich text formatting (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Formát kresby %PRODUCTNAME"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView rastr/animace (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Stavové informace od Svx"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME Link (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Záložka Netscape"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Formát Star serveru"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Formát Star objektu"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Zásuvný modul"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objekt StarWriter 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objekt StarWriter 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objekt StarWriter 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objekt StarWriter/Web 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objekt StarWriter/Web 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Objekt StarWriter/Master 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Objekt StarWriter/Master 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objekt StarDraw"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objekt StarDraw 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objekt StarImpress 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objekt StarDraw 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objekt StarCalc"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objekt StarCalc 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objekt StarCalc 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objekt StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objekt StarChart 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objekt StarChart 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objekt StarImage"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objekt StarImage 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objekt StarImage 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objekt StarMath"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objekt StarMath 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objekt StarMath 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objekt StarObject Paint"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Zjednodušený HyperText Markup Language (jednoduché HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (odkaz DDE)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objekt Microsoft Word"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objekt StarFrameSet"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Dokument"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Poznámky k dokumentu"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx dokument"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objekt StarChart 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Obrázek"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Objekt OpenOffice.org 1.0 Writer"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Objekt OpenOffice.org 1.0 Writer/Web"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Objekt OpenOffice.org 1.0 Writer/Master"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Objekt OpenOffice.org 1.0 Draw"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Objekt OpenOffice.org 1.0 Impress"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Objekt OpenOffice.org 1.0 Calc"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Objekt OpenOffice.org 1.0 Chart"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Objekt OpenOffice.org 1.0 Math"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows Metafile"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Zdroj dat"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabulka zdroje dat"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL dotaz"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Dialogové okno OpenOffice.org 1.0"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Odkaz"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML formát bez komentářů"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objekt % nelze vložit."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objekt ze souboru % nelze vložit."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Další objekty"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Neznámý zdroj"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bajtů"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "kB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1234 +501,1234 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerický"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Běžné"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Znaková sada"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Slovník"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pchin-jin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Tah"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Základní znak"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Ču-jin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonní seznam"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Foneticky (písmena a číslice jako první)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Foneticky (písmena a číslice jako poslední)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerický"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Slovník"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pchin-jin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Základní znak"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Tah"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Ču-jin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Foneticky (písmena a číslice jako první, seskupené podle hlásek)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Foneticky (písmena a číslice jako první, seskupené podle souhlásek)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Foneticky (písmena a číslice jako poslední, seskupené podle hlásek)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Foneticky (písmena a číslice jako poslední, seskupené podle souhlásek)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Světlé"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Lehce skloněné"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Běžné"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kurzíva"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Tučné"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Tučná kurzíva"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Černé"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Černá kurzíva"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Knižní"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Tučné skloněné"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Zúžené"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Zúžené tučné"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Zúžená tučná kurzíva"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Zúžené tučné skloněné"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Zúžená kurzíva"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Zúžené skloněné"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Velmi tenké"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Velmi tenká kurzíva"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Skloněné"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Polotučné"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Polotučná kurzíva"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Stejné písmo bude použito na tiskárně i na obrazovce."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Toto je písmo je určeno pro tiskárnu; na obrazovce se může lišit."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Tento styl písma bude simulován nebo bude použit nejbližší odpovídající styl."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Toto písmo nebylo nainstalováno. Bude použito nejblíže odpovídající písmo."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Přesunout domů"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Přesunout doleva"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Přesunout doprava"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Přesunout na konec"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Přidat"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Vodorovné pravítko"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Svislé pravítko"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 bitový práh"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bitový rozklad"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 bity stupně šedi"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 bity barva"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 bitů stupně šedi"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 bitů barva"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 bitů TrueColor"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Obrázek potřebuje asi %1 KB paměti."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Obrázek potřebuje asi %1 kB paměti, velikost souboru je %2 kB."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Velikost souboru je %1 KB."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "hostitel"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Ostatní CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Připraveno"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Pozastaveno"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Odstraňování"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Zaneprázdněno"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Inicializace"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Čeká se"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Zahřívání"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Zpracování"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Probíhá tisk"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Offline"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Chyba"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Neznámý server"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Zaseknutý papír"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Nedostatek papíru"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Ruční podávání"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Potíže s papírem"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "Aktivní V/V"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Výstupní zásobník je plný"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Nedostatek toneru"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Došel toner"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Smazat stránku"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Je třeba zásahu uživatele"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Nedostatek paměti"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Kryt je otevřen"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Úsporný režim"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Výchozí tiskárna"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumentů"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<nic>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Společnost"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Oddělení"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Jméno"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Příjmení"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Ulice"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Země"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "PSČ"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Obec"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titul"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Pozice"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Formulář adresy"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Iniciály"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Zdvořilostní zakončení"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel: domů"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel: do práce"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-mail"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Poznámka"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Vlastní 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Vlastní 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Vlastní 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Vlastní 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Stát"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel: kancelář"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pager"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobil"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel: jiný"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalendář"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Pozvánka"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$ $service$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "Pro vykonání tohoto úkolu vyžaduje %PRODUCTNAME běhové prostředí Javy (JRE). Nainstalujte JRE a %PRODUCTNAME restartujte. %FAQLINK"
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "Pro vykonání tohoto úkolu vyžaduje %PRODUCTNAME %BITNESS bitové běhové prostředí Javy (JRE). Nainstalujte JRE a %PRODUCTNAME restartujte. %FAQLINK"
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME vyžaduje v systémech macOS X 10.10 a novějších pro vykonání tohoto úkolu Java Development Kit (JDK) od společnosti Oracle. Nainstalujte jej a %PRODUCTNAME restartujte. %FAQLINK"
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Nastavení %PRODUCTNAME bylo změněno. V %PRODUCTNAME - Předvolby - %PRODUCTNAME - Pokročilé vyberte běhově prostředí Javy, které chcete v %PRODUCTNAME používat."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Nastavení %PRODUCTNAME bylo změněno. V nabídce Nástroje - Možnosti - %PRODUCTNAME - Pokročilé vybere běhové prostředí Javy, které chcete v %PRODUCTNAME používat."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME vyžaduje pro vykonání tohoto úkolu běhové prostředí Javy (JRE). Zvolené běhové prostředí je vadné. Zvolte jinou verzi, nebo nainstalujte nové běhové prostředí a vyberte jej v nabídce %PRODUCTNAME - Předvolby - %PRODUCTNAME - Pokročilé."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME vyžaduje pro vykonání toho úkolu běhové prostředí Javy (JRE). Zvolené běhové prostředí je vadné. Zvolte jinou verzi, nebo nainstalujte nové běhové prostředí a vyberte jej v nabídce Nástroje - Možnosti - %PRODUCTNAME - Pokročilé."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Vyžadováno JRE"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Zvolte JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE je poškozeno"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Zdrojový kód"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Soubor záložek"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Obrázek"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfigurační soubor"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplikace"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Databázová tabulka"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Systémový soubor"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Dokument MS Word"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Soubor nápovědy"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML dokument"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Archivní soubor"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Protokolový soubor"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Databáze StarOffice"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Hlavní dokument StarWriter 4.0 / 5.0"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Obrázek StarOffice"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Textový soubor"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Odkaz"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Šablona StarOffice 3.0 - 5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Dokument MS Excel"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Šablona MS Excel"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Dávkový soubor"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Soubor"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Složka"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Textový dokument"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Sešit"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Prezentace"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Kresba"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML dokument"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Hlavní dokument"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Vzorec"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Databáze"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Šablona sešitu OpenOffice.org 1.0"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Šablona kresby OpenOffice.org 1.0"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Šablona prezentace OpenOffice.org 1.0"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Šablona textového dokumentu OpenOffice.org 1.0"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Lokální mechanika"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Disk"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD mechanika"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Síťové spojení"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Dokument MS PowerPoint"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Šablona MS PowerPoint"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Prezentace MS PowerPoint"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Vzorec OpenOffice.org 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Graf OpenOffice.org 1.0"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Kresba OpenOffice.org 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Sešit OpenOffice.org 1.0"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Prezentace OpenOffice.org 1.0"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Textový dokument OpenOffice.org 1.0"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Hlavní dokument OpenOffice.org 1.0"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML dokument"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Databáze OpenDocument"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Kresba OpenDocument"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Vzorec OpenDocument"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Hlavní dokument OpenDocument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Prezentace OpenDocument"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Sešit OpenDocument"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Textový dokument OpenDocument"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Šablona sešitu OpenDocument"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Šablona kresby OpenDocument"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Šablona prezentace OpenDocument"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Šablona textového dokumentu OpenDocument"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Rozšíření %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Kontrola pravopisu Hunspell"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Dělení slov Libhyphen"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Slovník synonym Mythes"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Seznam ignorovaných slov"
diff --git a/source/cs/svx/messages.po b/source/cs/svx/messages.po
index 5d398c9d410..e95f49c5114 100644
--- a/source/cs/svx/messages.po
+++ b/source/cs/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-10 19:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1559834188.000000\n"
#. 3GkZj
@@ -16332,10 +16332,10 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Zást_upné znaky"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
+msgid "Comme_nts"
msgstr "_Komentáře"
#. z68pk
diff --git a/source/cs/sw/messages.po b/source/cs/sw/messages.po
index 98885c1c7e0..faf3e9b0367 100644
--- a/source/cs/sw/messages.po
+++ b/source/cs/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-10 19:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1563223676.000000\n"
#. v3oJv
@@ -98,13 +98,13 @@ msgstr "Tabulky nemohou obsahovat nadpisy."
#: sw/inc/AccessibilityCheckStrings.hrc:29
msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
-msgstr ""
+msgstr "Zachovejte správné řazení úrovní nadpisů. Úroveň %LEVEL_CURRENT% nemůže následovat po úrovni %LEVEL_PREV%."
#. gkDzg
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr ""
+msgstr "Nepoužívejte v dokumentech písmomalbu. Případně se ujistěte, že se používá pouze pro zobrazení příkladu či jiného textu bez významu."
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -614,13 +614,13 @@ msgstr "Číslované odstavce"
#: sw/inc/inspectorproperties.hrc:31
msgctxt "RID_CHAR_DIRECTFORMAT"
msgid "Character Direct Formatting"
-msgstr ""
+msgstr "Přímé formátování znaku"
#. fYAUc
#: sw/inc/inspectorproperties.hrc:32
msgctxt "RID_PARA_DIRECTFORMAT"
msgid "Paragraph Direct Formatting"
-msgstr ""
+msgstr "Přímé formátování odstavce"
#. YUbUQ
#. Format names
@@ -5757,19 +5757,19 @@ msgstr "Vypnuto"
#: sw/inc/strings.hrc:646
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Kliknutím přepnete viditelnost osnovy"
#. 44jEc
#: sw/inc/strings.hrc:647
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
-msgstr ""
+msgstr "Kliknutím pravým tlačítkem zahrnete úrovně"
#. kDbnu
#: sw/inc/strings.hrc:648
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Kliknutím přepnete viditelnost obsahu"
#. rkD8H
#: sw/inc/strings.hrc:649
@@ -17445,86 +17445,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr "Zadejte požadovaný počet řádků v tabulce."
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr "Upozornění: Rozsáhlé tabulky mohou nepříznivě ovlivnit rychlost a kompatibilitu"
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Obecné"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "_Záhlaví"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr "Vloží do tabulky záhlaví."
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "_Opakovat řádky záhlaví na nových stránkách"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr "Zopakuje záhlaví tabulky v horní části každé následující strany, jestliže tabulka přesahuje víc než jednu stranu."
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Nerozdělovat _tabulku přes stránky"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr "Zabrání tabulce přesáhnout víc než jednu stranu."
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr "Vyberte požadovaný počet řádků pro záhlaví tabulky."
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Řádky zá_hlaví:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Možnosti"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr "Zobrazí náhled aktuálního výběru."
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr "Vyberte pro novou tabulku předdefinovaný styl."
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Styly"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr "Vloží do dokumentu tabulku. Můžete také klepnout na šipku, táhnutím určit rozměr tabulky a vložit ji klepnutím na poslední buňku."
@@ -20038,289 +20044,289 @@ msgid "Text"
msgstr "Text"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Přepnout hlavní pohled"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Přepíná mezi hlavním pohledem a normálním pohledem, jestliže je otevřen hlavní dokument."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr "Přejít na stránku"
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr "Zadejte číslo stránky a stiskněte Enter. Pomocí šipek se přesunete na další nebo předchozí stránku."
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Pohled na navigaci v obsahu"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr "Přepíná mezi zobrazením vybrané kategorie a všech kategorií v Navigátoru."
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Záhlaví"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr "Přesune kurzor do záhlaví nebo ze záhlaví do dokumentu."
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Zápatí"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr "Přesune kurzor do zápatí nebo ze zápatí do dokumentu."
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Ukotvení<->Text"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr "Přechází mezi textem poznámky pod čarou a jejím ukotvením v textu."
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Vložit připomínku"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Klepněte sem, chcete-li na aktuální pozici nastavit připomínku, můžete jich nastavit až pět. Na připomínku přejdete klepnutím na ikonu Navigace a poté v okně Navigace klepněte na ikonu Připomínka a poté na tlačítko Předchozí nebo Další."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Zobrazené úrovně nadpisu"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr "Klepněte na tuto ikonu a poté vyberte počet úrovní nadpisů, které chcete zobrazit v okně Navigátoru."
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Seznam zap/vyp"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr "Zobrazí nebo skryje seznam v Navigátoru."
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "O úroveň výše"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Zvýší úroveň osnovy vybraného nadpisu a jemu podřízených nadpisů o jednu. Chcete-li zvýšit úroveň osnovy pouze u vybraného nadpisu, podržte Ctrl a poté klepněte na tuto ikonu."
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "O úroveň níže"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Sníží úroveň osnovy vybraného nadpisu a jemu podřízených nadpisů o jednu. Chcete-li snížit úroveň osnovy pouze u vybraného nadpisu, podržte Ctrl a poté klepněte na tuto ikonu."
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Kapitolu o úroveň výše"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Přesune vybraný nadpis a odpovídající text v Navigátoru i v dokumentu o jednu pozici výše. Chcete-li přesunout pouze nadpis bez textu, podržte Ctrl a poté klepněte na tuto ikonu."
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Kapitolu o úroveň níže"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Přesune vybraný nadpis a odpovídající text v Navigátoru i v dokumentu o jednu pozici níže. Chcete-li přesunout pouze nadpis bez textu, podržte Ctrl a poté klepněte na tuto ikonu."
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Způsob přetáhnutí"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr "Nastavuje možnosti přetahování položek z Navigátoru do dokumentu, např. jako hypertextový odkaz. Klepněte na tuto ikonu a poté vyberte požadovanou možnost."
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Dokument"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Aktivní okno"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Přepnout hlavní pohled"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Přepíná mezi hlavním pohledem a normálním pohledem, jestliže je otevřen hlavní dokument."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Upravit"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr "Upraví obsah komponenty označené v Navigátoru. Je-li vybrán soubor, bude otevřen pro úpravy. Je-li vybrán rejstřík, otevře se dialogové okno Rejstřík. "
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Aktualizovat"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Klepněte a vyberte obsah, který chcete aktualizovat."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Vložit"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Vloží do hlavního dokumentu soubor, rejstřík nebo nový dokument."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Uložit také obsah"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr "Uloží do hlavního dokumentu také obsah připojených souborů. To zaručuje, že je obsah k dispozici, i když nejsou připojené soubory přístupné."
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Přesunout nahoru"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr "Posune výběr v Navigátoru o jednu pozici výše."
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Přesunout dolů"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr "Posune výběr v Navigátoru o jednu pozici níže."
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Výběr"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Rejstříky"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Odkazy"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Vše"
@@ -23690,7 +23696,7 @@ msgstr "Stejný obsah:"
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:95
msgctxt "pagefooterpanel|footertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Okraje:"
#. xepvQ
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:107
@@ -23780,7 +23786,7 @@ msgstr "Stejný obsah:"
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:95
msgctxt "pageheaderpanel|headertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Okraje:"
#. PAGRJ
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:107
diff --git a/source/cy/cui/messages.po b/source/cy/cui/messages.po
index 877375f13a3..8ac4c8a592a 100644
--- a/source/cy/cui/messages.po
+++ b/source/cy/cui/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-11 20:35+0000\n"
+"PO-Revision-Date: 2020-11-17 20:35+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/cy/>\n"
"Language: cy\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1565800847.000000\n"
#. GyY9M
@@ -3401,7 +3401,7 @@ msgstr "Methu addasu neu ddileu arddull gell cyfaddas? Gwiriwch bob dalen, dylai
#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Angen i chi lenwi rhes? Dewiswch yr ystod celloedd a'r Ddalen ▸ Llanw Celloedd ▸ Llanw Cyfres a dewis rhwng Llinol, Twf, Dyddiad ac AwtoLanw."
#. BiSJM
#. local help missing
@@ -3474,7 +3474,7 @@ msgstr "Yn datblygu hidlwyr XSLT ac xml newydd?"
#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General."
-msgstr ""
+msgstr "Pwyswch Shift+F1 i weld unrhyw gynghorion estynedig mewn blychau deialog, pan fydd \"Cynghorion Estynedig \" wedi'u galluogi yn Offer ▸ Dewisiadau ▸ %PRODUCTNAME ▸ Cyffredinol."
#. hsZPg
#: cui/inc/tipoftheday.hrc:274
@@ -5630,7 +5630,7 @@ msgstr "_Defnyddiwr diffiniedig:"
#: cui/uiconfig/ui/borderpage.ui:98
msgctxt "borderpage|userdefft"
msgid "Click edge or corner to cycle through three states: set, unchanged, remove."
-msgstr ""
+msgstr "Cliciwch ar ymyl neu gornel i gylchu drwy dri chyflwr: gosod, heb ei newid, tynnu."
#. sRXeg
#: cui/uiconfig/ui/borderpage.ui:111
@@ -5732,7 +5732,7 @@ msgstr "_Pellter:"
#: cui/uiconfig/ui/borderpage.ui:547
msgctxt "borderpage|distanceft"
msgid "Width of shadow"
-msgstr ""
+msgstr "Lled cysgod"
#. gEF6E
#: cui/uiconfig/ui/borderpage.ui:572
diff --git a/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po b/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
index 46c7cbfc356..6c8db623c5a 100644
--- a/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-04 20:47+0000\n"
+"PO-Revision-Date: 2020-11-17 20:36+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/cy/>\n"
"Language: cy\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1565779480.000000\n"
#. W5ukN
@@ -13574,7 +13574,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Regular Triangle"
-msgstr ""
+msgstr "Triongl Rheolaidd"
#. BUJ28
#: Effects.xcu
@@ -29886,7 +29886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show ~Tracked Changes"
-msgstr ""
+msgstr "Dangos ~Olrhain Newidiadau"
#. sMgCx
#: WriterCommands.xcu
diff --git a/source/cy/sc/messages.po b/source/cy/sc/messages.po
index 64d6e89121d..31611e1c6d7 100644
--- a/source/cy/sc/messages.po
+++ b/source/cy/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-03 11:57+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-19 20:36+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/cy/>\n"
"Language: cy\n"
@@ -1469,7 +1469,7 @@ msgstr "Mewnforion dif"
#: sc/inc/globstr.hrc:272
msgctxt "STR_STYLENAME_STANDARD"
msgid "Default"
-msgstr ""
+msgstr "Rhagosodiad"
#. TG9pD
#: sc/inc/globstr.hrc:273
@@ -14683,7 +14683,7 @@ msgstr "Canlyniad y swyddogaeth os yw'r prawf yn TRUE."
#: sc/inc/scfuncs.hrc:3606
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Compares expression against list of value/result pairs, and returns result for first value that matches the expression. If expression does not match any value, a default result is returned, if it is placed as final item in parameter list without a value."
-msgstr ""
+msgstr "Yn cymharu mynegiad yn erbyn rhestr o barau gwerth/canlyniad ac yn dychwelyd canlyniad y gwerth cyntaf sy'n cyfateb i'r mynegiad. Os nad yw'r mynegiad yn cyfateb i unrhyw werth, mae'r canlyniad rhagosodedig yn cael ei ddychwelyd, os yw'n cael ei osod fel eitem terfynol mewn rhestr paramedrau heb werth."
#. PneN8
#: sc/inc/scfuncs.hrc:3607
@@ -14695,7 +14695,7 @@ msgstr "Expression"
#: sc/inc/scfuncs.hrc:3608
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Value to be compared against value1…valueN (N ≤ 127)"
-msgstr ""
+msgstr "Gwerth i'w gymharu â value1…valueN (N ≤ 127)"
#. 9wcvj
#: sc/inc/scfuncs.hrc:3609
@@ -14707,7 +14707,7 @@ msgstr "Gwerth"
#: sc/inc/scfuncs.hrc:3610
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Value to compare against expression. If no result is given, then value is returned as default result."
-msgstr ""
+msgstr "Gwerth i'w gymharu â mynegiad. Os na roir canlyniad, bydd y gwerth yn cael ei ddychwelyd fel canlyniad rhagosodedig."
#. dsARv
#: sc/inc/scfuncs.hrc:3611
@@ -25214,13 +25214,13 @@ msgstr "Acen 3"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2653
msgctxt "notebookbar_groupedbar_full|Header1"
msgid "Heading 1"
-msgstr ""
+msgstr "Pennawd 1"
#. 6Ej4G
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2661
msgctxt "notebookbar_groupedbar_full|Header2"
msgid "Heading 2"
-msgstr ""
+msgstr "Pennawd 2"
#. sqE94
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2675
@@ -28624,38 +28624,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr "Yn nodi, pan fyddwch chi'n gludo celloedd o'r clipfwrdd i ystod celloedd nad yw'n wag, mae rhybudd yn ymddangos."
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Defnyddio metrics argraffydd ar gyfer fformatio testun"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "Yn nodi bod metrigau argraffydd yn cael eu defnyddio i'w hargraffu a hefyd ar gyfer fformatio'r hyn sy'n cael ei ddangos ar y sgrin."
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Amlygu'r _dewis ym mhenynnau colofn/rhes"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr "Yn nodi a ddylid tynnu sylw at benawdau colofnau a rhesi yn y colofnau neu'r rhesi a ddewiswyd."
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Diweddaru cyfeiriadau wrth drefnu ystod o gelloedd"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Gosodiadau Mewnbwn"
diff --git a/source/cy/sfx2/messages.po b/source/cy/sfx2/messages.po
index 18413b2e75f..144a10123b7 100644
--- a/source/cy/sfx2/messages.po
+++ b/source/cy/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-11-03 11:56+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/cy/>\n"
@@ -1653,286 +1653,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Cau'r Paen"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Doc"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Dad-ddocio"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Rhagor o Ddewis"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Cau'r Bar Ochr"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Gosodiadau'r Bar Ochr"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Cyfaddasu"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Adfer y Rhagosodiad"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Cau'r Bar Ochr"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Cwch Gwenyn"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Cromlin Las"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Cynlluniau Glasbrint"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Glas Llachar"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Coch Clasurol"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Canolbwynt"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Aderyn y Goedwig"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Argraff"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Ysbrydoliaeth"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Goleuadau"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Gwyrdd Dwfn"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Glas y Nos"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Darlun o Natur"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Pensil"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portffolio"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Cynnydd"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Machlud Haul"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Hynafol"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Llachar"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Ail-ddechrau"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Rhagosodiad"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Llythyr busnes modern sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Llythyr busnes modern serif"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Cerdyn busnes gyda logo"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Syml"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Tynnu"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Clirio Pob Un"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Hyd cyfrinair"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Mae'r cyfrinair rydych wedi ei gynnig yn achosi anawsterau rhyngweithio. Rhowch gyfrinair sy'n llai na 52 did neu hirach na 55 did."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-cliciwch i agor dolen: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Cliciwch i agor dolen: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(yn cael ei ddefnyddio gan: %STYLELIST)"
@@ -4163,6 +4127,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Dileu..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/cy/starmath/messages.po b/source/cy/starmath/messages.po
index cfa13d35b33..6ae223e102a 100644
--- a/source/cy/starmath/messages.po
+++ b/source/cy/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-02 14:42+0000\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"PO-Revision-Date: 2020-11-17 20:36+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/cy/>\n"
"Language: cy\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "neu"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Arwydd +"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Arwydd -"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Arwydd +-"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Arwydd -+"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "NOT Boole"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Adiad +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Tynnu -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Lluosogi (Dot)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Lluosiad (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Lluosiad (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Rhannu (/)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Rhannu (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Rhannu (Ffracsiwn)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
-msgstr ""
+msgstr "Ffracsiwn"
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Slaes Cylchog"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Dot Cylchog"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Minws Cylchog"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Plws Cylchog"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Cynnyrch Tensor"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "AND Boole"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "OR Boole"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Yn Hafal"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Nid Yw'n Hafal"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Yn Llai Na"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Yn Fwy Na"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Yn Llai na Neu Hafal â"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Yn Fwy na Neu Hafal a"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Yn Llai na neu Hafal â"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Mwy na Neu Hafal a"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Llawer Llai Na"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Llawer Mwy Na"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Wedi ei Ddiffinio Fel"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Yn Gyfath I"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Tua Hafal"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Yn Debyg I"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Yn Debyg Neu Hafal â"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Yn Gyfranneddol I"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Yn Orthogonal I"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Yn Baralel I"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Tuag At"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Yn Cyfateb i (Chwith)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Yn Cyfateb i (De)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "O Fewn"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Nid o Fewn"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Perchenogi"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Unedig"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Croestoriad"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Gwahaniaeth"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
-msgstr ""
+msgstr "Set Cyniferydd"
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Is-set"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Is -set Neu Hafal â"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Uwch Set"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Uwchset Neu Hafal â"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Is-set"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Is -set Neu Hafal â"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Nid Uwch Set"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Uwchset Neu Hafal â"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr "Swyddogaeth gyffredinol"
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Gwerth Absoliwt"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Ffactoraidd"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Ail Isradd"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "Isradd N"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Swyddogaeth Esbonyddol"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Swyddogaeth Esbonyddol"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Logarithm Naturiol"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logarithm"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sin"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Cosin"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangiad"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Cotangiad"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arcsin"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arccosine"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arctangiad"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arccotangiad"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Sin Hyperbolig"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Sosin Hyperbolig"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Tangiad Hyperbolig"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Cotangiad Hyperbolig"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Ardal Sin Hyperblig"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Ardal Cosin Hyperbolig"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Ardal Tangiad Hyperbolig"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Ardal Cotangiad Hyperbolig"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr "Gweithredydd cyffredinol"
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr "Gweithredydd cyffredinol Is-ysgrif Gwaelod"
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr "Gweithredydd cyffredinol Is-ysgrif Brig"
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr "Gweithredydd cyffredinol Is/Uwch ysgrif"
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Swm"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Isysgrif Gwaelod Swm"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Uwchysgrif Brig Swm"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Sgript Swm Uwch/Is"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Cynnyrch"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Isysgrif Gwaelod Cynnyrch"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Uwchysgrif Brig Cynnyrch"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Sbripr cynnych Uwch/Is"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Cydgynnyrch"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Isysgrif Gwaelod Cydgynnyrch"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Uwchysgrif Brig Cydgynnyrch"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Cydgynnyrch sgript Uwch/Is"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Limes"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Isysgrif Gwaelod Limes"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Uwchysgrif Brig Limes"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Sgript Limes Uwch/Is"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Cyfyngu'r Israddol"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Cyfyngu Gwaelod Isysgrif Israddol"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Cyfyngu Brig Uwchysgrif Israddol"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Cyfyngu sgript Israddol Uwch/Is"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Cyfyngu Uwchraddol"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Cyfyngu Gwaelod Uwchysgrif Uwchraddol"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Cyfyngu Brig Uwchysgrif Uwchraddol"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Cyfyngu sgript Uwchraddol Uwch/Is"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Yn Bodoli"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Ddim Yn Bodoli"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Ar bopeth"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Cyfannol"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Isysgrif Gwaelod Integrol"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Uwchysgrif Brig Integrol"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Sgript integrol Uwch/Is"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Integrol Dwbl"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Integrol Isysgrif Dwbl Gwaelod"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Integryn Dwbl Isysgrif Brig"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Sgript Uwch/IsIntegrol Dwbl"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Integrol Tryphlyg"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Integryn Tryphlyg Isysgrif Gwaelod"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Integryn Tryphlyg Isysgrif Brig"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Sgript Uwch/IsIntegrol Triphlyg"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Integrol Cromlin"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Integrol Cromlin Isysgrif Gwaelod"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Integrol Cromlin Isysgrif Gwaelod"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Sgript Uwch/Is Integrol Cromlin"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Integrol Cromlin Dwbl"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Integrol Cromlin Dwbl Isysgrif Gwaelod"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Integryn Cromlin Dwbl Isysgrif Brig"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Sgript Uwch/Is Integrol Cromlin Dwbl"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Integrol Cromlin Tryphlyg"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Integrol Cromlin Tryphlyg Isysgrif Gwaelod"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Integrol Cromlin Tryphlyg Isysgrif Brig"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Sgript Uwch/Is Integrol Cromlin Triphlyg"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Acen Lem"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Llinell Uwchlaw"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Brif"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Acen Grom Gwrth-droi"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Cylch"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Dot"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Dot Dwbl"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Dot Tryphlyg"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Acen Drom"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Acen grom"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tilde"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Saeth Fector"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Tryfer"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "I'r Linell Islaw"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Llinell Drosodd"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Llinell Drwy"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Tryloyw"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Ffont Drom"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Ffont Italig"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Newid maint"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Newid Ffont"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Lliw Du"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Lliw Glas"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Lliw Gwyrdd"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Lliw Coch"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
-msgstr ""
+msgstr "Lliw Glas"
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
-msgstr ""
+msgstr "Lliw Fuchsia"
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Lliw Llwyd"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Lliw Leim"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Lliw Marŵn"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Lliw Glas Tywyll"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Lliw Olewydden"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Lliw Porffor"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Lliw Arian"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Lliw Glaswyrdd"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Lliw Melyn"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "RGB lliw"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
-msgstr ""
+msgstr "RGB lliw"
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
+msgstr "Hecsadegol lliw"
+
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
msgstr ""
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Bracedi Grŵp"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Bracedi Crwn"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Bracedi Sgwâr"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Bracedi Sgwâr Dwbl"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Braces"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Bracedi Onglog"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Cell Uchaf"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Llawr"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Llinellau Sengl"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Llinellau Dwbl"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Bracedi Gweithredydd"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Bracedi Crwn (Graddadwy)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Bracedi Sgwâr (Graddadwy)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Bracedi Sgwâr Dwbl (Graddadwy)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Braces (Graddadwy)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Bracedi Onglog (Graddadwy)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Nenfwd (Graddadwy)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Llawr (Graddadwy)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Llinellau Sengl (Graddadwy)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Llinellau Dwbl (Graddadwy)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Bracedi Gweithredydd (Graddadwy)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Gwerthuswyd ar"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Braces Brig (Graddadwy)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Braces Gwaelod (Graddadwy)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
-msgstr ""
+msgstr "Enrhifo"
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
-msgstr ""
+msgstr "Enrhifo Gwaelod Isysgrif"
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
-msgstr ""
+msgstr "Enrhifo Brig Isysgrif"
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
-msgstr ""
+msgstr "Enrhifo Is / Uwch ysgrif"
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Isysgrif De"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Pŵer"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Isysgrif Chwith"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Uwchysgrif Chwith"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Isysgrif Gwaelod"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Uwchysgrif Brig"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Bwlch Bach"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Gwag"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Llinell Newydd"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Stac Fertigol (2 Elfen)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Stac Fertigol"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Stac Matrics"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Alinio i'r Chwith"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Alinio'r Canol"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Alinio De"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Aleph"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Set Wag"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Rhan Real"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Rhan Dychmygol"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Anfeidredd"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Rhannol"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr "Trawsffurfio laplace"
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr "Trawsffurfio Fourier"
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Dotiau yn y Canol"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Dotiau i'r Brig"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Dotiau i'r Gwaelod"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Dotiau ar y Gwaelod"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Dotiau Fertigol"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Cydgadwyno"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Rhannu (slaes lydan)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Rhannu (slaes lydan)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Rhannu"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Nid yw'n Rhannu"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Saeth Ddwbl Chwith"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Saeth Ddwbl Chwith a De"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Saeth Ddwbl De"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Set Rhifau Naturiol"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Set Cyfanrifau"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Set o Rifau Rhesymol"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Set Rhifau Real"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Set Rhifau Cymhleth"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Acen Grom Fawr"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Tilde Mawr"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Saeth Fector Fawr"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Tryfer Mawr"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "Bar h"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Bar Lambda"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Saeth Chwith"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Saeth Dde"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Saeth i Fyny"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Saeth i Lawr"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Dim bwlch"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Rhagflaenu"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Rhagflaenu neu gydradd â"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Rhagflaenu neu gydradd â"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Olynu"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Olynu neu gydradd a"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Olynu neu gydradd â"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Ddim yn rhagflaenu"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Dim yn olynu"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Gweithredydd Unaidd/Deuaidd"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Cydberthynas"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Set Gweithredyddion"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Swyddogaethau"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Gweithredyddion"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Priodoleddau"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Bracedi"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Fformatau"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Eraill"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Esiamplau"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Cylchedd"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Cyfatebedd màs-egni"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Theorem pythagoraidd"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
-msgstr ""
+msgstr "Cyfres Taylor"
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Dosbarthiad Gaussaidd"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
-msgstr ""
+msgstr "Hafaliad Euler-Lagrange"
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
-msgstr ""
+msgstr "Theorem calcwlws sylfaenol"
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
-msgstr ""
+msgstr "Hafaliad caos"
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
-msgstr ""
+msgstr "Hunaniaeth Euler"
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
-msgstr ""
+msgstr "Ail gyfraith Newton"
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
-msgstr ""
+msgstr "perthnasedd cyffredinol"
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
-msgstr ""
+msgstr "perthnasedd arbennigol"
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Safonol"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Italig"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Trwm"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "du"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "glas"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "gwyrdd"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "coch"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
-msgstr ""
+msgstr "acwa"
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
-msgstr ""
+msgstr "fuchsia"
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "llwyd"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "leim"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "marŵn"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "glas tywyll"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "gwyrdd olewydd"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "porffor"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "arian"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "gwyrddlas"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "melyn"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
-msgstr ""
+msgstr "rgba"
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
-msgstr ""
+msgstr "hecs"
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "cuddio"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "maint"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "ffont"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "chwith"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "canoli"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "de"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Gorchmynion"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Fformiwla"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Cadw dogfen..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Fformiwla %PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Nod annisgwyl"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Tocyn annisgwyl"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Disgwyl '{'"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Disgwyl '}'"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Disgwyl '('"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Disgwyl ')'"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Nid yw'r symbolau de a chwith yn cyd-fynd"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Yn disgwyl 'fixed', 'sans', or 'serif'"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' yn cael ei ddilyn gan docyn annisgwyl"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Nid yw alinio dwbl yn cael ei ganiatáu"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Nid yw is/uwchsgriptiau yn cael eu caniatáu"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
-msgstr ""
+msgstr "Y rhif disgwyliedig"
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Disgwyl '#'"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Angen lliw"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "disgwyl 'RIGHT'"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Cynnwys"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Teitl"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Testun ~fformiwla"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "~Borderi"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Maint"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Maint ~gwreiddiol"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "­Ffitio i'r ~dudalen"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Graddio"
diff --git a/source/cy/svtools/messages.po b/source/cy/svtools/messages.po
index 960c83ec993..062c9c9699d 100644
--- a/source/cy/svtools/messages.po
+++ b/source/cy/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-04 20:47+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/cy/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Dadwneud: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Ail-wneud: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "A~iladrodd: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Testun difformat"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Testun heb ei fformatio [TSV-Calc]"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Delwedd Didfap (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Meta ffeil Rhyngwyneb Dyfais Graffigol (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Fformatio testun cyfoethog (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Fformatio testun cyfoethog (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Fformat lluniadu %PRODUCTNAME"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Animeiddio/didfap Starview (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Statws Gwybodaeth o Gysylltiad Mewnol Svx"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME Link (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Nod Tudalen Netscape"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Fformat gweinydd Star"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Fformat gwrthrych Star"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Gwrthrych rhaglennig"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Gwrthrych ategyn"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Gwrthrych StarWriter 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Gwrthrych StarWriter 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Gwrthrych StarWriter 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Gwrthrych StarWriter/Web 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Gwrthrych StarWriter/Web 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Gwrthrych StarWriter/Master 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Gwrthrych StarWriter/Master 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Gwrthrych StarDraw"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Gwrthrych StarDraw 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Gwrthrych StarImpress 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Gwrthrych StarDraw 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Gwrthrych StarCalc"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Gwrthrych StarCalc 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Gwrthrych StarCalc 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Gwrthrych StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Gwrthrych StarChart 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Gwrthrych StarChart 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Gwrthrych StarImage"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Gwrthrych StarImage 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Gwrthrych StarImage 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Gwrthrych StarMath"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Gwrthrych StarMath 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Gwrthrych StarMath 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Gwrthrych StarObject Paint"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE link)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Gwrthrych Microsoft Word"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Gwrthrych StarFrameSet"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Gwrthrych dogfen Swyddfa"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Nodiadau gwybodaeth dogfen"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Dogfen sfx"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Gwrthrych StarChart 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Gwrthrych graffig"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Gwrthrych Writer OpenOffice.org 1.0"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Gwrthrych Writer OpenOffice.org 1.0"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Prif Wrthrych/Dogfen OpenOffice.org 1.0"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Gwrthrych Lluniadu OpenOffice.org 1.0"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Gwrthrych Impress OpenOffice.org 1.0"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Gwrthrych Calc OpenOffice.org 1.0"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Gwrthtych Siart OpenOffice.org 1.0"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Gwrthrych Math Adroddiad OpenOffice.org 1.0"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Metaffeil Windows"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Gwrthrych ffynhonnell data"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabl ffynhonnell data"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Ymholiad SQL"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Deialog OpenOffice.org 1.0"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Cysylltiad"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Fformat HTML heb sylwadau"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Methu mewnosod gwrthrych %."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Methu mewnosod gwrthrych o ffeil %."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Gwrthrychau eraill"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Ffynhonnell anhysbys"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Beitiau"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1234 +501,1234 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alffaniwmerig"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Set nod"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Geiriadur"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Trawiad"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Llyfr ffôn"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Seinegol (alffaniwmerig gyntaf)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Seinegol (alffaniwmerig olaf)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alffaniwmerig"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Geiriadur"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Trawiad"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Seinegol (alffaniwmerig gyntaf, grwpio yn ôl sillaf)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Seinegol (alffaniwmerig gyntaf, grwpio yn ôl cytseiniaid)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Seinegol (alffaniwmerig olaf, grwpio yn ôl sillafau)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Seinegol (alffaniwmerig gyntaf, grwpio yn ôl cytseiniaid)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Ysgafn"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Italig Ysgafn"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Arferol"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Italig"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Trwm"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Italig Trwm"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Du"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Italig Du"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Llyfr"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Trwm Arosgo"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Cywasgedig"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Cywasgedig Trwm"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Italig Trwm Cywasgedig"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Arosgo Trwm Cywasgedig"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Italig Cywasgedig"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Arosgo Cywasgedig"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Ysgafn Iawn"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Italig Ysgafn Iawn"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Arosgo"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Hanner Trwm"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Italig Hanner Trwm"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Bydd yr un ffont yn cael ei ddefnyddio yn eich argraffydd a'ch sgrin."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Dyma ffont yr argraffydd. Efallai bydd y ddelwedd ar y sgrin yn wahanol."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Bydd arddull y ffont yn cael ei efelychu neu bydd yr arddull ffont agosaf yn cael ei ddefnyddio."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Nid yw'r ffont wedi ei osod. Bydd yr agosaf yn cael ei ddefnyddio."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Symud i Cartref"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Symud i'r Chwith"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Symud i'r Dde"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Symud i'r Diwedd"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Ychwanegu"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Mesurydd Llorweddol"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Mesurydd Fertigol"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Trothwy 1 did"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Diddrwyd 1 did"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Graddlwyd 4 did"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 did lliw"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Graddlwyd 8 did"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 did lliw"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Gwir liw 24 did"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Mae'r ddelwedd angen %1 KB o gof."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Mae'r ddelwedd angen tua %1 KB o gof, mae'r ffeil yn %2 KB o faint."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Maint ffeil yw %1 KB."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "gwesteiwr"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "porth"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "CMIS arall"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Parod"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Oedi"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Disgwyl dileu"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Prysur"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Cychwyn"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Disgwyl"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Cynhesu"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Prosesu"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Argraffu"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "All-lein"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Gwall"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Gweinyddwr anhysbys"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Tagfa papur"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Dim digon o bapur"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Bwydo gyda llaw"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problem papur"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O'n weithredol"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Bin allbwn yn llawn"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Toner yn isel"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Dim toner"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Dileu tudalen"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Defnyddio ymyrraeth os oes angen"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Dim digon o gof"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Clawr ar agor"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Modd arbed ynni"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Argraffydd rhagosodedig"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dogfen"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<dim>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Cwmni"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Adran"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Enw cyntaf"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Enw olaf"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Stryd"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Gwlad"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Cod Post/ZIP"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Tref/Dinas"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Teitl"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Safle"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Ffurflen Cyfeiriad"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Llythrennau Blaen"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Cyfarchion i gloi"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Ffôn Cartref"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Ffôn Gwaith"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Ffacs"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-bost"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nodyn"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Defnyddiwr 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Defnyddiwr 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Defnyddiwr 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Defnyddiwr 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Enw"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Sir/Talaith"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Ffôn Swyddfa"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Swnyn"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Symudol"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Ffôn Arall"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendr"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Gwahoddiad"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "Mae %PRODUCTNAME angen Java runtime environment (JRE) i gyflawni'r dasg. Gosodwch JRE ac ailgychwyn %PRODUCTNAME. %FAQLINK"
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "Mae %PRODUCTNAME angen Java runtime environment (JRE) %BITNESS-bit i gyflawni'r dasg. Gosodwch JRE ac ailgychwyn %PRODUCTNAME. %FAQLINK"
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr "Mae %PRODUCTNAME angen Java Development Kit (JDK), Oracle ar Mac OS X 10.10 neu well er mwyn cyflawni'r dasg yma. Gosodwch y rhain ac ailgychwyn %PRODUCTNAME. %FAQLINK"
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Mae ffurfweddiad %PRODUCTNAME wedi newid. O dan %PRODUCTNAME - Dewisiadau - %PRODUCTNAME - Uwch, dewiswch yr amgylchedd rhedeg Java rydych am i %PRODUCTNAME ei ddefnyddio."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Mae ffurfweddiad %PRODUCTNAME wedi newid. O dan Offer - Dewisiadau - %PRODUCTNAME - Uwch, dewiswch yr amgylchedd rhedeg Java rydych am i %PRODUCTNAME ei ddefnyddio."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "Mae angen amgylchedd rhedeg Java (JRE) ar %PRODUCTNAME i gyflawni hyn. Mae'r JRE yma'n ddiffygiol. Dewiswch fersiwn arall neu osod JRE newydd a'i ddewis o dan %PRODUCTNAME - Dewisiadau - %PRODUCTNAME - Uwch."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "Mae angen amgylchedd rhedeg Java (JRE) ar %PRODUCTNAME i gyflawni hyn. Mae'r JRE yma'n ddiffygiol. Dewiswch fersiwn arall neu osod JRE newydd a'i ddewis o dan Offer - Dewisiadau - %PRODUCTNAME - Uwch."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Mae angen JRE"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Dewiswch JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE Diffygiol"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Cod ffynhonnell"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Ffeil nod tudalen"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Graffigau"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Ffeil ffurfweddiad"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Rhaglen"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Cronfa Ddata"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Ffeil system"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Dogfen MS Word"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Ffeil Cymorth"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Dogfen HTML"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Ffeil archif"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Ffeil cofnod"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Cronfa Ddata StarOffice"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Prif Ddogfen StarWriter 4.0 / 5.0"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Delwedd StarOffice"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Ffeil testun"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Cysylltiad"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Templed StarOffice 3.0 - 5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Dogfen MS Excel"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Templed MS Excel"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Ffeil swp"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Ffeil"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Ffolder"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Dogfen Testun"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Taenlen"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Cyflwyniad"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Lluniadu"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Dogfen HTML"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Prif ddogfen"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Fformiwla"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Cronfa Ddata"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Templed Taenlen OpenOffice.org 1.0"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Templed Lluniadu OpenOffice.org 1.0"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Templed Cyflwyniad OpenOffice.org 1.0"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Templed Dogfen Testun OpenOffice.org 1.0"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Disg lleol"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Gyrrwr disg"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Gyrrwr CD-ROM"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Cysylltiad rhwydwaith"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Dogfen MS PowerPoint"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Templed MS PowerPoint"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Sioe MS PowerPoint"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Fformiwla OpenOffice.org 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Siart OpenOffice.org 1.0"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Lluniadu OpenOffice.org 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Taenlen OpenOffice.org 1.0"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Cyflwyniad OpenOffice.org 1.0"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Dogfen Testun OpenOffice.org 1.0"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Prif Ddogfen OpenOffice.org 1.0"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Dogfen MathML"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Cronfa Ddata OpenDocument"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Lluniadu OpenDocument"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Fformiwla OpenDocument"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Dogfen OpenDocument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Cyflwyniad OpenDocument"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Taenlen OpenDocument"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Testun OpenDocument"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Templed Taenlen OpenDocument"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Templed Lluniadu OpenDocument"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Templed Cyflwyniad OpenDocument"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Templed Testun OpenDocument"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Estyniad %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Gwirydd Sillafu Hunspell"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Cysylltnodwr Libhyphen"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Thesawrws MyThes"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Rhestr o Eiriau Wedi eu Hanwybyddu"
diff --git a/source/cy/svx/messages.po b/source/cy/svx/messages.po
index 668991426e6..27ce8be2bf5 100644
--- a/source/cy/svx/messages.po
+++ b/source/cy/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-04 20:47+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/cy/>\n"
@@ -16332,11 +16332,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Cardiau _Gwyllt"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_Sylwadau"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/cy/sw/messages.po b/source/cy/sw/messages.po
index ebeef22aeb9..7d07fd98351 100644
--- a/source/cy/sw/messages.po
+++ b/source/cy/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-11 20:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-19 20:36+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/cy/>\n"
"Language: cy\n"
@@ -98,13 +98,13 @@ msgstr "Rhaid i dablau beidio â chynnwys penawdau."
#: sw/inc/AccessibilityCheckStrings.hrc:29
msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
-msgstr ""
+msgstr "Cadw lefleau penawdau mewn trefn. Dylai lefel pennawd %LEVEL_CURRENT% ddim mynd ar ôl %LEVEL_PREV%."
#. gkDzg
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr ""
+msgstr "Osgowch fontworks yn eich dogfen. Gwnewch yn siŵr eich bod yn ei ddefnyddio er mwyn dangos sampl neu ddarn o destun diystyr."
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -614,13 +614,13 @@ msgstr "Paragraffau Rhifedig"
#: sw/inc/inspectorproperties.hrc:31
msgctxt "RID_CHAR_DIRECTFORMAT"
msgid "Character Direct Formatting"
-msgstr ""
+msgstr "Fformatio Uniongyrchol Nodau"
#. fYAUc
#: sw/inc/inspectorproperties.hrc:32
msgctxt "RID_PARA_DIRECTFORMAT"
msgid "Paragraph Direct Formatting"
-msgstr ""
+msgstr "Fformatio Uniongyrchol Paragraff"
#. YUbUQ
#. Format names
@@ -5750,19 +5750,19 @@ msgstr "I ffwrdd"
#: sw/inc/strings.hrc:646
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Clicio i doglo gwelededd cynnwys"
#. 44jEc
#: sw/inc/strings.hrc:647
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
-msgstr ""
+msgstr "clic de i gynnwys is-lefelau"
#. kDbnu
#: sw/inc/strings.hrc:648
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Clicio i doglo gwelededd cynnwys"
#. rkD8H
#: sw/inc/strings.hrc:649
@@ -17438,86 +17438,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr "Rhowch nifer y rhesi rydych eu heisiau yn y tabl."
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Cyffredinol"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "_Pennawd"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr "Yn cynnwys rhes pennyn yn y tabl."
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Ailadrodd rhesi penynnau ar dudalennau _newydd"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr "Ailadroddwch bennyn y tabl ar frig y dudalen ddilynol os yw'r tabl yn rhychwantu mwy nag un dudalen."
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Peidio _hollti tabl dros dudalennau"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr "Yn atal y tabl rhag rhychwantu mwy nag un dudalen."
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr "Dewiswch nifer y rhesi rydych am eu defnyddio ar gyfer y pennyn."
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "R_hesi Pennyn:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Dewisiadau"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr "Yn dangos rhagolwg o'r dewis cyfredol."
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr "Dewiswch arddull wedi'i ddiffinio ymlaen llaw ar gyfer y tabl newydd."
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Arddulliau"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr "Mewnosod tabl yn y ddogfen. Gallwch hefyd glicio ar y saeth, llusgo i ddewis nifer y rhesi a'r colofnau i'w cynnwys yn y tabl, ac yna cliciwch yn y gell olaf."
@@ -20031,289 +20037,289 @@ msgid "Text"
msgstr "Testun"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Newid y Golwg Meistr"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Newid rhwng prif olygfa a golygfa arferol os yw prif ddogfen ar agor."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr "Mynd i Dudalen"
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr "Rhowch rif y dudalen a gwasgwch Enter. Defnyddiwch saethau i symud i'r dudalen nesaf ymlaen neu yn ôl."
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Golwg Cynnwys Llywio"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr "Yn newid rhwng dangos pob categori yn y y Llywiwr a'r categori a ddewiswyd."
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Pennyn"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr "Symud y cyrchwr i'r pennyn, neu o'r pennyn i ardal testun y ddogfen."
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Troedyn"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr "Symud y cyrchwr i'r troedyn, neu o'r troedyn i ardal testun y ddogfen."
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Angor<->Testun"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr "Yn neidio rhwng testun y troednodyn ac angor y troednodyn."
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Gosod Atgof"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Cliciwch yma i osod nodyn atgoffa yn safle'r cyrchwr cyfredol. Gallwch ddiffinio hyd at bum nodyn atgoffa. I neidio i nodyn atgoffa, cliciwch yr eicon Llywio, yn y ffenestr Llywio cliciwch yr eicon Atgoffa, ac yna cliciwch ar y botwm Blaenorol neu Nesaf."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Dangos Lefelau Pennyn"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr "Cliciwch yr eicon hwn, ac yna dewiswch nifer y lefelau amlinell pennawd rydych am eu gweld yn ffenestr y Llywiwr."
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Blwch Rhestr Ymlaen/Diffodd"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr "Yn dangos neu'n cuddio rhestr y y Llywiwr."
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Dyrchafu Lefel"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Yn cynyddu lefel amlinellol y penynnau a ddewiswyd, a'r penynnau sy'n digwydd o dan y pennyn, fesul un. I gynyddu lefel amlinellol y pennyn a ddewiswyd yn unig, pwyswch Ctrl, ac yna cliciwch yr eicon hwn."
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Darostwng Lefel"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Yn cynyddu lefel amlinellol y penynnau a ddewiswyd, a'r penynnau sy'n digwydd o dan y pennyn, fesul un. I gynyddu lefel amlinellol y pennyn a ddewiswyd yn unig, pwyswch Ctrl, ac yna cliciwch yr eicon hwn."
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Dyrchafu Pennod"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Symud y pennawd a ddewiswyd, a'r testun o dan y pennawd, i fyny un safle pennawd yn y Llywiwr ac yn y ddogfen. I symud y pennawd a ddewiswyd yn unig ac nid y testun sy'n gysylltiedig â'r pennawd, pwyswch Ctrl, ac yna cliciwch yr eicon hwn."
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Darostwng Pennod"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Symud y pennawd a ddewiswyd, a'r testun o dan y pennawd, i lawr un safle pennawd yn y y Llywiwr ac yn y ddogfen. I symud y pennawd a ddewiswyd yn unig ac nid y testun sy'n gysylltiedig â'r pennawd, daliwch Ctrl i lawr, ac yna cliciwch yr eicon hwn."
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Modd Llusgo"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr "Yn gosod y dewisiadau llusgo a gollwng ar gyfer mewnosod eitemau o'r y Llywiwr i ddogfen, er enghraifft, fel dolen. Cliciwch yr eicon hwn, ac yna dewiswch y dewis rydych am ei ddefnyddio."
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Dogfen"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Ffenestr Weithredol"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Newid Golwg Meistr"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Newid rhwng prif olygfa a golygfa arferol os yw prif ddogfen ar agor."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Golygu"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr "Golygu cynnwys y gydran a ddewiswyd yn y rhestr Llywio. Os yw'r dewis yn ffeil, bydd y ffeil yn cael ei hagor i'w golygu. Os yw'r dewis yn fynegai, bydd y deialog Mynegai yn cael ei agor."
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Diweddaru"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Cliciwch a dewiswch y cynnwys rydych am ei ddiweddaru."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Mewnosod"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Mewnosod ffeil, mynegai, neu ddogfen newydd yn y brif ddogfen."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Cadw'r Cynnwys hefyd"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr "Yn cadw copi o gynnwys y ffeiliau cysylltiedig yn y brif ddogfen. Mae hyn yn sicrhau bod y cynnwys cyfredol ar gael pan nad oes modd cyrchu'r ffeiliau cysylltiedig."
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Symud i Fyny"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr "Symud y dewis i fyny un safle yn rhestr y Llywiwr."
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Symud i Lawr"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr "Yn symud y dewis i lawr un safle yn rhestr y Llywiwr."
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Dewis"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Mynegeion"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Cysylltiadau"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Y Cyfan"
@@ -23683,7 +23689,7 @@ msgstr "Yr Un Cynnwys:"
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:95
msgctxt "pagefooterpanel|footertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Ymylon:"
#. xepvQ
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:107
@@ -23773,7 +23779,7 @@ msgstr "Yr Un Cynnwys:"
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:95
msgctxt "pageheaderpanel|headertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Ymylon:"
#. PAGRJ
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:107
diff --git a/source/da/avmedia/messages.po b/source/da/avmedia/messages.po
index d1db741e0e4..f2e4ef98f19 100644
--- a/source/da/avmedia/messages.po
+++ b/source/da/avmedia/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:30+0100\n"
-"PO-Revision-Date: 2020-07-07 13:20+0000\n"
-"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
+"PO-Revision-Date: 2020-11-17 20:35+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/avmediamessages/da/>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1543439200.000000\n"
#. FaxGP
@@ -140,7 +140,7 @@ msgstr "Alle filer"
#: avmedia/inc/strings.hrc:44
msgctxt "AVMEDIA_STR_ERR_URL"
msgid "The format of the selected file is not supported."
-msgstr "Det valgte filformat er ikke understøttet."
+msgstr "Den valgte fils format understøttes ikke."
#. am3R5
#: avmedia/inc/strings.hrc:45
diff --git a/source/da/helpcontent2/source/text/scalc/01.po b/source/da/helpcontent2/source/text/scalc/01.po
index 4c93494474d..e9b3bb7cb96 100644
--- a/source/da/helpcontent2/source/text/scalc/01.po
+++ b/source/da/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2020-09-10 05:35+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/da/>\n"
@@ -56477,6 +56477,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr "Bruger regulære udtryk og indlejrede funktioner"
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/sdraw.po b/source/da/helpcontent2/source/text/sdraw.po
index 797173cfe28..7d80168e211 100644
--- a/source/da/helpcontent2/source/text/sdraw.po
+++ b/source/da/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-15 13:17+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/da/>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/00.po b/source/da/helpcontent2/source/text/shared/00.po
index cd212f5f88a..2185b8d94aa 100644
--- a/source/da/helpcontent2/source/text/shared/00.po
+++ b/source/da/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-09-10 05:35+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/da/>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "Et godt eksempel på en relationsdatabase kan være en database, som indeholder tabellerne Kunde, Indkøb og Faktura. I Fakturatabellen er der ingen aktuelle kunde- eller indkøbsdata; imidlertid indeholder tabellen referencer i form af relationelle henvisninger, eller en relation, til kunde- og indkøbstabellernes felter (for eksempel feltet kunde-ID fra kundetabellen)."
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>hold register; definition</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "Hold register"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/da/helpcontent2/source/text/shared/01.po b/source/da/helpcontent2/source/text/shared/01.po
index bd8b3f03881..eb6dce4ec99 100644
--- a/source/da/helpcontent2/source/text/shared/01.po
+++ b/source/da/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-17 17:44+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/da/>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr "For nogen dokumenttyper,du kan vælge at udskriv en brochure."
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr "Flere Indstillinger"
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr "<ahelp hid=\".\">I vinduet <emph>Flere indstillinger</emph> kan du indstille nogle flere indstillinger for det aktuelle udskrivningsjob.</ahelp>"
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9396,14 +9378,14 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "Skifter mellem hoveddokumentsvisning og normalvisning."
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Ikon</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgstr ""
#. 3Lq2G
#: 02110000.xhp
@@ -9432,14 +9414,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_EDIT\">Rediger indholdet af den komponent, der er markeret på listen i <emph>Navigator</emph>. Hvis markeringen er en fil, åbnes filen til redigering. Hvis markeringen er et indeks, åbnes dialogen <emph>Indeks.</emph></ahelp>"
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Ikon</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgstr ""
#. nRB3E
#: 02110000.xhp
@@ -9468,14 +9450,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Klik og vælg indholdet som du vil opdatere.</ahelp>"
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Ikon</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgstr ""
#. F4J5u
#: 02110000.xhp
@@ -9603,14 +9585,14 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "Du kan også indsætte filer i hoveddokumentet ved at trække en fil fra dit skrivebord og slippe den ved hoveddokumentsvisningen i Navigatoren."
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Ikon</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgstr ""
#. ijR7M
#: 02110000.xhp
@@ -9711,14 +9693,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">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>"
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Ikon</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgstr ""
#. ADEyJ
#: 02110000.xhp
@@ -9747,14 +9729,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">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."
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Ikon</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgstr ""
#. GqEUL
#: 02110000.xhp
@@ -9783,14 +9765,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Flytter markeringen en placering ned 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."
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
-msgstr "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Ikon</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgstr ""
#. DLEGF
#: 02110000.xhp
diff --git a/source/da/helpcontent2/source/text/shared/02.po b/source/da/helpcontent2/source/text/shared/02.po
index ba76b681c82..f74ab7cb0a7 100644
--- a/source/da/helpcontent2/source/text/shared/02.po
+++ b/source/da/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-17 17:44+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/da/>\n"
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr "<bookmark_value>afsnit;formindske indrykning af </bookmark_value><bookmark_value>formindske afsnitsindrykning</bookmark_value>"
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Formindsk indrykning\">Formindsk indrykning</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11059,14 +11059,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"> <caseinline select=\"WRITER\">Hvis du tidligere har forøget indrykningen for flere samtidigt markerede afsnit, kan denne kommando reducere indrykningen for alle de markerede afsnit.</caseinline> <caseinline select=\"CALC\">Celleindholdet bruger den aktuelle værdi under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cell - Alignment\"><emph>Formater - Celle - Justering</emph></link>.</caseinline> </switchinline>"
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Ikon</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr "<bookmark_value>afsnit; forøge indrykning af </bookmark_value><bookmark_value>for øge afsnitsindrykning</bookmark_value>"
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Forøg indrykning\">Forøg indrykning</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11131,14 +11131,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Hvis flere afsnit er valgt, forøges indrykningen af alle valgte afsnit. </caseinline><caseinline select=\"CALC\">Celleindholdet referer til den aktuelle værdi under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Formater - Celler - </emph> fanebladet <emph>Justering</emph></link>. </caseinline></switchinline>"
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Ikon</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/da/helpcontent2/source/text/shared/optionen.po b/source/da/helpcontent2/source/text/shared/optionen.po
index fd768d2ec04..90f0733ba11 100644
--- a/source/da/helpcontent2/source/text/shared/optionen.po
+++ b/source/da/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-04 11:35+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/da/>\n"
@@ -11860,32 +11860,32 @@ msgctxt ""
msgid "Snap"
msgstr "Fastgør"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "Til hjælpelinjer"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
-msgstr "<variable id=\"anlinie\"><ahelp hid=\".\">Hægter kanten af et trukket objekt til den nærmeste fanglinje, når du slipper musen.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
+msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "Du kan også definere denne indstilling ved at bruge ikonet <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Fastgør til hjælpelinjer</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Fastgør til hjælpelinjer</emph></link></caseinline><defaultinline><emph>Fastgør til hjælpelinjer</emph></defaultinline></switchinline>, som er tilgængelig i værktøjslinjen <emph>Indstillinger</emph> i en præsentation eller tegning."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr ""
#. eUCCJ
#: 01070300.xhp
diff --git a/source/da/helpcontent2/source/text/simpress/02.po b/source/da/helpcontent2/source/text/simpress/02.po
index 2a1fb5617c2..ad1c33ac4ea 100644
--- a/source/da/helpcontent2/source/text/simpress/02.po
+++ b/source/da/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-10 05:35+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress02/da/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1561276105.000000\n"
#. AiACn
@@ -5695,41 +5695,41 @@ msgctxt ""
msgid "Exit all groups"
msgstr "Forlad alle grupperinger"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Fastgør til hjælpelinjer"
+msgid "Snap to Snap Guides"
+msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Fastgør til hjælpelinjer</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Ikon</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Fastgør til hjælpelinjer"
+msgid "Snap to Snap Guides"
+msgstr ""
#. oXWsX
#: 13150000.xhp
diff --git a/source/da/helpcontent2/source/text/swriter.po b/source/da/helpcontent2/source/text/swriter.po
index c1ec6131337..9cf379d010a 100644
--- a/source/da/helpcontent2/source/text/swriter.po
+++ b/source/da/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-10 05:35+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/da/>\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "Venstre mod højre"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">venstre mod højre-ikon</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "Højre mod venstre"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">højre mod venstre-ikon</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/da/helpcontent2/source/text/swriter/01.po b/source/da/helpcontent2/source/text/swriter/01.po
index 62aff4d333a..166b9ecc663 100644
--- a/source/da/helpcontent2/source/text/swriter/01.po
+++ b/source/da/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-11 08:35+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/da/>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "Navigator"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Åbner dialogen <emph>Brevfletningsmodtagere</emph>.</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/swriter/guide.po b/source/da/helpcontent2/source/text/swriter/guide.po
index 93b21210d0a..d18bbefb28b 100644
--- a/source/da/helpcontent2/source/text/swriter/guide.po
+++ b/source/da/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-09-10 05:35+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/da/>\n"
@@ -7794,50 +7794,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indrykke afsnit</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr "For at ændre måleenheden, skal du vælge <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Indstillinger</item></caseinline><defaultinline><item type=\"menuitem\">Funktioner - Indstillinger</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Generelt</item>, og her vælge en anden måleenhed i området Indstillinger."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "Du kan ændre indrykningerne for det aktuelle afsnit, for alle valgte afsnit eller for en afsnitstypografi."
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "Du kan ændre indrykningerne for det aktuelle afsnit, for alle valgte afsnit eller for en afsnitstypografi."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "Vælg <item type=\"menuitem\">Formater - Afsnit - Indrykning og afstand</item> for at ændre indrykningerne for det aktuelle afsnit eller for alle valgte afsnit. Du kan også <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">definere indrykninger ved hjælp af linealen</link>."
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "Du kan også <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">definere indrykninger ved hjælp af linealen</link>. For at vise linealen skal du vælge <item type=\"menuitem\">Vis - Lineal</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "Vælg <item type=\"menuitem\">Formater - Afsnit - Indrykning og afstand</item> for at ændre indrykningerne for det aktuelle afsnit eller for alle valgte afsnit. Du kan også <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">definere indrykninger ved hjælp af linealen</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "Du kan også <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">definere indrykninger ved hjælp af linealen</link>. For at vise linealen skal du vælge <item type=\"menuitem\">Vis - Lineal</item>."
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "Højreklik på et afsnit og vælg <item type=\"menuitem\">Rediger afsnitstypografi - Indrykning og afstand</item> for at ændre indrykningerne for alle afsnit, som har det samme afsnitstypografi."
+msgid "Positioning indents"
+msgstr ""
#. qUxKq
#: indenting.xhp
@@ -7848,6 +7848,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "Indrykning bliver beregnet i forhold til venstre og højre sidemargener. Hvis du vil have afsnittet til at gå ind i sidemargenen, skal du indtaste et negativt tal."
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr "For at ændre måleenheden, skal du vælge <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Indstillinger</item></caseinline><defaultinline><item type=\"menuitem\">Funktioner - Indstillinger</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Generelt</item>, og her vælge en anden måleenhed i området Indstillinger."
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7857,6 +7866,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "Indrykningerne er forskellige med hensyn til skriveretningen. Se fx på indrykningsværdien <item type=\"menuitem\">Før tekst</item> i venstre-mod-højre sprog. Den venstre kant af afsnittet bliver indrykket i forhold til venstre sidemargen. I højre-mod-venstre sprog bliver den højre kant af afsnittet indrykket i forhold til højre sidemargen."
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7866,6 +7884,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "For en hængende indrykning skal du indtaste en positiv værdi for <item type=\"menuitem\">Før tekst</item> og en negativ værdi for <item type=\"menuitem\">Første linje</item>."
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10233,14 +10296,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "Aktivering eller deaktivering af talgenkendelse i tabeller"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>tal; automatisk genkendelse i teksttabeller</bookmark_value><bookmark_value>tabeller; talgenkendelse</bookmark_value><bookmark_value>datoer;automatisk formatering i tabeller</bookmark_value><bookmark_value>genkendelse;tal</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10269,14 +10332,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Gør et af følgende:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "Højreklik i en tabelcelle og vælg <item type=\"menuitem\">Talgenkendelse</item>. Når denne funktionalitet er slået til, vises et flueben foran kommandoen <item type=\"menuitem\">Talgenkendelse</item>."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10287,6 +10359,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr "Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Indstillinger</caseinline><defaultinline>Funktioner - Indstillinger</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Tabel</item>, og vælg eller ryd afkrydsningsfeltet <item type=\"menuitem\">Talgenkendelse</item> ."
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12213,6 +12294,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "Når du opretter et dokument, som du vil udskrive som en brochure, skal du bruge stående sideretning til siderne. Writer anvender brochurelayoutet, når du udskriver dokumentet."
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12258,50 +12357,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "Hvis din printer udskriver duplex, og fordi brochurer altid udskrives i liggende format, bør du bruge indstillingen \"duplex - kort kant\" i din printeropsætningsdialog."
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
-msgstr "Vend tilbage til dialogen <emph>Udskriv</emph> og klik på fanebladet <emph>Sidelayout</emph>."
+msgid "Return to <emph>Print</emph> dialog."
+msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
-msgstr "Vælg <emph>Brochure</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
+msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "For en printer, som automatisk skriver på begge sider af papiret, skal du angive \"Alle sider\"."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Klik på <emph>OK</emph>."
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "Hvis %PRODUCTNAME udskriver siderne i den forkerte rækkefølge, skal du åbne fanebladet <emph>Indstillinger</emph>, vælge <emph>Udskriv i omvendt rækkefølge</emph>, og så udskrive dokumentet igen."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12375,6 +12474,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">Filer - Vis udskrift</link>."
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12402,32 +12726,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Udskrivning af flere sider på et ark\">Udskrivning af flere sider på et ark</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
-msgstr "I fanebladet <emph>Sidelayout</emph> i dialogen <item type=\"menuitem\">Filer - Udskriv</item> har du mulighed for at udskrive flere sider på et ark."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
+msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
-msgstr "Vælg <emph>Filer - Udskriv</emph> og klik på fanebladet <emph>Sidelayout</emph>."
+msgid "Choose <menuitem>File - Print</menuitem>"
+msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Gør et af følgende:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13392,13 +13716,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/da/sc/messages.po b/source/da/sc/messages.po
index ae1f52b7519..af993ef021b 100644
--- a/source/da/sc/messages.po
+++ b/source/da/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-05 07:35+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/da/>\n"
@@ -28627,38 +28627,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr "Angiver at der vises en advarsel, når du indsætter noget fra klippebordet til et celleområde som ikke er tomt."
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Benyt printerens måleenheder ved tekstformattering"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "Angiver om måleenheder for udskrivning også gælder for formatering på skærmen."
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Fremhæv markering i kolonne/rækkeoverskrifter"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr "Angiver om kolonne- og rækkeoverskrifter skal fremhæves i den markerede kolonne eller række."
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Opdatér referencer ved sortering af celleområde"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Indstillinger for indtastning"
diff --git a/source/da/sfx2/messages.po b/source/da/sfx2/messages.po
index 8a141923107..f0e3a645af6 100644
--- a/source/da/sfx2/messages.po
+++ b/source/da/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-10-08 06:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/da/>\n"
@@ -1654,286 +1654,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Luk rude"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Fastgør"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Frigør"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Flere indstillinger"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Luk sidepanel"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Indstillinger for sidepanel"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Tilpasning"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Genskab standard"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Luk sidepanel"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Kraprød"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Bikube"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blå kurve"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blåtrykstegninger"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Lyseblå"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Klassisk rød"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Skovfugl"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiration"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lys"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Frodiggrøn"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Storby"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Midnatsblå"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "NaturIllustration"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Blyant"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klaver"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portefølje"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Fremgang"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Solnedgang"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Livlig"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Sammendrag"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standard"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderne"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderne forretningsbrev sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderne forretningsbrev serif"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Visitkort med logo"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Enkel"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Fjern"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Tøm alt"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Kodeordslængde"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Det kodeord, du har har indtastet giver interoperabilitets-problemer. Indtast venligst et kodeord, som er kortere end 52 bytes eller længere end 55 bytes."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-klik for at åbne hyperlink: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Klik for at åbne hyperlink: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(bruges af: %STYLELIST)"
@@ -4164,6 +4128,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Slet..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/da/starmath/messages.po b/source/da/starmath/messages.po
index b3a679dac95..a16b84033dd 100644
--- a/source/da/starmath/messages.po
+++ b/source/da/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-09-28 07:35+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/da/>\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "eller"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+ tegn"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "- tegn"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+- tegn"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "-+ tegn"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Boolsk NOT"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Tilføjelse +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Subtraktion -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Multiplikation (prik )"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Multiplikation (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Multiplikation (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Division (skråstreg)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Division (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Division (Fraktion)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Cirkulær skråstreg"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Cirkulær prik"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Cirkulær minus"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Cirkulært plus"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Tensorprodukt"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Boolsk AND"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Boolsk OR"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "er lig med"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Er ikke lig med"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "er mindre end"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "er større end"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "er mindre end eller lig med"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Er større end eller lig med"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "er mindre end eller lig med"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Er større end eller lig med"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Er meget mindre end"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Er meget større end"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Er defineret som"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "er sammenfaldende med"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "er ca. lig med"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "er lignende"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Er lignende eller lig med"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "er proportional med"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "er ortogonal med"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "er parallel med"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Mod"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Svarer til (Venstre)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Svarer til (Højre)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "er i"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "er ikke i"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Ejer"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Foreningsmængde"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Fællesmængde"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Forskel"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "~Delmængde"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Delmængde eller lig med"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Overmængde"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Overmængde eller lig med"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Ikke delmængde"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Ikke delmængde eller lig med"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Ikke overmængde"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Ikke overmængde eller lig med"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr "Generel funktion"
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Absolut værdi"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Faktoriel"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Kvadratrod"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N'te rod"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Eksponentialfunktion"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Eksponentialfunktion"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Naturlig logaritme"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logaritme"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sinus"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Cosinus"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangent"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Cotangent"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arcsinus"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arccosinus"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arctangent"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arccotangent"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Hyperbolsk sinus"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Hyperbolsk cosinus"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Hyperbolsk tangent"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Hyperbolsk cotangent"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Area hyperbolsk sinus"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Area hyperbolsk cosinus"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Area hyperbolsk tangent"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Area hyperbolsk cotangent"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr "General operatør"
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr "Generel Operatør Sænket skrift nederst"
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr "Generel operatør Hævet skrift Øverst"
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr "Generel operatør Hævet/Sænket skript"
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Sum"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Sum sænket skrift i bunden"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Sum hævet skrift øverst"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Sum hævet/sænket skrift"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Produkt"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Produkt sænket skrift i bunden"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Produkt hævet skrift øverst"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Produkt hævet/sænket skrift"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Coprodukt"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Produkt sænket skrift i bunden"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Koprodukt hævet skrift øverst"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Koprodukt hævet/sænket skrift"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Grænseværdier"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Grænseværdi sænket skrift i bunden"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Grænseværdi hævet skrift øverst"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Grænseværdier hævet/sænket skrift"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Nedre grænse"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Nedre grænse sænket skrift nederst"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Nedre grænse hævet skrift øverst"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Nedre grænse Hævet/Sænket skrift"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Øvre grænse"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Øvre grænse Sænket skrift nederst"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Øvre grænse Hævet skrift øverst"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Øvre grænse Hævet/Sænket skrift"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Der eksisterer"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Der ikke eksisterer"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "For alle"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integral"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Integral sænket skrift i bunden"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Integral hævet skrift øverst"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integral hævet/sænket skrift"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Dobbelt integral"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Dobbelt integral sænket skrift i bunden"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Dobbelt integral hævet skrift øverst"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Dobbelt integral hævet/sænket skrift"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Tre gange integral"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Tredobbelt integral sænket skrift i bunden"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Tredobbelt integral hævet skrift øverst"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Tredobbelt integral hævet/sænket skrift"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Integralkurve"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Kurveintegral sænket skrift i bunden"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Kurveintegral hævet skrift øverst"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Kurveintegral hævet/sænket skrift"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Dobbelt kurveintegral"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Dobbelt kurveintegral sænket skrift i bunden"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Dobbelt kurveintegral hævet skrift øverst"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Dobbelt kurveintegral hævet/sænket skrift"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Trippel kurveintegral"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Tredobbelt kurveintegral sænket skrift i bunden"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Tredobbelt kurveintegral hævet skrift øverst"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Tredobbelt kurveintegral hævet/sænket skrift"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Accent aigu"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Overstreg"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Breve"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Omvendt circumfleks"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Cirkel"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Prik"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Dobbelt prik"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Tredobbelt prik"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Accent grave"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Circumfleks"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tilde"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Vektorpil"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Harpun"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Understregning"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Overstregning"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Gennemstregning"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Gennemsigtig"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Fed skrift"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Kursiv skrift"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Skift størrelse"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Skift skrifttype"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Farve sort"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Farve blå"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Farve grøn"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Farve rød"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Farve Grå"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Farve Lime"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Farve Rødbrun"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Farve Marine"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Farve Oliven"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Farven violet"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Farven sølv"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Farven havgrøn"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Farve gul"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "Farve RGB"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Gruppeparentes"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Runde parenteser"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Firkantede parenteser"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Dobbelt kantede parenteser"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Parenteser"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Kantede parenteser"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Øvre loft"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Gulv"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Enkeltstreg"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "dobbeltstreger"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Operatorparentes (kantet)"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "runde parenteser (skalerbare)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "kantede parenteser (skalerbare)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Dobbelte kantede parenteser (skalerbare)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "kanter (skalerbare)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "spidse parenteser (skalerbare)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Loft (skalerbar)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Gulv (skalerbar)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Enkeltstreger (skalerbare)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "dobbeltstreger (skalerbare)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "operator parenteser (skalerbare)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Evaluer ved"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "krøllede parenteser top (skalerbare)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "krøllede parenteser bund (skalerbare)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Sænket skrift til højre"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Potens"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Sænket skrift til venstre"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Hævet skrift til venstre"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Sænket skrift i bunden"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Hævet skrift øverst"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Lille frirum"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Blank"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Ny linje"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "lodret stak (2 elementer)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "lodret stak"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Matricestablet"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Venstrejusteret"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Centreret"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Højrejusteret"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Aleph"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Tom mængde"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Reel del"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "imaginær del"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Uendelig"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Delvis"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr " Laplace transformering"
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr "FOURIER-transformation"
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "prikker i midten"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "prikker til toppen"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Prikker til bunden"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Prikker i bunden"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Prikker lodret"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Sammenføj"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Division (skråstreg)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Division (omvendt skråstreg)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Deler"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Deler ikke"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Dobbelt venstrepil"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Dobbelt venstre og højrepil"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Dobbelt højrepil"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Mængde af naturlige tal"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Mængde af heltal"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Mængde af rationelle tal"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Mængde af reelle tal"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Mængde af komplekse tal"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Stor circumfleks"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Stor tilde"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Stor vektorpil"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Stor harpun"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h bjælke"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "lambda bjælke"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Pil mod venstre"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Pil mod højre"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Pil op"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Pil ned"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Ingen afstand"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Kommer før"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Kommer før eller er lig med"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Kommer før eller svarer til"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Kommer efter"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Kommer efter eller er lig med"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Kommer efter eller svarer til"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Kommer ikke før"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Kommer ikke efter"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Unære/binære operatorer"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Relationer"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "~Mængdeoperationer"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funktioner"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operatorer"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Attributter"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Parenteser"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formater"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Andre"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Eksempler"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Omkreds"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Massenergiækvivalens"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Pythagoras' sætning"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Gauss' fordeling"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standard"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kursiv"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Fed"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "sort"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blå"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "grøn"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "rød"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "grå"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "limegrøn"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "rødbrun"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "marineblå"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olivengrøn"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "lilla"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "sølv"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "blågrøn"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "gul"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "skjul"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "størrelse"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "skrifttype"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "venstre"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centrer"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "højre"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Kommandoer"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formel"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Dokumentet gemmes..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION-formel"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "FEJL: "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Uventet tegn"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Uventet symbol"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' forventes"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' forventes"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' forventes"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' forventes"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Venstre og højre symboler stemmer ikke overens"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans', eller 'serif' forventet"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'størrelse' fulgt af et uventet tegn"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Dobbelt justering er ikke tiladt"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Dobbelt sænket/hævet skrift er ikke tilladt"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' forventes"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Farve påkrævet"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' forventes"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Indhold"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titel"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formeltekst"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "~Kanter"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Størrelse"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "~Oprindelig størrelse"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~Tilpas til side"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skalering"
diff --git a/source/da/svtools/messages.po b/source/da/svtools/messages.po
index 1b50442fa48..bb38a0b3d6f 100644
--- a/source/da/svtools/messages.po
+++ b/source/da/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-06 09:30+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/da/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Fortryd: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Gendan: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Gentag: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Uformateret tekst"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Uformateret tekst (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bitmap-billede (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface-metafile (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich Text Formatting (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich Text Formatering (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME-tegningsformat"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView bitmap/animation (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Status Info fra Svx intern kæde"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME link (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape-bogmærke"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star-serverformat"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star-objektformat"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet-objekt"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Plugin-objekt"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0-objekt"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0-objekt"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0-objekt"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0-objekt"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0-objekt"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0-objekt"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0-objekt"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw-objekt"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0-objekt"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0-objekt"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0-objekt"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc-objekt"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0-objekt"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0-objekt"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart-objekt"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0-objekt"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0-objekt"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage-objekt"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0-objekt"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0-objekt"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath-objekt"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0-objekt"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0-objekt"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint-objekt"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Hypertext Markup Language (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (simple HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE link)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word-objekt"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet-objekt"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office-dokumentobjekt"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes-dokumentinfo"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx-dokument"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0-objekt"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Grafikobjekt"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer-objekt"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web-objekt"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Hoved-objekt"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw-objekt"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress-objekt"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc-objekt"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Diagram-objekt"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math-objekt"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows-metafil"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Datakildeobjekt"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Datakildetabel"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL-forespørgsel"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 dialog"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Kæde"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-format uden kommentarer"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Det er ikke muligt at indsætte objekt %."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Det er ikke muligt at indsætte objektet fra fil %."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Flere objekter"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Ukendt kilde"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1234 +501,1234 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerisk"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Tegnsæt"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Ordbog"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Strøg"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonbog"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetisk (alfanumerisk først)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetisk (alfanumerisk sidst)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerisk"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Ordbog"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Strøg"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetisk (alfanumerisk først, opdelt efter stavelser)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetisk (alfanumerisk først, opdelt efter konsonanter)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetisk (alfanumerisk sidst, opdelt efter stavelser)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetisk (alfanumerisk sidst, opdelt efter konsonanter)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Fin"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Tynd kursiv"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normal"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kursiv"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Fed"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Fed kursiv"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Sort"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Black kursiv"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Bog"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Fed hældende"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Smal"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Smal fed"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Smal fed kursiv"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Smal fed hældende"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Smal kursiv"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Smal hældende"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Tynd"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Tynd kursiv"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Hældende"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Halvfed"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Halvfed kursiv"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Den samme skrifttype vil blive brugt både på din skærm og på din printer."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Dette er en printerskrifttype. Tekst på skærmen kan afvige fra udskriften."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Denne skrifttype bliver simuleret, eller den type, som passer bedst, vil blive brugt i stedet."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Denne skrifttype er ikke blevet installeret. Den nærmeste tilgængelige skrifttype vil blive brugt i stedet."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Gå til start"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Mod venstre"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Mod højre"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Gå til slut"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Tilføj"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Vandret lineal"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Lodret lineal"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1bit-tærskelværdi"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1bit-farvereducering"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 bit - gråtoner"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 bit farve"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 bit - gråtoner"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 bit farve"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24bit-ægte farver"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Billedet behøver ca %1 KB hukommelse."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Billedet behøver ca %1 KB hukommelse, men filstørrelsen er %2 KB."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Flisestørrelsen er %1 KB."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "vært"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Andet CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Klar"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Stoppet"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Afventer sletning"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Optaget"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Initialiserer"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Venter"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Varmer op"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Behandler"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Udskrivning"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Offline"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Fejl"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Ukendt server"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Papirstop"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Ikke nok papir"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Manuel papirfødning"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Papirproblem"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O aktiv"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Output-bakken er fyldt"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Næsten ingen toner"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Ingen toner"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Slet side"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Brugerhandling krævet"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Ikke tilstrækkelig hukommelse"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Låget er åben"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Energibesparende tilstand"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Standardprinter"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumenter"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<intet>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Firma"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Afdeling"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Fornavn"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Efternavn"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Gade"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Land"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Postnr."
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "By"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titel"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Stilling"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Tiltale"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Initialer"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Sluthilsen"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Telefon: privat"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Telefon arb."
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-mail"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Note"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Bruger 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Bruger 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Bruger 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Bruger 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Delstat"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Telefon Kontor"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Personsøger"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobil"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Telefon andre"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalender"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Inviter"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$s $service$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Indstillingerne for %PRODUCTNAME er ændret. Vælg det Java-afviklingsmiljø du ønsker at benytte for %PRODUCTNAME under Funktioner - Indstillinger - %PRODUCTNAME - Avanceret."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Indstillingerne for %PRODUCTNAME er ændret. Under Funktioner - Indstillinger: %PRODUCTNAME - Avanceret, skal du vælge det Java afviklingsmiljø du ønsker at benytte for %PRODUCTNAME."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME kræver et Java-afviklingsmiljø (JRE) for at udføre denne opgave. Det valgte JRE er defekt. Vælg venligst en anden version, eller installer et nyt JRE og vælg det under %PRODUCTNAME – Indstillinger – %PRODUCTNAME – Avanceret."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME kræver et Java-afviklingsmiljø (JRE) for at udføre disse opgaver. Det valgte JRE er defekt. Vælg en anden version eller installer et nyt JRE og vælg det under Funktioner - Indstillinger - %PRODUCTNAME - Avanceret."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE nødvendig"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Vælg JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE er defekt"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Kildetekst"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Bogmærkefil"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafik"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfigurationsfil"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Program"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Databasetabel"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Systemfil"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word-dokument"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Hjælpefil"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-dokument"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Arkivfil"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Logfil"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice Database"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0-hoveddokument"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice Billede"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekstfil"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Kæde"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 Skabelon"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel-dokument"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel-skabelon"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batch-fil"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Fil"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Mappe"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tekstdokument"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Regneark"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Præsentation"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Tegning"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-dokument"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Hoveddokument"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formel"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Database"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 Regnearksskabelon"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 Tegningsskabelon"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 Præsentationsskabelon"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0-tekstdokumentskabelon"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Lokalt drev"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Diskettedrev"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Cd-rom-drev"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Netværksforbindelse"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint-dokument"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint-skabelon"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint-præsentation"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0-formel"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 Diagram"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 Tegning"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 Regneark"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 Præsentation"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0-tekstdokument"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0-hoveddokument"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML dokument"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument-database"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument-tegning"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument-formel"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument-hoveddokument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument-præsentation"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument-regneark"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument-tekst"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument-regnearkskabelon"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument-tegningsskabelon"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument-præsentationsskabelon"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument-tekstskabelon"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME-udvidelse"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell stavekontrol"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen orddeling"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes Synonymordbog"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Liste af ignorerede ord"
diff --git a/source/da/svx/messages.po b/source/da/svx/messages.po
index 8493f075058..30785a25cdc 100644
--- a/source/da/svx/messages.po
+++ b/source/da/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-03 23:35+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/da/>\n"
@@ -16341,11 +16341,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Jokertegn"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_Kommentarer"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/da/sw/messages.po b/source/da/sw/messages.po
index 6d769012820..043d0295030 100644
--- a/source/da/sw/messages.po
+++ b/source/da/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-05 07:35+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/da/>\n"
@@ -17445,86 +17445,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr "Indtast antallet af rækker, du ønsker i tabellen."
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Almindelig"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "Overskrift"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr "Medtager en overskriftsrække i tabellen."
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Gentag tabeloverskrifter på nye _sider"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr "Gentager tabeloverskriften øverst på hver efterfølgende side, hvis tabellen spænder over mere end en side."
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Del ikke tabel over flere sider"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr "Forhindrer at tabellen bliver delt over mere end en side."
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr "Vælg det antal rækker du vil bruge som overskrift."
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Overskriftsrækker:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Indstillinger"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr "Viser en forhåndsvisning af den aktuelle markering."
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr "Vælg en foruddefineret typografi til den nye tabel."
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Typografier"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr "Indsætter en tabel i dokumentet. Du kan også klikke på pilen, trække for at markere antallet af rækker og kolonner som tabellen skal bestå af, og så klikke i den sidste celle."
@@ -20038,289 +20044,289 @@ msgid "Text"
msgstr "Tekst"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Mastervisning til/fra"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Skifter mellem hovedvisning og normalvisning, hvis et hoveddokument er åbent."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Indholdsvisning"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr "Skifter mellem visningen af alle kategorier i Navigatoren og den valgte kategori."
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Sidehoved"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr "Flytter markøren til sidehovedet, eller fra sidehovedet til dokumenttekstområdet."
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Sidefod"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr "Flytter markøren til sidefoden, eller fra sidefoden til dokumenttekstområdet."
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Anker<->Tekst"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr "Hopper mellem fodnoteteksten og fodnotens ankerpunkt."
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Sæt påmindelse"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Klik her for at indsætte en Kommentar på denne markørplacering. Du kan definere op til fem kommentarer, For at hoppe til en kommentar, skal du klikke på ikonet Navigation, i vinduet Navigation skal du klikke på ikonet Kommentar og så vælge en af knapperne Forrige eller Næste."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Viste overskriftsniveauer"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr "Klik på dette ikon og vælg så antallet af overskriftsdispositionsniveauer, som du vil vise i Navigatorvinduet."
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Rulleliste til/fra"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr "Viser eller skjulerNavigator -listen."
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Flyt et niveau op"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Forøger dispositionsniveauet for den valgte overskrift og overskrifterne, som fremstår under overskriften, med én. For kun at øge dispositionsniveauet for den valgte overskrift skal du holde Ctrl nede og så klikke på dette ikon."
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Flyt et niveau ned"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Formindsker dispositionsniveauet for den valgte overskrift og overskrifterne, som fremstår under overskriften, med én. For kun at mindske dispositionsniveauet for den valgte overskrift skal du holde Ctrl nede og så klikke på dette ikon."
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Fremhæv kapitel"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Flytter den valgte overskrift og teksten under overskriften én overskriftsposition op i Navigatoren og i dokumentet. For kun at flytte den valgte overskrift og ikke teksten tilknyttet overskriften skal du holde Ctrl nede og så klikke på dette ikon."
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Nedton kapitel"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Flytter den valgte overskrift og teksten under overskriften én overskriftsposition ned i Navigatoren og i dokumentet. For kun at flytte den valgte overskrift og ikke teksten tilknyttet overskriften skal du holde Ctrl nede og så klikke på dette ikon."
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Træktilstand"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr "Sætter træk-og-slip indstillingerne for indsættelse af punkter fra Navigatoren i et dokument, for eksempel som et hyperlink. Klik på dette ikon og vælg så indstillingen som du vil bruge."
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Dokument"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Aktivt vindue"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Mastervisning til/fra"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Skifter mellem hovedvisning og normalvisning, hvis et hoveddokument er åbent."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Rediger"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr "Rediger indholdet af den komponent, der er markeret på listen i Navigator. Hvis markeringen er en fil, åbnes filen til redigering. Hvis markeringen er et indeks, åbnes dialogen Indeks."
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Opdater"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Klik og vælg indholdet som du vil opdatere."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Indsæt"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Indsætter en fil, et indeks, eller et nyt dokument i hoveddokumentet."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Gem med indhold"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr "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."
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Flyt op"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr "Flytter markeringen en placering op på navigatorlisten."
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Flyt ned"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr "Flytter markeringen en placering ned på navigatorlisten."
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Udvalg"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Indekser"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Links"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Alle"
diff --git a/source/da/wizards/messages.po b/source/da/wizards/messages.po
index e5b02211566..86efb9aed43 100644
--- a/source/da/wizards/messages.po
+++ b/source/da/wizards/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2020-09-02 17:35+0000\n"
+"PO-Revision-Date: 2020-11-17 20:35+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_ui-master/wizardsmessages/da/>\n"
"Language: da\n"
@@ -296,7 +296,7 @@ msgstr "Inkluder ~kun på anden og efterfølgende sider"
#: wizards/com/sun/star/wizards/common/strings.hrc:79
msgctxt "RID_LETTERWIZARDDIALOG_START_24"
msgid "~Include page number"
-msgstr "~Inkluder sidetal"
+msgstr "Medtag sidetal"
#. 3E8JG
#: wizards/com/sun/star/wizards/common/strings.hrc:80
@@ -338,7 +338,7 @@ msgstr "Sidedesign"
#: wizards/com/sun/star/wizards/common/strings.hrc:86
msgctxt "RID_LETTERWIZARDDIALOG_START_31"
msgid "This wizard helps you to create a letter template. You can then use the template as the basis for writing letters as often as desired."
-msgstr "Denne guide hjælper dig med at oprette en brevskabelon. Du kan så bruge skabelonen som grundlag for at skrive breve så ofte, som du ønsker."
+msgstr "Denne guide hjælper dig med at oprette en brevskabelon. Du kan så bruge skabelonen som grundlag for brevskrivning, så tit du vil."
#. akv7q
#: wizards/com/sun/star/wizards/common/strings.hrc:87
@@ -464,7 +464,7 @@ msgstr "Hvordan vil du fortsætte?"
#: wizards/com/sun/star/wizards/common/strings.hrc:107
msgctxt "RID_LETTERWIZARDDIALOG_START_53"
msgid "Please choose the type of letter and page design"
-msgstr "Vælg brevtypen og sidedesignet"
+msgstr "Vælg brevtype og sidedesign"
#. pFFLg
#: wizards/com/sun/star/wizards/common/strings.hrc:108
@@ -482,13 +482,13 @@ msgstr "Angiv de elementer, som allerede findes på dit brevpapir"
#: wizards/com/sun/star/wizards/common/strings.hrc:110
msgctxt "RID_LETTERWIZARDDIALOG_START_56"
msgid "Specify the sender and recipient information"
-msgstr "Angiver information om afsenderen og modtageren"
+msgstr "Angiv afsender- og modtager-oplysninger"
#. 5f9zG
#: wizards/com/sun/star/wizards/common/strings.hrc:111
msgctxt "RID_LETTERWIZARDDIALOG_START_57"
msgid "Fill in the information you would like in the footer"
-msgstr "Udfyld information til sidefoden"
+msgstr "Indtast de oplysninger, du vil have i sidefoden"
#. hHreD
#: wizards/com/sun/star/wizards/common/strings.hrc:112
@@ -500,7 +500,7 @@ msgstr "Angiv de sidste indstillinger"
#: wizards/com/sun/star/wizards/common/strings.hrc:113
msgctxt "RID_LETTERWIZARDDIALOG_START_59"
msgid "Subject:"
-msgstr "Emne:"
+msgstr "Vedr.:"
#. hbTAj
#: wizards/com/sun/star/wizards/common/strings.hrc:114
@@ -530,7 +530,7 @@ msgstr "Flaske"
#: wizards/com/sun/star/wizards/common/strings.hrc:118
msgctxt "RID_LETTERWIZARDDIALOG_START_64"
msgid "Mail"
-msgstr "Post"
+msgstr "E-mail"
#. 6YXv2
#: wizards/com/sun/star/wizards/common/strings.hrc:119
@@ -578,7 +578,7 @@ msgstr "Mange hilsner"
#: wizards/com/sun/star/wizards/common/strings.hrc:130
msgctxt "RID_LETTERWIZARDGREETING_START_3"
msgid "Cheers"
-msgstr "Takker"
+msgstr "Hilsner"
#. zSG9q
#: wizards/com/sun/star/wizards/common/strings.hrc:133
@@ -590,7 +590,7 @@ msgstr "Sidedesign"
#: wizards/com/sun/star/wizards/common/strings.hrc:134
msgctxt "RID_LETTERWIZARDROADMAP_START_2"
msgid "Letterhead Layout"
-msgstr "Layout af brevpapir"
+msgstr "Brevhoved-layout"
#. pbqyP
#: wizards/com/sun/star/wizards/common/strings.hrc:135
@@ -608,7 +608,7 @@ msgstr "Modtager og afsender"
#: wizards/com/sun/star/wizards/common/strings.hrc:137
msgctxt "RID_LETTERWIZARDROADMAP_START_5"
msgid "Footer"
-msgstr "Tekstfod"
+msgstr "Sidefod"
#. qT5pG
#: wizards/com/sun/star/wizards/common/strings.hrc:138
@@ -698,7 +698,7 @@ msgstr "Opret en ~fax fra denne skabelon"
#: wizards/com/sun/star/wizards/common/strings.hrc:154
msgctxt "RID_FAXWIZARDDIALOG_START_14"
msgid "Make ~manual changes to this fax template"
-msgstr "Foretag ~manuelle ændringer til denne faxskabelon"
+msgstr "Foretag ~manuelle ændringer i denne faxskabelon"
#. feuFe
#: wizards/com/sun/star/wizards/common/strings.hrc:155
@@ -716,7 +716,7 @@ msgstr "Sidedesign"
#: wizards/com/sun/star/wizards/common/strings.hrc:157
msgctxt "RID_FAXWIZARDDIALOG_START_17"
msgid "This wizard helps you to create a fax template. The template can then be used to create a fax whenever needed."
-msgstr "Denne guide hjælper dig med at oprette en faxskabelon. Skabelonen kan så efterfølgende bruges til at oprette en fax når som helst."
+msgstr "Denne guide hjælper dig med at oprette en faxskabelon. Skabelonen kan så bruges til at oprette en fax når som helst."
#. 3zpAU
#: wizards/com/sun/star/wizards/common/strings.hrc:158
@@ -758,13 +758,13 @@ msgstr "Denne guide udarbejder en faxskabelon, som lader dig oprette flere faxer
#: wizards/com/sun/star/wizards/common/strings.hrc:164
msgctxt "RID_FAXWIZARDDIALOG_START_24"
msgid "To create another new fax out of the template, go to the location where you saved the template and double-click the file."
-msgstr "For at oprette endnu en ny fax ud fra skabelonen skal du gå til placeringen, hvor du gemte skabelonen, og dobbeltklikke på filen."
+msgstr "For at oprette endnu en ny fax ud fra skabelonen skal du gå til den placering, hvor du gemte skabelonen, og dobbeltklikke på filen."
#. keXXU
#: wizards/com/sun/star/wizards/common/strings.hrc:165
msgctxt "RID_FAXWIZARDDIALOG_START_25"
msgid "Template name:"
-msgstr "Skabelon navn:"
+msgstr "Skabelonnavn:"
#. SAmkQ
#: wizards/com/sun/star/wizards/common/strings.hrc:166
@@ -782,19 +782,19 @@ msgstr "Hvad vil du gøre som det næste?"
#: wizards/com/sun/star/wizards/common/strings.hrc:168
msgctxt "RID_FAXWIZARDDIALOG_START_28"
msgid "Choose the type of fax and a page design"
-msgstr "Vælg faxtype og et sidedesign"
+msgstr "Vælg faxtype og sidedesign"
#. FR29z
#: wizards/com/sun/star/wizards/common/strings.hrc:169
msgctxt "RID_FAXWIZARDDIALOG_START_29"
msgid "Select items to include in the fax template"
-msgstr "Vælg elementer, som skal inkluderes i faxskabelonen"
+msgstr "Vælg elementer, som skal med i faxskabelonen"
#. MpY3M
#: wizards/com/sun/star/wizards/common/strings.hrc:170
msgctxt "RID_FAXWIZARDDIALOG_START_30"
msgid "Specify sender and recipient information"
-msgstr "Angiv information om afsender og modtager"
+msgstr "Angiv afsender- og modtager-oplysninger"
#. vDdmJ
#: wizards/com/sun/star/wizards/common/strings.hrc:171
@@ -812,13 +812,13 @@ msgstr "Vælg et navn og gem skabelonen"
#: wizards/com/sun/star/wizards/common/strings.hrc:173
msgctxt "RID_FAXWIZARDDIALOG_START_33"
msgid "Include ~only on second and following pages"
-msgstr "Inkluder ~kun på anden og efterfølgende sider"
+msgstr "Medtag ~kun på anden og efterfølgende sider"
#. p4XqG
#: wizards/com/sun/star/wizards/common/strings.hrc:174
msgctxt "RID_FAXWIZARDDIALOG_START_34"
msgid "~Include page number"
-msgstr "~Inkluder sidetal"
+msgstr "Medtag sidetal"
#. 2FBzM
#: wizards/com/sun/star/wizards/common/strings.hrc:175
@@ -902,7 +902,7 @@ msgstr "side"
#: wizards/com/sun/star/wizards/common/strings.hrc:188
msgctxt "RID_FAXWIZARDDIALOG_START_48"
msgid "Please inform us if transmission errors occur."
-msgstr "Fortæl os hvis der er transmissionsfejl."
+msgstr "Fortæl os det, hvis der er transmissionsfejl."
#. FVaFV
#: wizards/com/sun/star/wizards/common/strings.hrc:189
@@ -968,19 +968,19 @@ msgstr "Til orientering"
#: wizards/com/sun/star/wizards/common/strings.hrc:201
msgctxt "RID_FAXWIZARDCOMMUNICATION_START_3"
msgid "News!"
-msgstr "Nyhed!"
+msgstr "Nyheder!"
#. wmwqS
#: wizards/com/sun/star/wizards/common/strings.hrc:204
msgctxt "RID_FAXWIZARDSALUTATION_START_1"
msgid "To whom it may concern,"
-msgstr "Til rette vedkommende,"
+msgstr "Til rette vedkommende."
#. qFub6
#: wizards/com/sun/star/wizards/common/strings.hrc:205
msgctxt "RID_FAXWIZARDSALUTATION_START_2"
msgid "Dear Sir or Madam,"
-msgstr "Kære hr. eller fr.,"
+msgstr "Kære hr. eller fr."
#. Wj4BU
#: wizards/com/sun/star/wizards/common/strings.hrc:206
@@ -992,7 +992,7 @@ msgstr "Hej,"
#: wizards/com/sun/star/wizards/common/strings.hrc:207
msgctxt "RID_FAXWIZARDSALUTATION_START_4"
msgid "Hi,"
-msgstr "Hejsa,"
+msgstr "Hej"
#. HSnqu
#: wizards/com/sun/star/wizards/common/strings.hrc:210
@@ -1058,7 +1058,7 @@ msgstr "Dagsordensguide"
#: wizards/com/sun/star/wizards/common/strings.hrc:224
msgctxt "RID_AGENDAWIZARDDIALOG_START_2"
msgid "Make ~manual changes to this agenda template"
-msgstr "Foretag ~manuelle ændringer af denne dagsordenskabelon"
+msgstr "Foretag ~manuelle ændringer i denne dagsordenskabelon"
#. LoA9c
#: wizards/com/sun/star/wizards/common/strings.hrc:225
@@ -1088,7 +1088,7 @@ msgstr "Vælg sidedesign til dagsordenen"
#: wizards/com/sun/star/wizards/common/strings.hrc:229
msgctxt "RID_AGENDAWIZARDDIALOG_START_7"
msgid "Please select the headings you wish to include in your agenda template"
-msgstr "Vælg de overskrifter, som du ønsker at inkludere i din dagsordenskabelon"
+msgstr "Vælg de overskrifter, du vil have med i din dagsordenskabelon"
#. EPBuf
#: wizards/com/sun/star/wizards/common/strings.hrc:230
@@ -1100,13 +1100,13 @@ msgstr "Indtast generelle informationer om begivenheden"
#: wizards/com/sun/star/wizards/common/strings.hrc:231
msgctxt "RID_AGENDAWIZARDDIALOG_START_9"
msgid "Please specify items for the agenda"
-msgstr "Angiv punkter til dagsordenen"
+msgstr "Angiv punkter i dagsordenen"
#. tRVBT
#: wizards/com/sun/star/wizards/common/strings.hrc:232
msgctxt "RID_AGENDAWIZARDDIALOG_START_10"
msgid "Please select the names you wish to include in your agenda template"
-msgstr "Vælg de navne, som du ønsker at inkludere i din dagsordenskabelon"
+msgstr "Vælg de navne, du vil have med i din dagsordenskabelon"
#. jEmHD
#: wizards/com/sun/star/wizards/common/strings.hrc:233
@@ -1118,13 +1118,13 @@ msgstr "Vælg et navn og gem skabelonen"
#: wizards/com/sun/star/wizards/common/strings.hrc:234
msgctxt "RID_AGENDAWIZARDDIALOG_START_12"
msgid "Include form for recording minutes"
-msgstr "Inkluder formular til referatskrivning"
+msgstr "Formular til referatskrivning"
#. r3FDF
#: wizards/com/sun/star/wizards/common/strings.hrc:235
msgctxt "RID_AGENDAWIZARDDIALOG_START_13"
msgid "This wizard helps you to create an agenda template. The template can then be used to create an agenda whenever needed."
-msgstr "Denne guide hjælper dig med at oprette en dagsordenskabelon. Skabelonen kan så efterfølgende bruges til at oprette en dagsorden når som helst."
+msgstr "Denne guide hjælper dig med at oprette en dagsordenskabelon. Skabelonen kan så bruges til at oprette en dagsorden når som helst."
#. Crj5S
#: wizards/com/sun/star/wizards/common/strings.hrc:236
@@ -1262,7 +1262,7 @@ msgstr "Noter"
#: wizards/com/sun/star/wizards/common/strings.hrc:258
msgctxt "RID_AGENDAWIZARDDIALOG_START_36"
msgid "The agenda template will include placeholders for the selected items."
-msgstr "Dagsordenskabelonen inkluderer pladsholdere for de valgte elementer."
+msgstr "Dagsordenskabelonen indeholder pladsholdere for udvalgte punkter"
#. bCFEm
#: wizards/com/sun/star/wizards/common/strings.hrc:259
@@ -1274,7 +1274,7 @@ msgstr "Dato:"
#: wizards/com/sun/star/wizards/common/strings.hrc:260
msgctxt "RID_AGENDAWIZARDDIALOG_START_39"
msgid "This wizard creates an agenda template which enables you to create multiple agendas with the same layout and settings."
-msgstr "Denne guide udarbejder en dagsordenskabelon, som lader dig oprette flere dagsordener med samme layout og indstillinger."
+msgstr "Denne guide opretter en dagsordenskabelon, som lader dig oprette flere dagsordener med samme layout og indstillinger."
#. CS6WP
#: wizards/com/sun/star/wizards/common/strings.hrc:261
@@ -1346,7 +1346,7 @@ msgstr "Generelle oplysninger"
#: wizards/com/sun/star/wizards/common/strings.hrc:272
msgctxt "RID_AGENDAWIZARDDIALOG_START_52"
msgid "Headings to Include"
-msgstr "Inkluderede overskrifter"
+msgstr "Overskrifter, der tages med"
#. QU872
#: wizards/com/sun/star/wizards/common/strings.hrc:273
@@ -1358,7 +1358,7 @@ msgstr "Navne"
#: wizards/com/sun/star/wizards/common/strings.hrc:274
msgctxt "RID_AGENDAWIZARDDIALOG_START_54"
msgid "Agenda Items"
-msgstr "Emner på dagsorden"
+msgstr "Dagsordenspunkter"
#. rSC3E
#: wizards/com/sun/star/wizards/common/strings.hrc:275
@@ -1472,7 +1472,7 @@ msgstr "Dato:"
#: wizards/com/sun/star/wizards/common/strings.hrc:293
msgctxt "RID_AGENDAWIZARDDIALOG_START_73"
msgid "Time:"
-msgstr "Tidsforbrug:"
+msgstr "Varighed:"
#. tBdwg
#: wizards/com/sun/star/wizards/common/strings.hrc:294
@@ -1508,7 +1508,7 @@ msgstr "Ansvarlig"
#: wizards/com/sun/star/wizards/common/strings.hrc:299
msgctxt "RID_AGENDAWIZARDDIALOG_START_79"
msgid "Time"
-msgstr "Tid"
+msgstr "Klokkeslæt:"
#. qbFeF
#: wizards/com/sun/star/wizards/common/strings.hrc:300
diff --git a/source/de/helpcontent2/source/text/scalc/01.po b/source/de/helpcontent2/source/text/scalc/01.po
index edef374d13b..864bc401807 100644
--- a/source/de/helpcontent2/source/text/scalc/01.po
+++ b/source/de/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2020-10-22 11:35+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/de/>\n"
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr "Verwendung mit regulären Ausdrücken und verschachtelten Funktionen"
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/sdraw.po b/source/de/helpcontent2/source/text/sdraw.po
index 0827536e200..abbd299b903 100644
--- a/source/de/helpcontent2/source/text/sdraw.po
+++ b/source/de/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-22 11:35+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/de/>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/00.po b/source/de/helpcontent2/source/text/shared/00.po
index 4ccea2ff0c0..e4cb81cc5cc 100644
--- a/source/de/helpcontent2/source/text/shared/00.po
+++ b/source/de/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-05-27 09:52+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/de/>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "Als typisches Beispiel lässt sich eine Datenbank mit Kunden-, Verkaufs- und Rechnungstabellen heranziehen. In der Rechnungstabelle sind nicht die eigentlichen Kunden- oder Verkaufsdaten, sondern Referenzen, in Form von relationalen Verknüpfungen oder Relationen, auf die Tabellenfelder mit den entsprechenden Kunden- und Verkaufsdaten (beispielsweise das Kundennummernfeld aus der Kundentabelle) enthalten."
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>Registerhaltigkeit; Definition</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "Registerhaltigkeit"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/de/helpcontent2/source/text/shared/01.po b/source/de/helpcontent2/source/text/shared/01.po
index 9bab4cd3810..b52f81ac776 100644
--- a/source/de/helpcontent2/source/text/shared/01.po
+++ b/source/de/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-05 10:35+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/de/>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr "Einige Dokumenttypen können Sie als Broschüre drucken."
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr ""
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr "<ahelp hid=\".\">Im Fenster <emph>Weitere Optionen</emph> können Sie einige zusätzliche Optionen für den aktuellen Druckauftrag festlegen.</ahelp>"
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,14 +9376,14 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "Schaltet zwischen Global- und Normalmodus um."
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Symbol</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgstr ""
#. 3Lq2G
#: 02110000.xhp
@@ -9430,14 +9412,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_EDIT\">Dient zum Bearbeiten der im <emph>Navigator</emph> ausgewählten Komponente. Handelt es sich bei der Auswahl um eine Datei, so wird diese Datei zur Bearbeitung geöffnet. Handelt es sich bei der Auswahl um ein Verzeichnis, wird der Dialog <emph>Verzeichnis</emph> geöffnet.</ahelp>"
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Symbol</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgstr ""
#. nRB3E
#: 02110000.xhp
@@ -9466,14 +9448,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Klicken Sie, und wählen Sie den zu aktualisierenden Inhalt aus.</ahelp>"
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Symbol</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgstr ""
#. F4J5u
#: 02110000.xhp
@@ -9601,14 +9583,14 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "Sie können Dateien auch in das Globaldokument einfügen, indem Sie diese von Ihrem Desktop per Ziehen-und-Ablegen in die Globalansicht des Navigators schieben."
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Symbol</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgstr ""
#. ijR7M
#: 02110000.xhp
@@ -9709,14 +9691,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Speichert den Inhalt der verknüpften Dateien im Globaldokument als Kopie. Dadurch wird gewährleistet, dass der aktuelle Dokumentinhalt selbst dann verfügbar ist, wenn ein Zugriff auf die verknüpften Dateien nicht möglich ist.</ahelp>"
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Symbol</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgstr ""
#. ADEyJ
#: 02110000.xhp
@@ -9745,14 +9727,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Verschiebt die Auswahl in der Navigatorliste um eine Position nach oben.</ahelp> Die Einträge lassen sich auch mittels Ziehen-und-Ablegen innerhalb der Liste verschieben. Wenn Sie einen Textabschnitt in einen anderen verschieben, werden die beiden Textabschnitte zusammengeführt."
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Symbol</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgstr ""
#. GqEUL
#: 02110000.xhp
@@ -9781,14 +9763,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Verschiebt die Auswahl in der Navigatorliste um eine Position nach unten.</ahelp> Die Einträge lassen sich auch mittels Ziehen-und-Ablegen innerhalb der Liste verschieben. Wenn Sie einen Textabschnitt in einen anderen verschieben, werden die beiden Textabschnitte zusammengeführt."
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
-msgstr "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Symbol</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgstr ""
#. DLEGF
#: 02110000.xhp
diff --git a/source/de/helpcontent2/source/text/shared/02.po b/source/de/helpcontent2/source/text/shared/02.po
index 784e97f09fc..16da697c650 100644
--- a/source/de/helpcontent2/source/text/shared/02.po
+++ b/source/de/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-12 20:33+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/de/>\n"
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr "<bookmark_value>Absätze; Einzug vermindern</bookmark_value><bookmark_value>Einzug bei Absätzen vermindern</bookmark_value>"
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Einzug vermindern\">Einzug vermindern</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11059,14 +11059,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Wurde zuvor der Einzug mehrerer gemeinsam ausgewählter Absätze vergrößert, so können Sie ihn mit diesem Befehl für alle ausgewählten Absätze wieder verkleinern.</caseinline><caseinline select=\"CALC\">Der Zellinhalt wird um den unter <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Zelle... - Ausrichtung\"><emph>Format - Zelle... - Ausrichtung</emph></link> eingestellten Wert verschoben.</caseinline></switchinline>"
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Symbol</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr "<bookmark_value>Absätze; Einzug erhöhen</bookmark_value><bookmark_value>Einzug bei Absätzen erhöhen</bookmark_value>"
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Einzug erhöhen\">Einzug erhöhen</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11131,14 +11131,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Wenn mehrere Absätze ausgewählt sind, wird der Einzug aller ausgewählten Absätze vergrößert.</caseinline><caseinline select=\"CALC\">Der Zellinhalt wird um den unter <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format – Zellen… – Register: Ausrichtung</emph></link> eingestellten Wert verschoben.</caseinline></switchinline>"
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Symbol</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/de/helpcontent2/source/text/shared/optionen.po b/source/de/helpcontent2/source/text/shared/optionen.po
index 78fc8fb6fea..6d471d7857e 100644
--- a/source/de/helpcontent2/source/text/shared/optionen.po
+++ b/source/de/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-06-09 21:11+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/de/>\n"
@@ -11860,32 +11860,32 @@ msgctxt ""
msgid "Snap"
msgstr "Fangen"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "An Fanglinien"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
-msgstr "<variable id=\"anlinie\"><ahelp hid=\".\">Fängt die Kante eines gezogenen Objekts an der nächsten Fanglinie, wenn Sie die Maus loslassen.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
+msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "Sie können diese Einstellung auch über das Symbol <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"An Fanglinien fangen\"><emph>An Fanglinien fangen</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"An Fanglinien fangen\"><emph>An Fanglinien fangen</emph></link></caseinline><defaultinline><emph>An Fanglinien fangen</emph></defaultinline></switchinline> aufrufen, das sich in einem Präsentation- oder Zeichnungsdokument in der <emph>Symbolleiste Optionen</emph> befindet."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr ""
#. eUCCJ
#: 01070300.xhp
diff --git a/source/de/helpcontent2/source/text/simpress/02.po b/source/de/helpcontent2/source/text/simpress/02.po
index 92a31d1d8b1..c4ab4de29cc 100644
--- a/source/de/helpcontent2/source/text/simpress/02.po
+++ b/source/de/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-22 11:35+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress02/de/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1557892821.000000\n"
#. AiACn
@@ -5695,41 +5695,41 @@ msgctxt ""
msgid "Exit all groups"
msgstr "Alle Gruppierungen verlassen"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "An Fanglinien fangen"
+msgid "Snap to Snap Guides"
+msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"An Fanglinien fangen\">An Fanglinien fangen</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Symbol</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "An Fanglinien fangen"
+msgid "Snap to Snap Guides"
+msgstr ""
#. oXWsX
#: 13150000.xhp
diff --git a/source/de/helpcontent2/source/text/swriter.po b/source/de/helpcontent2/source/text/swriter.po
index ab45ccc0e91..91126c36a09 100644
--- a/source/de/helpcontent2/source/text/swriter.po
+++ b/source/de/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-22 11:35+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/de/>\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "Links-nach-rechts"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">Symbol Von links nach rechts</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "Rechts-nach-links"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">Symbol Von rechts nach links</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/de/helpcontent2/source/text/swriter/01.po b/source/de/helpcontent2/source/text/swriter/01.po
index afe03cd2ac0..46ec012e18e 100644
--- a/source/de/helpcontent2/source/text/swriter/01.po
+++ b/source/de/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-17 17:44+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/de/>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "Navigator"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Öffnet den Dialog <emph>Serienbriefempfänger</emph>.</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/swriter/guide.po b/source/de/helpcontent2/source/text/swriter/guide.po
index 4a8413d2cd2..6a9d91aba28 100644
--- a/source/de/helpcontent2/source/text/swriter/guide.po
+++ b/source/de/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-06-09 21:11+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/de/>\n"
@@ -7792,50 +7792,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Einrücken von Absätzen</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr "Um die Maßeinheiten zu ändern, wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Einstellungen</item></caseinline><defaultinline><item type=\"menuitem\">Extras - Optionen...</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Allgemein</item> und dann im Bereich Einstellungen eine neue Maßeinheit."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "Sie können die Einzüge für den aktuellen Absatz, für alle ausgewählten Absätze oder für eine Absatzvorlage ändern."
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "Sie können die Einzüge für den aktuellen Absatz, für alle ausgewählten Absätze oder für eine Absatzvorlage ändern."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "Wählen Sie <item type=\"menuitem\">Format - Absatz - Einzüge und Abstände</item>, um die Einzüge für den aktuellen Absatz oder alle ausgewählten Absätze zu ändern. Der Einzug lässt sich auch auf dem <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">Lineal</link> einstellen."
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "Der Einzug lässt sich auch mit dem <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">Lineal</link> bestimmen. Mit <item type=\"menuitem\">Ansicht - Lineal</item> blenden Sie das Lineal ein."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "Wählen Sie <item type=\"menuitem\">Format - Absatz - Einzüge und Abstände</item>, um die Einzüge für den aktuellen Absatz oder alle ausgewählten Absätze zu ändern. Der Einzug lässt sich auch auf dem <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">Lineal</link> einstellen."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "Der Einzug lässt sich auch mit dem <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">Lineal</link> bestimmen. Mit <item type=\"menuitem\">Ansicht - Lineal</item> blenden Sie das Lineal ein."
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "Klicken Sie mit der rechten Maustaste auf einen Absatz und wählen Sie <item type=\"menuitem\">Absatzvorlage bearbeiten... - Einzüge und Abstände</item>, um die Einzüge für alle Absätze zu ändern, die dieselbe Absatzvorlage aufweisen."
+msgid "Positioning indents"
+msgstr ""
#. qUxKq
#: indenting.xhp
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "Einzüge werden vom linken und rechten Seitenrand aus berechnet. Es ist auch möglich, den Absatz über den Seitenrand hinaus zu rücken. Geben Sie hierfür einen negativen Wert ein."
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr "Um die Maßeinheiten zu ändern, wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Einstellungen</item></caseinline><defaultinline><item type=\"menuitem\">Extras - Optionen...</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Allgemein</item> und dann im Bereich Einstellungen eine neue Maßeinheit."
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "Die Einzüge hängen von der Schreibrichtung ab. Schauen Sie beispielsweise auf den Einzugswert in <item type=\"menuitem\">Vor Text</item> bei von links nach rechts verlaufenden Sprachen. Der linke Rand des Absatzes wird vom linken Seitenrand aus eingerückt. Bei von rechts nach links verlaufenden Sprachen wird der rechte Rand des Absatzes vom rechten Seitenrand aus eingerückt."
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "Für einen hängenden Einzug geben Sie einen positiven Wert für <item type=\"menuitem\">Vor Text</item> und einen negativen Wert für <item type=\"menuitem\">Erste Zeile</item> ein."
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,14 +10294,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "Ein- oder Ausschalten der Zahlenerkennung in Tabellen"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>Zahlen; automatische Erkennung in Texttabellen</bookmark_value><bookmark_value>Tabellen; Zahlenerkennung</bookmark_value><bookmark_value>Datumsangaben; automatische Formatierung in Tabellen</bookmark_value><bookmark_value>Erkennung; Zahlen</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10267,14 +10330,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Führen Sie einen der folgenden Schritte durch:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "Rechtsklicken Sie in einer Tabellenzelle und wählen <item type=\"menuitem\">Zahlenerkennung</item>. Wenn diese Funktion eingeschaltet ist, wird ein Häkchen vor dem Befehl <item type=\"menuitem\">Zahlenerkennung</item> angezeigt."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr "Wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Einstellungen</caseinline><defaultinline>Extras - Optionen...</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Tabelle</item> und aktivierten oder deaktivieren Sie das Markierfeld <item type=\"menuitem\">Zahlenerkennung</item>."
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12211,6 +12292,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "Wenn Sie ein Dokument erstellen, das als Broschüre gedruckt werden soll, verwenden Sie das Hochformat als Papierausrichtung. Writer wendet das Broschüren-Layout beim Drucken des Dokuments an."
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12256,50 +12355,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "Wenn Ihr Drucker beidseitig druckt und Sie Broschüren im Querformat drucken möchten, sollten Sie die Einstellung \"Duplex - kurze Seite\" im Dialog Druckereigenschaften verwenden."
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
-msgstr "Gehen Sie zurück zum Dialog <emph>Drucken</emph> und wechseln Sie auf das Register <emph>Seitenlayout</emph>."
+msgid "Return to <emph>Print</emph> dialog."
+msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
-msgstr "Wählen Sie <emph>Broschüre</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
+msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "Für einen Drucker, der automatische auf beiden Seiten eines Blattes druckt, legen Sie \"Alle Seiten\" fest."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Klicken Sie auf <emph>OK</emph>."
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "Wenn %PRODUCTNAME die Seiten in einer falschen Reihenfolge druckt, öffnen Sie das Register<emph>Optionen</emph>, wählen <emph>In umgekehrter Reihenfolge drucken</emph> und drucken das Dokument erneut."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr "<link href=\"text/swriter/01/01120000.xhp\" name=\"Datei - Druckvorschau\">Datei - Druckvorschau</link>."
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,32 +12724,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Mehrere Seiten auf ein Blatt drucken\">Mehrere Seiten auf ein Blatt drucken</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
-msgstr "Auf dem Register <emph>Seitenlayout</emph> des Dialogs <item type=\"menuitem\">Datei - Drucken...</item> haben Sie die Möglichkeit, mehrere Seiten auf ein Blatt zu drucken."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
+msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
-msgstr "Wählen Sie <emph>Datei - Drucken</emph> und das Register <emph>Seitenlayout</emph>."
+msgid "Choose <menuitem>File - Print</menuitem>"
+msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Führen Sie einen der folgenden Schritte durch:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/de/sc/messages.po b/source/de/sc/messages.po
index a5d0aca94a0..5f9d12356ca 100644
--- a/source/de/sc/messages.po
+++ b/source/de/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-03 11:56+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/de/>\n"
@@ -28624,38 +28624,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr "Beim Einfügen von Zellen aus der Zwischenablage in einen nicht leeren Zellbereich wird eine Warnung angezeigt."
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Druckermaße für Textformatierung verwenden"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "Die Druckermaße werden zum Drucken sowie zum Formatieren der Anzeige auf dem Bildschirm verwendet."
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Auswah_l in Spalten-/Zeilenköpfen hervorheben"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr "Spalten- und Zeilenköpfe in ausgewählten Spalten und Zeilen werden hervorgehoben."
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Bezüge aktualisieren, wenn Zellbereiche sortiert werden"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Eingabe-Einstellungen"
diff --git a/source/de/sfx2/messages.po b/source/de/sfx2/messages.po
index aabf00de316..a0b172a15bd 100644
--- a/source/de/sfx2/messages.po
+++ b/source/de/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-11-03 11:56+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/de/>\n"
@@ -1655,286 +1655,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Fenster schließen"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Andocken"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Abdocken"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Weitere Optionen"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Seitenleiste schließen"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Einstellungen der Seitenleiste"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Anpassung"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Standard wiederherstellen"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Seitenleiste schließen"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Bienenkorb"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blauer Verlauf"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blaupausen Plan"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Leuchtend blau"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Klassisch rot"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Wald"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impressionen"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiration"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lichter"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Kräftiges grün"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Mitternachtsblau"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natur"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Stift"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klavier"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Fortschritt"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Sonnenuntergang"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Traditionell"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Lebendig"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Resümee"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standard"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderner Geschäftsbrief serifenlos"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderner Geschäftsbrief mit Serifen"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Geschäftsbrief mit Logo"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Einfach"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Entfernen"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Alle löschen"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Kennwortlänge"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Das Kennwort, welches Sie eingegeben haben, verursacht Kompatibilitätsprobleme. Bitte geben Sie ein Kennwort ein, dass kürzer als 52 Bytes oder länger als 55 Bytes ist."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "[%{key}+Klick], um folgenden Hyperlink zu öffnen: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Klicken, um den Hyperlink zu öffnen: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(verwendet von: %STYLELIST)"
@@ -4165,6 +4129,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Löschen…"
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/de/starmath/messages.po b/source/de/starmath/messages.po
index c6e4ce00cca..52be7acac03 100644
--- a/source/de/starmath/messages.po
+++ b/source/de/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-09-16 05:27+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/de/>\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "oder"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Vorzeichen (Plus)"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Vorzeichen (Minus)"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Vorzeichen (Plus-Minus)"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Vorzeichen (Minus-Plus)"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Logisches NICHT"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Addition (Plus)"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Subtraktion (Minus)"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Multiplikation (Punkt)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Multiplikation (Kreuz)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Multiplikation (Stern)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Division (Schrägstrich)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Division (Doppelpunkt-Mittelstrich)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Division (Bruch)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Umkreiste Division (Schrägstrich)"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Umkreiste Multiplikation (Punkt)"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Umkreiste Subtraktion (Minus)"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Umkreiste Addition (Plus)"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Tensorprodukt"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Logisches UND"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Logisches ODER"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "ist gleich"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "ist ungleich"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "ist kleiner"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "ist größer"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "ist kleiner oder gleich"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "ist größer oder gleich"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "ist kleiner oder gleich"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "ist größer oder gleich"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "ist viel kleiner"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "ist viel größer"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Ist definiert als"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "ist kongruent"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "ist ungefähr gleich"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "ist ähnlich"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "ist ähnlich oder gleich"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "ist proportional"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "ist orthogonal"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "ist parallel"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "strebt gegen"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Korrespondenzzeichen (Bild von)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Korrespondenzzeichen (Original von)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "ist Element"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "ist nicht Element"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "enthält"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Vereinigung"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Durchschnitt"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Differenz"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Teilmenge"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Teilmenge oder gleich"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Obermenge"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Obermenge oder gleich"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "nicht Teilmenge"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "nicht Teilmenge oder gleich"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "nicht Obermenge"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "nicht Obermenge oder gleich"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr "Allgemeine Funktion"
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Betrag (Absolutwert)"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Fakultät"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Quadratwurzel"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "n-te Wurzel"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "e-Funktion"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Exponentialfunktion"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "natürlicher Logarithmus"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logarithmus"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sinus"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Kosinus"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangens"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Kotangens"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arkussinus"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arkuskosinus"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arkustangens"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arkuskotangens"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Sinus Hyperbolicus"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Kosinus Hyperbolicus"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Tangens Hyperbolicus"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Kotangens Hyperbolicus"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Areasinus Hyperbolicus"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Areakosinus Hyperbolicus"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Areatangens Hyperbolicus"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Areakotangens Hyperbolicus"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr "Allgemeiner Operator"
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr "Allgemeiner Operator mit unterer Grenze"
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr "Allgemeiner Operator mit oberer Grenze"
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr "Allgemeiner Operator mit unterer und oberer Grenze"
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Summe"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Summe mit unterer Grenze"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Summe mit oberer Grenze"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Summe mit unterer und oberer Grenze"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Produkt"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Produkt mit unterer Grenze"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Produkt mit oberer Grenze"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Produkt mit unterer und oberer Grenze"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Koprodukt"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Koprodukt mit unterer Grenze"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Koprodukt mit oberer Grenze"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Koprodukt mit unterer und oberer Grenze"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Limes"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Limes mit unterer Grenze"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Limes mit oberer Grenze"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Limes mit unterer und oberer Grenze"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Limes inferior"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Limes inferior mit unterer Grenze"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Limes inferior mit oberer Grenze"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Limes inferior mit unterer und oberer Grenze"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Limes superior"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Limes superior mit unterer Grenze"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Limes superior mit oberer Grenze"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Limes superior mit unterer und oberer Grenze"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "es existiert"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "es existiert nicht"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "für alle"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integral"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Integral mit unterer Grenze"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Integral mit oberer Grenze"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integral mit unterer und oberer Grenze"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "doppeltes Integral"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "doppeltes Integral mit unterer Grenze"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "doppeltes Integral mit oberer Grenze"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "doppeltes Integral mit unterer und oberer Grenze"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "dreifaches Integral"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "dreifaches Integral mit unterer Grenze"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "dreifaches Integral mit oberer Grenze"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "dreifaches Integral mit unterer und oberer Grenze"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Kurvenintegral"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Kurvenintegral mit unterer Grenze"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Kurvenintegral mit oberer Grenze"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Kurvenintegral mit unterer und oberer Grenze"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "doppeltes Kurvenintegral"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "doppeltes Kurvenintegral mit unterer Grenze"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "doppeltes Kurvenintegral mit oberer Grenze"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "doppeltes Kurvenintegral mit unterer und oberer Grenze"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "dreifaches Kurvenintegral"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "dreifaches Kurvenintegral mit unterer Grenze"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "dreifaches Kurvenintegral mit oberer Grenze"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "dreifaches Kurvenintegral mit unterer und oberer Grenze"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Akzent nach rechts oben"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Überstrich"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Breve"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "umgekehrtes Dach"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Kreis"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Punkt"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "doppelter Punkt"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "dreifacher Punkt"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Akzent nach rechts unten"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Dach"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tilde"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Vektorpfeil"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Harpune"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Unterstreichung"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Überstreichung"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Durchstreichung"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "transparent"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Fettschrift"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Kursivschrift"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Schriftgröße"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Schriftart"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Zeichenfarbe schwarz"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Zeichenfarbe blau"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Zeichenfarbe grün"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Zeichenfarbe rot"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Zeichenfarbe grau"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Zeichenfarbe hellgrün"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Zeichenfarbe dunkelrot"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Zeichenfarbe dunkelblau"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Zeichenfarbe oliv"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Zeichenfarbe lila"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Zeichenfarbe silber"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Zeichenfarbe türkis"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Zeichenfarbe gelb"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "Zeichenfarbe RGB"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Gruppierungsklammern"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "runde Klammern"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "eckige Klammern"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "doppelte eckige Klammern"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "geschweifte Klammern"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "spitze Klammern"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Aufrundungsklammern"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Abrundungsklammern"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "senkrechte Linien"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "doppelte senkrechte Linien"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Operatorklammern"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "runde Klammern (skalierbar)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "eckige Klammern (skalierbar)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "doppelte eckige Klammern (skalierbar)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "geschweifte Klammern (skalierbar)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "spitze Klammern (skalierbar)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Aufrundungsklammern (skalierbar)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Abrundungsklammern (skalierbar)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "senkrechte Linien (skalierbar)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "doppelte senkrechte Linien (skalierbar)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Operatorklammern (skalierbar)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Berechnet für"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "geschweifte Klammer oberhalb (skalierbar)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "geschweifte Klammer unterhalb (skalierbar)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "tiefstellen rechts"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "hochstellen rechts"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "tiefstellen links"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "hochstellen links"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "tiefstellen unten"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "hochstellen oben"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "schmaler Freiraum"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "weiter Freiraum"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Zeilenumbruch"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "vertikale Anordnung (2 Elemente)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "vertikale Anordnung"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Matrix"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "linksbündig ausrichten"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "zentriert ausrichten"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "rechtsbündig ausrichten"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Aleph"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "leere Menge"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Realteil"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Imaginärteil"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Unendlich"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Partial"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr "Laplace-Transformation"
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr "Fourier-Transformation"
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstraß-p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Punkte mittig"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Punkte schräg nach oben"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Punkte schräg nach unten"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Punkte unten"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Punkte senkrecht"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Verkettung"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Division (weiter Schrägstrich)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Backslash (weiter Rückstrich)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "teilt"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "teilt nicht"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Doppelpfeil nach links"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Doppelpfeil nach links und rechts"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Doppelpfeil nach rechts"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Menge der natürlichen Zahlen"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Menge der ganzen Zahlen"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Menge der rationalen Zahlen"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Menge der reellen Zahlen"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Menge der komplexen Zahlen"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "breites Dach"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "breite Tilde"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "breiter Vektorpfeil"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "breite Harpune"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h quer"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda quer"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Pfeil nach links"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Pfeil nach rechts"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Pfeil nach oben"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Pfeil nach unten"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "kein Freiraum"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "von niedrigerem Rang"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "von niedrigerem oder gleichem Rang"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "von niedrigerem oder äquivalentem Rang"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "von höherem Rang"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "von höherem oder gleichem Rang"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "von höherem oder äquivalentem Rang"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "nicht von niedrigerem Rang"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "nicht von höherem Rang"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Unäre/Binäre Operatoren"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Relationen"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Mengenoperationen"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funktionen"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operatoren"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Attribute"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Klammern"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formatierungen"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Sonstiges"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Beispiele"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Kreisumfang"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Äquivalenz von Masse und Energie"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Satz des Pythagoras"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Normalverteilung"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Normal"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kursiv"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Fett"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "schwarz"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blau"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "grün"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "rot"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "grau"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "hellgrün"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "dunkelrot"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "dunkelblau"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliv"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "lila"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "silber"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "türkis"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "gelb"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "unsichtbar"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "Größe"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "Schriftart"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "links"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "zentriert"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "rechts"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Kommandos"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formel"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Dokument wird gespeichert …"
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Formel"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "FEHLER : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Unerwartetes Zeichen"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Unerwartete Zeichen"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' erwartet"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' erwartet"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' erwartet"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' erwartet"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Linkes und rechtes Symbol nicht übereinstimmend"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans' oder 'serif' erwartet"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' gefolgt von einem unerwarteten Zeichen"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Doppelte Ausrichtung ist nicht erlaubt"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Doppelte Tief-/Hochstellung ist nicht erlaubt"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' erwartet"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Zeichenfarbe erwartet"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' erwartet"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Inhalt"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titel"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formeltext"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "~Umrandung"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Größe"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Original~größe"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "An ~Seitengröße anpassen"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skaliert"
diff --git a/source/de/svtools/messages.po b/source/de/svtools/messages.po
index 680434f8843..b3166dd9b78 100644
--- a/source/de/svtools/messages.po
+++ b/source/de/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-04 20:46+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/de/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Rückgängig: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Wiederherstellen: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Letzter ~Befehl: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Unformatierter Text"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Unformatierter Text (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bitmap-Bild (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface-Metadatei (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich text formatting (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich text formatting (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME Zeichnung-Format"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView-Bitmap/Animation (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Status Info vom Svx Internal Link"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME Link (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape Lesezeichen"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star Server Format"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star Objekt Format"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet Objekt"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "PlugIn Objekt"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 Objekt"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 Objekt"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 Objekt"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 Objekt"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 Objekt"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Global 4.0 Objekt"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Global 5.0 Objekt"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw Objekt"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 Objekt"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 Objekt"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 Objekt"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc Objekt"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 Objekt"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 Objekt"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart Objekt"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 Objekt"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 Objekt"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage Objekt"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 Objekt"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 Objekt"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath Objekt"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 Objekt"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 Objekt"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint Objekt"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE Link)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word Objekt"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet Objekt"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office Dokument Objekt"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes Dokument Info"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx Dokument"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 Objekt"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Bildobjekt"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer Objekt"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web Objekt"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Global Objekt"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw Objekt"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress Objekt"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc Objekt"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart Objekt"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math Objekt"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows Metadatei"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Datenquellen Objekt"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Datenquellen Tabelle"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL Abfrage"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 Dialog"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Hyperlink"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-Format ohne Kommentare"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objekt % kann nicht eingefügt werden."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objekt aus Datei % kann nicht eingefügt werden."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Weitere Objekte"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Unbekannte Quelle"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1234 +501,1234 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumerisch"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Zeichensatz"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Wörterbuch"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonbuch"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Phonetisch (alphanumerisch zuerst)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Phonetisch (alphanumerisch zuletzt)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumerisch"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Wörterbuch"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Phonetisch (alphanumerisch zuerst, nach Silben gruppiert)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Phonetisch (alphanumerisch zuerst, nach Konsonanten gruppiert)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Phonetisch (alphanumerisch zuletzt, nach Silben gruppiert)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Phonetisch (alphanumerisch zuletzt, nach Konsonanten gruppiert)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Leicht"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Leicht Kursiv"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Standard"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kursiv"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Fett"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Fett Kursiv"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Extrafett"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Extrafett Kursiv"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Normal"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Fett Schräg"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Schmal"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Schmal Fett"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Schmal Fett Kursiv"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Schmal Fett Schräg"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Schmal Kursiv"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Schmal Schräg"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Extraleicht"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Extraleicht Kursiv"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Schräg"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Halbfett"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Halbfett Kursiv"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Für Ausdruck und Anzeige am Bildschirm wird die gleiche Schriftart verwendet."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Druckerschrift. Die Bildschirmanzeige kann etwas abweichen."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Dieser Schriftstil wird nachgebildet oder der am besten passende Stil wird verwendet."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Diese Schriftart ist nicht installiert. Die am besten passende vorhandene Schriftart wird benutzt."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Zum Anfang"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Nach links"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Nach rechts"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Ans Ende"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Hinzufügen"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Horizontales Lineal"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Vertikales Lineal"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 Bit-Schwellenwert"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 Bit-Gedithert"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 Bit-Graustufen"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 Bit-Farben"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 Bit-Graustufen"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 Bit-Farben"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 Bit-Echtfarben"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Das Bild belegt ungefähr %1 KB an Arbeitsspeicher."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Das Bild belegt ungefähr %1 KB an Arbeitsspeicher, die Dateigröße beträgt %2 KB."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Die Dateigröße beträgt %1 KB."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Host"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Port"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Andere CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Bereit"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Angehalten"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Löschen anstehend"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Ausgelastet"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Initialisieren"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Wartend"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Anlaufen"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Verarbeiten"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Drucke"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Offline"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Fehler"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Unbekannter Server"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Papierstau"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Papiermangel"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Manuelle Papierzufuhr"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Papierproblem"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "E/A aktiv"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Ausgabefach ist voll"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Niedriger Tonerstand"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Kein Toner"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Seitenverwurf"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Benutzerzugriff notwendig"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Zu wenig Arbeitsspeicher"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Abdeckung offen"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Energiesparmodus"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Standarddrucker"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d Dokumente"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<kein>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Firma"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Abteilung"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Vorname"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Name"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Straße"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Land"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "PLZ"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Ort"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titel"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Position"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Anrede"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Kürzel"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Grußformel"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Telefon (privat)"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Telefon (geschäftlich)"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-Mail"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Notiz"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Benutzer 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Benutzer 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Benutzer 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Benutzer 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Bundesland"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Telefon Büro"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Telefon Funk"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Handy"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Telefon andere"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalender"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Einladen"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$s $service$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME benötigt eine Java-Laufzeitumgebung (JRE), um diese Aufgabe durchführen zu können. Bitte installieren Sie eine JRE und starten Sie dann %PRODUCTNAME neu. %FAQLINK"
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME benötigt eine %BITNESS-Bit Java Runtime Environment (JRE), um diese Aufgabe auszuführen. Bitte installieren Sie eine JRE und starten Sie %PRODUCTNAME neu. %FAQLINK"
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME benötigt Oracles Java Development Kit (JDK) für macOS 10.10 oder höher, um diese Aufgabe auszuführen. Bitte installieren Sie es und starten Sie %PRODUCTNAME neu. %FAQLINK"
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Die Konfiguration von %PRODUCTNAME wurde geändert. Wählen Sie unter »%PRODUCTNAME – Einstellungen – %PRODUCTNAME – Erweitert« diejenige Java-Laufzeitumgebung aus, die %PRODUCTNAME verwenden soll."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Die Konfiguration von %PRODUCTNAME wurde geändert. Wählen Sie unter »Extras – Optionen… – %PRODUCTNAME – Erweitert« diejenige Java-Laufzeitumgebung aus, die %PRODUCTNAME verwenden soll."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME erfordert eine Java-Laufzeitumgebung (JRE), um diese Aufgabe auszuführen. Die ausgewählte JRE ist defekt. Bitte wählen Sie eine andere Version aus oder installieren Sie eine neue JRE und wählen Sie diese unter »%PRODUCTNAME – Einstellungen – %PRODUCTNAME – Erweitert« aus."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME erfordert eine Java-Laufzeitumgebung (JRE), um diese Aufgabe auszuführen. Die ausgewählte JRE ist defekt. Bitte wählen Sie eine andere Version aus oder installieren Sie eine neue JRE und wählen Sie diese unter »Extras – Optionen… – %PRODUCTNAME – Erweitert« aus."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE ist erforderlich"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE auswählen"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE ist defekt"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Quellcode"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Lesezeichen-Datei"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Bilder"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfigurationsdatei"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Anwendung"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Datenbank-Tabelle"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Systemdatei"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word Dokument"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Hilfedatei"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-Dokument"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Archivdatei"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Protokolldatei"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice Datenbank"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 Globaldokument"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice Zeichnung"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Textdatei"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Verknüpfung"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0–5.0 Vorlage"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel Dokument"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel Vorlage"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Stapelverarbeitungsdatei"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Datei"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Ordner"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Textdokument"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Tabellendokument"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Präsentation"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Zeichnung"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-Dokument"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Globaldokument"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formel"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Datenbank"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 Tabellendokumentvorlage"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 Zeichnungsvorlage"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 Präsentationsvorlage"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 Textdokumentvorlage"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Lokales Laufwerk"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Diskettenlaufwerk"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM-Laufwerk"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Netzwerkverbindung"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint Dokument"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint Vorlage"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint Show"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 Formel"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 Diagramm"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 Zeichnung"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 Tabellendokument"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 Präsentation"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 Textdokument"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 Globaldokument"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML Dokument"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument Datenbank"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument Zeichnung"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument Formel"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument Globaldokument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument Präsentation"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument Tabellendokument"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument Text"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument Tabellendokumentvorlage"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument Zeichnungsdokumentvorlage"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument Präsentationsdokumentvorlage"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument Textdokument Vorlage"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME Extension"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell Rechtschreibprüfung"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen Bindestrich"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes Thesaurus"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Liste ignorierter Wörter"
diff --git a/source/de/svx/messages.po b/source/de/svx/messages.po
index 476127e31ec..572a151c3af 100644
--- a/source/de/svx/messages.po
+++ b/source/de/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-04 20:46+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/de/>\n"
@@ -16332,11 +16332,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Pl_atzhalter"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_Kommentare"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/de/sw/messages.po b/source/de/sw/messages.po
index 9826b4815c6..1f62f364cfc 100644
--- a/source/de/sw/messages.po
+++ b/source/de/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-04 20:46+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/de/>\n"
@@ -17438,86 +17438,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr "Geben Sie die gewünschte Anzahl an Zeilen für die Tabelle ein."
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Allgemein"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "Übe_rschrift"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr "Enthält eine Zeile mit Überschriften in der Tabelle."
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Kopfzeile auf _neuen Seiten wiederholen"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr "Wiederholt die Tabellenüberschrift am oberen Rand der Folgeseiten, wenn sich die Tabelle über mehr als eine Seite erstreckt."
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Tabelle nicht an Seiten _umbrechen"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr "Bewahrt die Tabelle davor, auf mehr als einer Seite zu sein."
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr "Wählen Sie die Anzahl an Zeilen, die die Überschriften enthalten."
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "_Kopfzeilen:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Optionen"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr "Zeigt eine Vorschau der aktuellen Auswahl an."
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr "Wählen Sie eine vorgefertigte Vorlage für die neue Tabelle."
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Formatvorlagen"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr "Fügt eine Tabelle in das Dokument ein. Sie können auch auf den Pfeil rechts von der Schaltfläche klicken, durch Ziehen die gewünschte Zeilen- und Spaltenanzahl auswählen und dann in die letzte Zelle klicken."
@@ -20031,289 +20037,289 @@ msgid "Text"
msgstr "Text"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Masteransicht umschalten"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Schaltet zwischen der Masteransicht und der normalen Ansicht um, wenn ein Globaldokument geöffnet ist."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr "Wechseln zu Seite"
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr "Geben Sie die Seitenzahl ein und drücken Sie die Eingabetaste. Verwenden Sie die Pfeiltasten, um zur nächsten Seite vor oder zurück zu gelangen."
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Inhalt der Navigationsansicht"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr "Schaltet zwischen der Anzeige aller Navigatorkategorien und der ausgewählten Kategorie um."
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Kopfzeile"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr "Bewegt den Cursor in die Kopfzeile beziehungsweise aus der Kopfzeile zurück in den Textbereich des Dokuments."
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Fußzeile"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr "Bewegt den Cursor in die Fußzeile beziehungsweise aus der Fußzeile zurück in den Textbereich des Dokuments."
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Anker ↔ Text"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr "Wechselt zwischen dem Fußnotentext und der Fußnotenverankerung."
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Merker setzen"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Klicken Sie hier, um an der aktuellen Cursorposition einen Merker zu setzen. Sie können bis zu fünf Merker definieren. Um zu einem Merker zu springen, klicken Sie auf das Symbol Navigation, dann im Navigationsfenster auf das Symbol Merker und schließlich auf das Symbol Voriger beziehungsweise Nächster."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Angezeigte Überschriftenebenen"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr "Klicken Sie auf dieses Symbol und wählen Sie dann die Anzahl der im Navigator anzuzeigenden Überschrift-Gliederungsebenen aus."
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Auswahlbox ein/aus"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr "Blendet die Liste im Navigator ein oder aus."
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Ebene höher verschieben"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Erhöht die Gliederungsebene der ausgewählten Überschrift sowie der unterhalb dieser Überschrift stehenden Überschriften um eine Ebene. Um nur die Gliederungsebene der ausgewählten Überschrift zu erhöhen, halten Sie die Taste Strg gedrückt und klicken dann auf dieses Symbol."
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Ebene niedriger verschieben"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Verringert die Gliederungsebene der ausgewählten Überschrift sowie der unterhalb dieser Überschrift stehenden Überschriften um eine Ebene. Um nur die Gliederungsebene der ausgewählten Überschrift zu verringern, halten Sie die Taste Strg gedrückt und klicken dann auf dieses Symbol."
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Kapitel höher verschieben"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Verschiebt die ausgewählte Überschrift sowie den darunter stehenden Text im Navigator wie auch im Dokument um eine Überschriften-Position nach oben. Um nur die ausgewählte Überschrift, nicht jedoch den damit verbundenen Text zu verschieben, halten Sie die Taste Strg gedrückt und klicken dann auf dieses Symbol."
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Kapitel niedriger verschieben"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Verschiebt die ausgewählte Überschrift sowie den darunter stehenden Text im Navigator wie auch im Dokument um eine Überschriften-Position nach unten. Um nur die ausgewählte Überschrift, nicht jedoch den damit verbundenen Text zu verschieben, halten Sie die Taste Strg gedrückt und klicken dann auf dieses Symbol."
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Ziehmodus"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr "Legt die Ziehen-und-Ablegen-Optionen zum Einfügen von Elementen aus dem Navigator in ein Dokument fest, beispielsweise beim Einfügen als Hyperlink. Klicken Sie auf dieses Symbol und wählen dann die gewünschte Option aus."
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Dokument"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Aktives Fenster"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Masteransicht umschalten"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Schaltet zwischen der Masteransicht und der normalen Ansicht um, wenn ein Globaldokument geöffnet ist."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Bearbeiten"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr "Dient zum Bearbeiten der im Navigator ausgewählten Komponente. Handelt es sich bei der Auswahl um eine Datei, so wird diese Datei zur Bearbeitung geöffnet. Handelt es sich bei der Auswahl um ein Verzeichnis, wird der Dialog Verzeichnis geöffnet."
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Aktualisieren"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Klicken Sie, und wählen Sie den zu aktualisierenden Inhalt aus."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Einfügen"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Fügt eine Datei, ein Verzeichnis oder ein neues Dokument in das Globaldokument ein."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Inhalte mitspeichern"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr "Speichert den Inhalt der verknüpften Dateien im Globaldokument als Kopie. Dadurch wird gewährleistet, dass der aktuelle Dokumentinhalt selbst dann verfügbar ist, wenn ein Zugriff auf die verknüpften Dateien nicht möglich ist."
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Nach oben verschieben"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr "Verschiebt die Auswahl in der Navigatorliste um eine Position nach oben."
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Nach unten verschieben"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr "Verschiebt die Auswahl in der Navigatorliste um eine Position nach unten."
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Auswahl"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Verzeichnisse"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Verknüpfungen"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Alle"
diff --git a/source/dgo/sc/messages.po b/source/dgo/sc/messages.po
index 838e9d30333..30a052b05ff 100644
--- a/source/dgo/sc/messages.po
+++ b/source/dgo/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29490,39 +29490,45 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
#, fuzzy
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "दस्तावेज दी रूप-रचना लेई छापक मीट्रिक्स बरतो"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr ""
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr ""
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr ""
diff --git a/source/dgo/sfx2/messages.po b/source/dgo/sfx2/messages.po
index 5ca19256224..c40b127cdc8 100644
--- a/source/dgo/sfx2/messages.po
+++ b/source/dgo/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-10-21 19:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1642,288 +1642,251 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "डॉक करो"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "अनडाक करो"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "छंटाई विकल्प"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr ""
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Customisation"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr ""
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr ""
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "हटाओ"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4250,6 +4213,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "म्हेसो... (~c)"
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/dgo/starmath/messages.po b/source/dgo/starmath/messages.po
index 319889b2830..2140e3ef6c8 100644
--- a/source/dgo/starmath/messages.po
+++ b/source/dgo/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 14:24+0100\n"
+"POT-Creation-Date: 2020-11-22 13:31+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"
@@ -418,2105 +418,2238 @@ msgid "or"
msgstr "जां"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+ नशान "
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "- नशान "
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+- नशान"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "-+ नशान"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "बूलियन NOT बूलियन नेईं"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "जमा + "
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr " बाकी - "
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
#, fuzzy
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "जर्ब (बिंदी ) "
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "जर्ब (x) "
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "जर्ब (*) "
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "तक्सीम (स्लैश) "
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "तक्सीम (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "तक्सीम (फ्रैक्शन) "
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "बूलियन AND बूलियन ते"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "बूलियन OR बूलियन जां"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "बरोबर ऐ "
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "बरोबर नेईं ऐ"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "शा घट्ट ऐ "
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "शा बद्ध ऐ शा बड्डा ऐ"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
#, fuzzy
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "शा घट्ट जां दे बरोबर ऐ"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
#, fuzzy
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "शा बद्ध जां दे बरोबर ऐ"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
#, fuzzy
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "शा घट्ट जां दे बरोबर ऐ"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
#, fuzzy
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "शा बद्ध जां दे बरोबर ऐ"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr ""
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
#, fuzzy
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "शा बद्ध ऐ "
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "दे अनुरूप ऐ "
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "लगभग बरोबर ऐ "
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "दे जनेहा ऐ "
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "इक जनेहा जां बरोबर ऐ "
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "दे निस्बत ऐ "
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "दे समकोणाकार ऐ"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "दे समानांतर ऐ"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "पास्सैTowards"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "च ऐ "
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "च नेईं ऐ "
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "कबूल करदा ऐ "
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "यूनियन "
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "प्रतिच्छेद "
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "फर्क "
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "उप सैट्ट "
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "उप सैट्ट जां दे बरोबर "
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "सुपरसैट्ट "
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "सुपरसैट्ट जां दे बरोबर "
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "उपसैट्ट नेईं"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "उपसैट्ट नेईं जां बरोबर "
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "सुपरसैट्ट नेईं"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "सुपरसैट्ट नेईं जां बरोबर "
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "बिल्कुल मुल्ल "
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "फैक्टोरियल "
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "वर्ग मूल "
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "n-th वर्गमूल "
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
#, fuzzy
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "ऐक्सपोनेशियल फंक्शन "
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
#, fuzzy
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "ऐक्सपोनेशियल फंक्शन "
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "कुदरती लोगरिद्‌म "
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "लोगरिद्‌म"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "साइन"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "कोसाइन "
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "टैंजैंट "
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "कोटैंजैंट "
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "आर्कसाइन "
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "आर्ककोसाइन "
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "आर्कटैंजैंट "
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "आर्ककोटैंजैंट"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "हायपरबोलिक साइन "
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "हायपरबोलिक को साइन "
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "हायपरबोलिक टैंजैंट "
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "हायपरबोलिक को टैंजैंट"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "खित्ता हायपरबोलिक साइन "
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "खित्ता हायपरबोलिक कोसाइन "
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "खित्ता हायपरबोलिक टैंजैंट"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "खित्ता हायपरबोलिक कोटैंजैंट"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "कुल जोड़ जमाजोड़"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
#, fuzzy
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "उप-लेखन थल्लै"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
#, fuzzy
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "उप्पर-लेखन धुर उप्पर"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr ""
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "उत्पादन"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
#, fuzzy
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "उप-लेखन थल्लै"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr ""
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr ""
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "सह उत्पादन"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
#, fuzzy
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "उप-लेखन थल्लै"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr ""
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr ""
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "लाइम्स "
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
#, fuzzy
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "उप-लेखन थल्लै"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
#, fuzzy
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "उप्पर-लेखन धुर उप्पर"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr ""
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "उत्थै मजूद ऐ "
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
#, fuzzy
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "उत्थै मजूद ऐ "
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
#, fuzzy
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "सभनें लेई "
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "सबूरा"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "दोह्‌रा सबूरा"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "त्रेह्‌रा सबूरा "
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "कर्व सबूरा "
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "दोह्‌रा कर्व सबूरा"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "त्रेह्‌रा कर्व सबूरा"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "त्रिक्खा बलाघात "
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr " लकीर उप्पर"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "लघु स्वर दा चिॕन्न"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "उल्टा सर्कम्फ्लैक्स "
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "वृत्त "
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "बिंदी "
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "दोह्‌री बिंदी"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "त्रेह्‌री बिंदी "
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "मुत्थर बलाघात"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "सर्कमफ्लेक्स"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "टिल्ड "
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "वैक्टर तीर"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr " लकीर खॕल्ल"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr " लकीर मुक्की"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "लकीर आरपार "
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "पारदर्शक पारदर्शी"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "मुट्टा फांट "
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "इटैलिक फांट "
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "परतियै नाप देओ परतियै नाप करो (~t)"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "फांट बदलो "
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr ""
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr ""
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr ""
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr ""
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
#, fuzzy
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "रंग चोन-कर्ता"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
#, fuzzy
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "रंग टैब"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr ""
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "समूह् ब्रैकटां "
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "गोल ब्रैकटां "
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "चौरस ब्रैकटां "
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "दोह्‌रियां चौरस ब्रैकटां "
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "कमान्नियां "
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "कोण ब्रैकटां "
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr ""
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "केह्‌रियां लकीरां"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "दोह्‌रियां लकीरां"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "प्रचालक ब्रैकटां "
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "गोल ब्रैकटां (नापने जोग) "
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "चौरस ब्रैकटां (नापने जोग)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "दोह्‌रियां चौरस ब्रैकटां (नापने जोग)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "कमान्नियां (नापने जोग)) "
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "कोण ब्रैकटां (नापने जोग)) "
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "केह्‌रियां लकीरां(नापने जोग)) "
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "दोह्‌रियां लकीरां(नापने जोग)) "
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "प्रचालक ब्रैकटां (नापने जोग)) "
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "कमान्नियां धुर उप्पर(नापने जोग)) "
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "कमान्नियां थल्लै(नापने जोग)) "
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "उप-लेखन सज्जै"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "पावर "
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "उप-लेखन खब्बै"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "उप्पर-लेखन खब्बै"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "उप-लेखन थल्लै"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "उप्पर-लेखन धुर उप्पर"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "निक्का अंतर "
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "कोरा"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "नमीं लकीर"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "खड़ोतमां स्टैक (2 तत्व) "
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "खड़ोतमां स्टैक"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "मैट्रिक्स स्टैक "
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "खब्बै सेधीकरण करो सेधीकरण खब्बै करो"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "केंदर च सेधीकरण करो Align Centre"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "सज्जै सेधीकरण करो सेधीकरण सज्जै करो"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "अलेफ "
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "खाल्ली सैट्ट "
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "असली हिस्सा"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "काल्पनक हिस्सा"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
#, fuzzy
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "अनंत "
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "आंशक"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "आंशक"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "वैयर्स्ट्रस्स पि "
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "मझाटै बिंदियां "
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "धुर उप्परे गी बिंदियां"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
#, fuzzy
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "थल्ले गी बिंदियां "
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "थल्ले पर बिंदियां "
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "खड़ोतमीं चाल्ली बिंदियां"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "लड़ीबद्धलड़ीबद्ध (~p)"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
#, fuzzy
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "तक्सीम (स्लैश) "
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "तक्सीम करदा ऐ"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "तक्सीम नेईं करदा ऐ"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "दोह्‌रा तीर खब्बै "
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "दोह्‌रा तीर खब्बै ते सज्जै"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "दोह्‌रा तीर सज्जै"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "कुदरती नंबर सैट्ट "
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "पूर्णांक सैट्ट"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "पूर्णांक नंबर सैट्ट"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "असली नंबर सैट्ट "
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "जटल नंबर सैट्ट"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "बड्डा सर्कम्फ्लैक्स"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "बड्डा टिल्ड "
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "बड्डा वैक्टर तीर"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h पट्टी "
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "लांब्डा पट्टी "
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "खब्बा तीर "
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "सज्जा तीर "
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "उप्पर तीर उप्परला तीर"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "खॕल्ल तीर ख’लका तीर"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr ""
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr ""
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr ""
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr ""
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr ""
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr ""
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr ""
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr ""
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr ""
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "यूनरी/बाइनरी प्रचालक(बहु.)"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "सरबंध(बहु.)"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
#, fuzzy
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "आप्रेशन(बहु.) सैट्ट करो "
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "फंक्शन (बहु.)"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
#, fuzzy
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "प्रचालक(बहु.) "
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "खासियतां"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
#, fuzzy
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "ब्रैकटां "
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
#, fuzzy
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "रूप-रचनां"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "बाकी दुए "
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
#, fuzzy
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "उदाहरण"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "मानक"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "इटैलिक"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "मुट्टा "
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "काला"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "नीला"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "सैल्ला"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "सूहा"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "स्लेटी Grey"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "समां "
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "जामुनी"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "पीला"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "छपैलो"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "नाप "
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "फांट"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "खब्बा"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "केंदर"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "सज्जा"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "आदेश(बहु.)"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "फार्मूला"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "दस्तावेज बचा करदा ऐ... "
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION फार्मूला"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "गल्ती: "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "अनअपेक्षत वर्ण "
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' अपेक्षत "
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' अपेक्षत "
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' अपेक्षत "
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' अपेक्षत "
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' अपेक्षत "
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "रंग लोड़दा ऐ"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' अपेक्षत "
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME API "
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "विशे-सूची "
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "शीर्शक "
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~फार्मूला इबारत "
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "बाडर (बहु.)"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "नाप "
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "मौलिक नाप "
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~सफे दे काबल करो "
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
diff --git a/source/dgo/svtools/messages.po b/source/dgo/svtools/messages.po
index 17140218eb4..fa29ddd318d 100644
--- a/source/dgo/svtools/messages.po
+++ b/source/dgo/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,482 +17,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "अनकीता करो: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~दर्‌हाओ: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "बिन रूप-रचत इबारत "
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx अंदरूनी कड़ी शा वस्तुस्थिति जानकारी "
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "नैट्टस्केप सफा- चि'न्न "
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "स्टार सर्वर रूप-रचना "
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "स्टार चीज रूप-रचना "
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "ैप्लेट चीज "
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "प्लग-इन चीज "
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "स्टार लेखक 3.0 चीज "
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "स्टार लेखक 4.0 चीज "
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "स्टार लेखक 5.0 चीज "
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "स्टार लेखक / वैब 4.0 चीज "
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "स्टार लेखक / वैब 5.0 चीज "
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "स्टार लेखक / मास्टर 4.0 चीज "
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "स्टार लेखक /मास्टर 5.0 चीज "
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "स्टार ड्रा चीज "
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "स्टार ड्रा 4.0 चीज "
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "स्टार इंप्रैस 5.0 चीज "
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "स्टार ड्रा 5.0 चीज "
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "स्टार कल्क चीज "
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "स्टार कल्क 4.0 चीज "
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "स्टार कल्क 5.0 चीज "
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "स्टार चार्ट चीज "
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "स्टार चार्ट 4.0 चीज "
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "स्टार चार्ट 5.0 चीज "
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "स्टार बिंब चीज "
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "स्टार बिंब 4.0 चीज "
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "स्टार बिंब 5.0 चीज "
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "स्टार स्हाब चीज "
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "स्टार स्हाब 4.0 चीज "
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "स्टार स्हाब 5.0 चीज "
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "स्टारचीज पेंट चीज "
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk "
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "माइक्रोसाफ्ट वर्ड चीज "
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "स्टार चगाठ सैट्ट चीज "
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "दफ्तरी दस्तावेज चीज "
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "नोट(बहु.)दस्तावेज जानकारी "
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx दस्तावेज "
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "स्टार चार्ट 5.0 चीज "
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "ग्राफिक चीज "
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "विंडोज मैटाफाइल "
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "डेटा स्रोत चीज "
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "डेटा स्रोत टेबल"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQLपुच्छ "
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "कड़ी"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "बिजन टिप्पणियें HTMLरूप-रचना "
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "चीज % दा समावेश नेईं होई सकेआ ."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "फाइल % चा चीजा दा समावेश नेईं होई सकेआ ."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "होर चीजां "
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "अनजांता स्रोत "
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "बाइटां "
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -500,1253 +500,1253 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "अल्फा न्यूमैरिक"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "नार्मल"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "वर्ण सैट्ट "
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "शब्दकोश "
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "पिन्यीन "
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "छुहाका "
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "मूल तत्व"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "यूनिकोड "
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "ज़ुइन "
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "फोन पुस्तक "
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "ध्वन्यात्मक (अल्फा न्यूमैरिक पैह्‌ला) "
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "ध्वन्यात्मक (अल्फा न्यूमैरिक खीरला) "
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "अल्फा न्यूमैरिक"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "शब्दकोश "
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "पिन्यीन "
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "मूल तत्व"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "छुहाका "
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "ज़ुइन "
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "ध्वन्यात्मक (अल्फा न्यूमैरिक पैह्‌ला, अक्खरें मताबक समूह् कीते दा) "
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "ध्वन्यात्मक (अल्फा न्यूमैरिक पैह्‌ला, व्यंजनें मताबक समूह् कीते दा) "
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "ध्वन्यात्मक (अल्फा न्यूमैरिक खीरला, अक्खरें मताबक समूह् कीते दा"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "ध्वन्यात्मक (अल्फा न्यूमैरिक खीरला, व्यंजनें मताबक समूह् कीते दा) "
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "फिक्का "
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "फिक्का इटैलिक "
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "नियमत "
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "इटैलिक"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "मुट्टा "
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "मुट्टा इटैलिक"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "काला "
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "काला इटैलिक "
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "पुस्तक "
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "संघना कीते दा"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "अद्ध-मुट्टा"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr " इ'यै फांट दौनें - थुआढ़े छापक ते परदे पर बरतोग."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "एह् इक छापक फांट ऐ. परदे दा बिंब बक्खरा होई सकदा ऐ."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "इस फांट शैली दी नकल होई जाग जां नेड़मीं मेल खंदी शैली बरतोग"
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "एह् फांट प्रस्थापत नेईं ऐ. नेड़मां उपलब्ध फांट बरतोग. "
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "चगाठ लेओ "
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "खब्बै लेओ "
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "सज्जै लेओ "
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "जमा"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr " आडा बाहेरै गी\t"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "खड़ोतमां फुट्टा"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr " 1 बिट थ्रैशोल्ड"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr " 2 बिट डिथरशुदा"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr " 4 बिट ग्रेमापक(बहु.)"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr " 4 बिट ग्रेमापक(बहु.)"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 बिट स्हेई रंग "
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "जवाब डाका पाओ/ डाक"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "छांटो"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "थम्मो "
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Initialising"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "बल्गा करदा ऐ"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "छपाई"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Off-line"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "गल्ती"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "सफा म्हेसो"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr " नाकाफी मैमरी "
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "बिलानिर्देश प्रिंटर"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
#, fuzzy
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "मेरा दस्तावेज "
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<none>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "कंपनी "
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "विभाग "
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "पैह्‌ला नांऽ "
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "खीरी नांऽ "
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "ग'ली"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "देश "
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "ज़िप कोड "
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "शैह्‌र "
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "शीर्शक "
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "स्थिति "
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "सिरनामां फार्म"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "नांऽ दे पैह्‌ले अक्खर "
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "मानार्थ बंद "
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "टैलीफोन(घर) "
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "टैलीफोन (काम) "
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL "
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "नोट"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "बरतूनी 1 "
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "बरतूनी 2 "
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "बरतूनी 3 "
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "बरतूनी 4 "
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "(ID) "
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "रियासत "
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "टैलीफोन (दफ्तर) "
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "पेजर "
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "मोबाइल "
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "टैलीफोन – बाकी दुए "
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "कलंडर"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "साद्दा देओ "
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE लोड़दा "
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE चुनो "
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE दोशपूर्ण ऐ "
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "स्रोत कोड "
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "सफा-चि'न्न फाइल"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "ग्राफिक(बहु.)"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "संरूपण फाइल"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "बरतून "
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "डेटाबेस टेबल "
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "सिस्टम फाइल"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word दस्तावेज "
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "मदद फाइल"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML दस्तावेज "
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "आर्काइव फाइल"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "लाग फाइल"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "स्टार आफिस 5.0 सच्चा "
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 मास्टर दस्तावेज "
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "स्टार आफिस 5.0 सच्चा "
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "इबारत फाइल"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "कड़ी "
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "स्टार आफिस 5.0 सच्चा "
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "माइक्रोसाफ्ट ऐक्सैल दस्तावेज "
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "माइक्रोसाफ्ट ऐक्सैल सच्चा "
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "दस्ता फाइल"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "फाइल"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "फोल्डर"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "इबारत दस्तावेज "
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "स्प्रैडशीट "
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "प्रस्तुति "
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "चित्रकारी "
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML दस्तावेज "
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "मास्टर दस्तावेज "
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "फार्मूला "
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "डेटाबेस "
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "स्थानी ड्राइव "
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "डिस्क ड्राइव "
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM ड्राइव "
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "नैट्टवर्क कनैक्शन "
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "माइक्रोसाफ्ट पावर पोआइंट दस्तावेज "
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "माइक्रोसाफ्ट पावर पोआइंट सच्चा "
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "माइक्रोसाफ्ट पावर पोआइंट शो"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "स्हाबML दस्तावेज "
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "खु'ल्ला दस्तावेज डेटाबेस "
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "खु'ल्ला दस्तावेज चित्रकारी "
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "खु'ल्ला दस्तावेज फार्मूला"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "खु'ल्ला दस्तावेज मास्टर दस्तावेज "
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "खु'ल्ला दस्तावेज प्रस्तुति "
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "खु'ल्ला दस्तावेज स्प्रैडशीट "
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "खु'ल्ला दस्तावेज इबारत "
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "खु'ल्ला दस्तावेज स्प्रैडशीट सच्चा "
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "खु'ल्ला दस्तावेज चित्रकारी सच्चा "
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "खु'ल्ला दस्तावेज प्रस्तुति सच्चा "
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "खु'ल्ला दस्तावेज इबारत सच्चा "
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME विस्तार"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/dgo/svx/messages.po b/source/dgo/svx/messages.po
index 7b7ec04d08c..14aadad47aa 100644
--- a/source/dgo/svx/messages.po
+++ b/source/dgo/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: dgo (generated) <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/dgo/>\n"
@@ -16771,12 +16771,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
-#, fuzzy
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "टिप्पणियां"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/dgo/sw/messages.po b/source/dgo/sw/messages.po
index 3cc547fed17..c20222b19d0 100644
--- a/source/dgo/sw/messages.po
+++ b/source/dgo/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18010,88 +18010,94 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "सधारण"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
#, fuzzy
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "सिरनांऽ "
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr ""
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr ""
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr ""
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
#, fuzzy
msgctxt "inserttable|label2"
msgid "Options"
msgstr "विकल्प(बहु.) "
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20717,296 +20723,296 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "सिरालेख"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
#, fuzzy
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "पैरलेख "
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
#, fuzzy
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "स्तर च उन्नती करो"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
#, fuzzy
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "स्तर च तरट्टी करो "
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
#, fuzzy
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "खिच्चू अवस्था "
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "दस्तावेज "
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
#, fuzzy
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "क्रियाशील विंडो "
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "संपादन"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "अपडेट करो"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "समावेश"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
#, fuzzy
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "उप्पर लेओ"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
#, fuzzy
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "खʼल्ल लेओ"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po
index 809be40ad19..907a3dd071e 100644
--- a/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/dsb/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-04 20:47+0000\n"
+"PO-Revision-Date: 2020-11-17 20:36+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/dsb/>\n"
"Language: dsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1565003328.000000\n"
#. W5ukN
@@ -13574,7 +13574,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Regular Triangle"
-msgstr ""
+msgstr "Pśawidłowny tśirožk"
#. BUJ28
#: Effects.xcu
@@ -29886,7 +29886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show ~Tracked Changes"
-msgstr ""
+msgstr "~Slědowane změny pokazaś"
#. sMgCx
#: WriterCommands.xcu
diff --git a/source/dsb/sc/messages.po b/source/dsb/sc/messages.po
index 7aa72be4668..567b9639d42 100644
--- a/source/dsb/sc/messages.po
+++ b/source/dsb/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-24 04:35+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/dsb/>\n"
@@ -28632,38 +28632,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Šišćakowe měry za formatěrowanje teksta wužywaś"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "W_uběrk w głowach słupow/smužkow wuzwignuś"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Póśěgi pśi sortěrowanju celowych wobceŕkow aktualizěrowaś"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Zapódawańske nastajenja"
diff --git a/source/dsb/sfx2/messages.po b/source/dsb/sfx2/messages.po
index c3b7e1e3359..afa783a1e96 100644
--- a/source/dsb/sfx2/messages.po
+++ b/source/dsb/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-10-29 14:35+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/dsb/>\n"
@@ -1655,286 +1655,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Wokno zacyniś"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Pśidokowaś"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Wótdokowaś"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Dalšne nastajenja"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Bocnicu zacyniś"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Nastajenja bocnice"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Pśiměrjenje"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Standard wótnowiś"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Bocnicu zacyniś"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Pcołkowy kóš"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Módra kśiwanka"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Módropawsowe plany"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Swětłomódry"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Klasiska cerwjeń"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Gólny ptašk"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiracija"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Swětła"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Intensiwna zeleń"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Połnocna módrina"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Pśirodna ilustracija"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Pisak"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klawěr"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Póstup"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Schowanje słyńca"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Tradicionelny"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Žywy"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "Žywjenjoběg"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Tabelariski žywjenjoběg"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standard"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderny"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderny wobchodowy list bźez serifow"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderny wobchodowy list ze serifami"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Wizitna kórtka z logom"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Jadnory"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Wótwónoźeś"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Wšykno lašowaś"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Dłujkosć gronidła"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Gronidło, kótarež sćo zapódał, problemy za zgromadne źěło zawinujo. Pšosym zapódajśo gronidło, kótarež jo krotše ako 52 bajtow abo dlejše ako 55 bajtow."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-kliknjenje, aby hyperwótkaz wócynił: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Klikniśo, aby hyperwótkaz wócynił: %(link)"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(wužyty pśez: %STYLELIST)"
@@ -4165,6 +4129,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Wulašowaś..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/dsb/starmath/messages.po b/source/dsb/starmath/messages.po
index fc32ca9bfbb..199cba5add3 100644
--- a/source/dsb/starmath/messages.po
+++ b/source/dsb/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-09-24 16:35+0000\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"PO-Revision-Date: 2020-11-17 20:36+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/dsb/>\n"
"Language: dsb\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "abo"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Pśedznamuško (+)"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Pśedznamuško (-)"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Pśedznamuško (+-)"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Pśedznamuško (-+)"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Logiski NIC"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Adicija (+)"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Subtrakcija (-)"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Multiplikacija (dypk)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Multiplikacija (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Multiplikacija (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Diwizija (nakósna smužka)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Diwizija (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Diwizija (łamk)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
-msgstr ""
+msgstr "Łamk"
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Nakósna smužka w krejzu"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Dypk w krejzu"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Minus w krejzu"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Minus w krejzu"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Tensorowy produkt"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Logiske A"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Logiske ABO"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "jo rowno"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "jo njerowno"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "jo mjeńšy ako"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "jo wětšy ako"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "jo mjeńšy abo rowno"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "jo wětšy abo rowno"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "jo mjeńšy abo rowno"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "jo wětšy abo rowno"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "jo wjele mjeńšy ako"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "jo wjele wětšy ako"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "jo definěrowany ako"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "jo kongruentny"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "jo pśibližnje rowno"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "jo pódobny"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "jo pódobny abo rowno"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "jo proporcionalny"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "jo ortogonalny"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "jo paralelny"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "měri se k"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Koresponděrujo z (nalěwo)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Koresponděrujo z (napšawo)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "jo element"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "njejo element"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "wopśimujo"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Zjadnosénje"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Pśerězk"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Diferenca"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
-msgstr ""
+msgstr "Kwocientowa sajźba"
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Pódmłogosć"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Pódmłogosć abo rowno"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Nadmłogosć"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Nadmłogosć abo rowno"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "njejo pódmłogosć"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Njejo pódmłogosć abo rowno"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Nic nadmłogosć"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Nic nadmłogosć abo rowno"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr "Powšykna funkcija"
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Absolutna gódnota"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Fakulta"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Kwadratny kórjeń"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "n-ty kórjeń"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Eksponencialna funkcija"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Eksponencialna funkcija"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "pśirodny logaritmus"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logaritmus"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sinus"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Kosinus"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangens"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Kotangens"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arkussinus"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arkuskosinus"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arkustangens"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arkuskotangens"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Hyperboliski sinus"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Hyberboliski kosinus"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Hyperboliski tangens"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Hyperboliski kotangens"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Hyperboliski areasinus"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Hyperboliski areakosinus"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Hyperboliski areatangens"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Hyperboliski areakotangens"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr "Powšykny operator"
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr "Powšykny operator indeks dołojce"
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr "Powšykny operator indeks górjojce"
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr "Powšykny operator indeks górjejce/dołojce"
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Suma"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Suma z dolneju granicu"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Suma z górneju granicu"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Suma z górneju a dolneju granicu"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Produkt"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Produkt z dolneju granicu"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Produk z górneju granicu"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Produkt z górneju a dolneju granicu"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Koprodukt"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Koprodukt z dolneju granicu"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Koprodukt z górneju granicu"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Koprodukt z górneju a dolneju granicu"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Limes"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Limes z dolneju granicu"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Limes z górneju granicu"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Limes z górneju a dolneju granicu"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Limes inferior"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Limes inferior z dolneju granicu"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Limes inferior z górneju granicu"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Limes inferior z górneju a dolneju granicu"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Limes superior"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Limes superior z dolneju granicu"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Limes superior z górneju granicu"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Limes superior z górneju a dolneju granicu"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Eksistěrujo"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Njeeksistěrujo"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Za wšykne"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integral"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Integral z dolneju granicu"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Integral z górneju granicu"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integral z górneju a dolneju granicu"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Dwójny integral"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Dwójny integral z dolneju granicu"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Dwójny integral z górneju granicu"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Dwójny integral z górneju a dolneju granicu"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Tšojny integral"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Tšojny integral z dolneju granicu"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Tšojny integral z górneju granicu"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Tšojny integral z górneju a dolneju granicu"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Kśiwankowy integral"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Kśiwankowy integral z dolneju granicu"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Kśiwankowy integral z górneju granicu"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Kśiwankowy integral z górneju a dolneju granicu"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Dwójny kśiwankowy integral"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Dwójny kśiwankowy integral z dolneju granicu"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Dwójny kśiwankowy integral z górneju granicu"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Dwójny kśiwankowy integral z górneju a dolneju granicu"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Tšojny kśiwankowy integral"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Tšojny kśiwankowy integral z dolneju granicu"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Tšojny kśiwankowy integral z górneju granicu"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Tšojny kśiwankowy integral z górneju a dolneju granicu"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Akut"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Nadsmužka"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Brevis"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Kokulka"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Krejz"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Dypk"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Dwójodypk"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Tšojny dypk"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Gravis"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Cirkumfleks"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tilda"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Wektorowa šypka"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Harpuna"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Linija dołojce"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Linija górjejce"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Linija pśez"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Transparentny"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Tucne pismo"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Kursiwne pismo"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Wjelikosć změniś"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Pismo změniś"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Carna barwa"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Módra barwa"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Zelena barwa"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Cerwjena barwa"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
-msgstr ""
+msgstr "Barwa Aqua"
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
-msgstr ""
+msgstr "Barwa fuksija"
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Šera barwa"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Swětłozelena barwa"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Kastanijowa barwa"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Śamnomódra barwa"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Oliwna barwa"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Purpurowa barwa"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Slobrowita barwa"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Tirkisowa barwa"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Žołta barwa"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "RGB-barwa"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
-msgstr ""
+msgstr "RGBA-barwa"
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
+msgstr "Barwa, heksadecimalna"
+
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
msgstr ""
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Kupkowe spinki"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Kulowate spinki"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Rožkate spinki"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Dwójne rožkate spinki"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Wuzgibnjone spinki"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Špicne spinki"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Narownańske spinki"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Wótrownańske spinki"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Jadnore linije"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Dwójne linije"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Operatorowe spinki"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Kulowate spinki (skalěrujobne)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Rožkate spinki (skalěrujobne)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Dwójne rožkaty spinki (skalěrujobne)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Wuzgibnjone spinki (skalěrujobne)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Špicne spinki (skalěrujobne)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Narownańske spinki (skalěrujobne)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Wótrownańske spinki (skalěrujobne)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Jadnore linije (skalěrujobne)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Dwójne linije (skalěrujobne)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Operatorowe spinki (skalěrujobne)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Wugódnośony za"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Wuzgibnjone spinki górjejce (skalěrujobne)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Wuzgibnjone spinki dołojce (skalěrujobne)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
-msgstr ""
+msgstr "Wugódnośiś"
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
-msgstr ""
+msgstr "Indeks dołojce wugódnośiś"
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
-msgstr ""
+msgstr "Indeks górjejce wugódnośiś"
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
-msgstr ""
+msgstr "Indeks wugódnośiś"
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Dołoj stajony napšawo"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Eksponent"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "dołoj stajiś nalěwo"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "górjej stajiś nalěwo"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "dołoj stajiś dołojce"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "górjej stajiś górjejce"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Mały mjazyrum"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Mjazyrum"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Nowa smužka"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Wertikalny pórěd (2 elementa)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Wertikalny pórěd"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Matriks"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Nalěwo wusměriś"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Centrěrowane wusměriś"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Napšawo wusměriś"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Alef"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Prozna młogosć"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Realny źěl"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Imaginarny źěl"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Njeskóńcny"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Parcial"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr "Transformacija Laplace"
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr "Transformacija Fourier"
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Dypki w srjejźi"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Dypki górjej"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Dypki dołoj"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Dypki dołojce"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Dypki wertikalnje"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Zwězaś"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Diwizija (šyroka nakósna smužka)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Diwizija (šyroka slědksmužka)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Diwiděrujo"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Njediwiděrujo"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Dwójna šypka nalěwo"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Dwójna šypka nalěwo a napšawo"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Dwójna šypka napšawo"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Młogosć pśirodnych licbow"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Młogosć cełych licbow"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Młogosć racionalnych licbow"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Młogosć reelnych licbow"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Młogosć kompleksnych licbow"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "šyroki cirkumfleks"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "šyroka tilda"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "šyroka wektorowa šypka"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Wjelika harpuna"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h prěki"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda prěki"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Šypka nalěwo"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Šypka napšawo"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Šypka górjej"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Šypka dołoj"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Žeden mjazyrum"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "nišego rěda"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "nišego abo jadnakego rěda"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "nišego abo ekwiwalentnego rěda"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "wušego rěda"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "wušego abo jadnakego rěda"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "wušego abo ekwiwalentnego rěda"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "nic nišego rěda"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "nic wušego rěda"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Unarne/binarne operatory"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Relacije"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Operacije młogosći"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funkcije"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operatory"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Atributy"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Spinki"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formaty"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Druge"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Pśikłady"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Wobměra"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Masoenergijowa ekwiwalenca"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Pythagorasowa sada"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
-msgstr ""
+msgstr "Taylorowa serija"
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Gaussowe rozdźělenje"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
-msgstr ""
+msgstr "Rownica Euler-Lagrange"
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
-msgstr ""
+msgstr "Fundamentalna sada analysisa"
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
-msgstr ""
+msgstr "Chaosowa rownica"
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
-msgstr ""
+msgstr "Eulerowa identita"
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
-msgstr ""
+msgstr "Newtonowa druga kazń"
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
-msgstr ""
+msgstr "Powšykna relatiwnosć"
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
-msgstr ""
+msgstr "Specielna relatiwnosć"
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standard"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kursiwny"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Tucny"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "carny"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "módry"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "zeleny"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "cerwjeny"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
-msgstr ""
+msgstr "aqua"
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
-msgstr ""
+msgstr "fuksija"
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "šery"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "swětłozeleny"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "cerwjenobruny"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "śamnomódry"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliwnozeleny"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "lylowy"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "slobro"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "zelenomódry"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "žołty"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
-msgstr ""
+msgstr "rgba"
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
-msgstr ""
+msgstr "heks"
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "schowaś"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "wjelikosć"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "pismo"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "nalěwo"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centrěrowany"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "napšawo"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Pśikaze"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formula"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Dokument se składujo..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Formula"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ZMÓLKA : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Njewócakane znamuško"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Njewócakane znamuško"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' se wócakujo"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'{' se wócakujo"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' se wócakujo"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' se wócakujo"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Lěwy a pšawy symbol njejstej jadnakej"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans' abo 'serif' se wócakuju"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' slědowany wót njewócakanego znamuška"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Dwójne wusměrjenje njejo dowólone"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Dwójne górjejstajenje/dołojstajenje njejo dowólone"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
-msgstr ""
+msgstr "Wótcakana licba"
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' wócakany"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Barwa trěbna"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' wócakane"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Wopśimjeśe"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titel"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formulowy tekst"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "~Ramiki"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Wjelikosć"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "O~riginalna wjelikosć"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Wjelikosći ~boka pśiměriś"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skalěrowanje"
diff --git a/source/dsb/svtools/messages.po b/source/dsb/svtools/messages.po
index 2282de017f0..fcf0b7491d5 100644
--- a/source/dsb/svtools/messages.po
+++ b/source/dsb/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-04 20:47+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/dsb/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Anulěrowaś: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Wóspjetowaś:"
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Wóspjetowaś: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Njeformatěrowany tekst"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Njeformatěrowany tekst (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Wobraz bitmap (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface metafile (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich text formatting (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich text formatting (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Format kreslankow %PRODUCTNAME"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Bitmap/animacija StarView (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Statusowe informacije wót Svx Internal Link"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Wótkaz %PRODUCTNAME (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Cytańske znamje Netscape"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Serwerowy format Star"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Objektowy format Star"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Objekt Applet"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Objekt Tykac"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objekt StarWriter 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objekt StarWriter 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objekt StarWriter 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objekt StarWriter/Web 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objekt StarWriter/Web 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Objekt StarWriter/Master 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Objekt StarWriter/Master 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objekt StarDraw"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objekt StarDraw 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objekt StarImpress 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objekt StarDraw 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objekt StarCalc"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objekt StarCalc 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objekt StarCalc 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objekt StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objekt StarChart 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objekt StarChart 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objekt StarImage"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objekt StarImage 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objekt StarImage 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objekt StarMath"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objekt StarMath 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objekt StarMath 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objekt StarObject Paint"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE link)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objekt Microsoft Word"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objekt StarFrameSet"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Objekt Dokument Office"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Informacije dokumenta Notes"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx-dokument"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objekt StarChart 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Wobrazowy objekt"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Objekt OpenOffice.org 1.0 Writer"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Objekt OpenOffice.org 1.0 Writer/Web"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Objekt OpenOffice.org 1.0 Writer/Master"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Objekt OpenOffice.org 1.0 Draw"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Objekt OpenOffice.org 1.0 Impress"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Objekt OpenOffice.org 1.0 Calc"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Objekt OpenOffice.org 1.0 Chart"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Objekt OpenOffice.org 1.0 Math"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows MetaFile"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Objekt datowych žrědłow"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabela datowych žrědłow"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL-wótpšašowanje"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Dialog OpenOffice.org 1.0"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Wótkaz"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-format bźez komentarow"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objekt % njedajo se zasajźiś."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objekt z dataje % njedajo se zasajźiś."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Dalšne objekty"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Njeznate žrědło"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bajty"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1234 +501,1234 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeriski"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normalny"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Znamuškowa sajźba"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Słownik"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinjin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Smuga"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Dźujin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonowe knigły"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetiski (alfanumeriske ako prědne)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetiski (alfanumeriske ako slědne)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeriski"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Słownik"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinjin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Smuga"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Dźujin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetiski (alfanumeriske ako prědne, zrědowane pó złožkach)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetiski (alfanumeriske ako prědne, zrědowane pó konsonantach)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetiski (alfanumeriske ako slědne, zrědowane pó złožkach)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetiski (alfanumeriske ako slědne, zrědowane pó konsonantach)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Lažki"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Lažko kursiwny"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normalny"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kursiwny"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Tucny"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Tucny kursiwny"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Carny"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Carny kursiwny"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Knigły"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Tucny nakósny"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Wuski"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Wuski tucny"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Wuski tucny kursiwny"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Wuski tucny nakósny"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Wuski kursiwny"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Wuski nakósny"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Wjelgin lažki"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Wjelgin lažki kursiwny"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Nakósny"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Połtucny"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Połtucny kursiwny"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "To samske pismo buźo se na wašom śišćaku a wašej wobrazowce wužywaś."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "To jo pismo śišćaka. Naglěd na wobrazowce móžo se wótchyliś."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Toś ten pismowy stil se similěrujo abo nejbliša pśigódna stil buźo se wužywaś."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Toś to pismo njejo zainstalěrowane. Nejbliše k dispoziciji stojece pismo buźo se wužywaś."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "K zachopjeńkoju"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Nalěwo"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Napšawo"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Ku kóńcoju"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Pśidaś"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Horicontalny lineal"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Wertikalny lineal"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1-bitowy prog"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bit rozdrosćeny"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4-bitowe stopnje šerosći"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4-bitowa barwa"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8-bitowe stopnje šerosći"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8-bitowa barwa"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24-bitowa cysta barwa"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Wobraz něźi %1 KB składa trjeba."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Wobraz něźi %1 KB składa trjeba, datajowa wjelikosć jo %2 KB."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Datajowa wjelikosć jo %1 KB."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "host"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Druge CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Gótowo"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Zastajone"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Wulašowanje caka"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Wuśěžony"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Inicializacija"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Cakajucy"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Rozgrěwanje"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Pśeźěłowanje"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Śišćanje"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Offline"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Zmólka"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Njeznaty serwer"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Zaprěśe papjery"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Nic dosć papjery"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Manuelne dodawanje"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problem z papjeru"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "Z/W aktiwne"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Wudawański fach połny"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Mało tonera"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Žeden toner"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Bok lašowaś"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Pśistup wužywarja trěbny"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Pśemało składa"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Pókšyśe wótwórjone"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Energiju žarjecy modus"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Standardny śišćak"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumentow"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<žeden>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Pśedewześe"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Wótźělenje"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Pśedmě"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Familijowe mě"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Droga"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Kraj"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "PL"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Město"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titel"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Pozicija"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Gronjenje"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Iniciale"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Póstrowna formula"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Telefon: Priwatny"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Telefon: Słužbny"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Faks"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-mail"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Notica"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Wužywaŕ 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Wužywaŕ 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Wužywaŕ 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Wužywaŕ 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Zwězkowy kraj"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Telefon: běrow"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pager"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobilny telefon"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Telefon: druge"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalendaŕ"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Pśepšosyś"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ $user$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME trjeba wokolinu běžnego casa Java (JRE), aby toś ten nadawk wuwjadł. Pšosym instalěrujśo JRE a startujśo %PRODUCTNAME znowego. %FAQLINK"
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME trjeba %BITNESS-bitowu wokolinu běžnego casa Java (JRE), aby toś ten nadawk wuwjadł. Pšosym instalěrujśo JRE a startujśo %PRODUCTNAME znowego. %FAQLINK"
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME se na Mac OS 10.10 abo nowšem Java Development Kit (JDK) Oracle pomina, aby toś ten nadawk wuwjadł. Pšosym instalěrujśo jen a startujśo %PRODUCTNAME znowego. %FAQLINK"
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Konfiguracija %PRODUCTNAME jo se změniła. Wubjeŕśo pód %PRODUCTNAME - Nastajenja - %PRODUCTNAME - Rozšyrjone wokolinu běžnego casa Java, kótaruž %PRODUCTNAME ma wužywaś."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Konfiguracija %PRODUCTNAME jo se změniła. Wubjeŕśo Rědy - Nastajenja - %PRODUCTNAME - Rozšyrjone wokolinu běžnego casa, kótaruž %PRODUCTNAME ma wužywaś."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME se wokolinu běžnego casa Java (JRE) pomina, aby toś ten nadawk wuwjadł. Wubrana wokolina běžnego casa jo wobškóźona. Pšosym wubjeŕśo drugu wersiju abo instalěrujśo nowu wokolinu běžnego casa a wubjeŕśo ju pód %PRODUCTNAME - Nastajenja - %PRODUCTNAME - Rozšyrjone."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME se wokolinu běžnego casa Java (JRE) pomina, aby toś ten nadawk wuwjadł. Wubrana wokolina běžnego casa jo wobškóźona. Pšosym wubjeŕśo drugu wersiju abo instalěrujśo nowu wokolinu běžnego casa a wubjeŕśo ju pód Rědy - Nastajenja - %PRODUCTNAME - Rozšyrjone."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE trěbny"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE wubraś"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE jo defektny"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Žrědłowy kod"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Dataja cytańskich znamjenjow"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Wobraze"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfiguraciska dataja"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Nałoženje"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tabela datoweje banki"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Systemowa dataja"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Dokument MS Word"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Dataja pomocy"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-dokument"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Archiwna dataja"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Protokolowa dataja"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Datowa banka StarOffice"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Globalny dokument StarWriter 4.0 / 5.0"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Wobraz StarOffice"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekstowa dataja"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Wótkaz"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Pśedłoga StarOffice 3.0 - 5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Dokument MS Excel"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Pśedłoga MS Excel"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Štaplowa dataja"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Dataja"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Zarědnik"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tekstowy dokument"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Tabelowy dokument"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Prezentacija"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Kreslanka"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-dokument"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Globalny dokument"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formula"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Datowa banka"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Pśedłoga tabelowego dokumenta OpenOffice.org 1.0"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Pśedłoga kreslanki OpenOffice.org 1.0"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Pśedłoga prezentacije OpenOffice.org 1.0"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Pśedłoga tekstowego dokumenta OpenOffice.org 1.0"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Lokalne běgadło"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Disketnik"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM-běgadło"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Seśowy zwisk"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Dokument MS Powerpoint"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Pśedłoga MS PowerPoint"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Prezentacija MS PowerPoint"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Formula OpenOffice.org 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Diagram OpenOffice.org 1.0"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Kreslanka OpenOffice.org 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Tabelowy dokument OpenOffice.org 1.0"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Prezentacija OpenOffice.org 1.0"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Tekstowy dokument OpenOffice.org 1.0"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Globalny dokument OpenOffice.org 1.0"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML-dokument"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument datowa banka"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument kreslanka"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument formula"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument globalny dokument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument prezentacija"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument tabelowy dokument"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument tekst"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument pśedłoga tabelowego dokumenta"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument pśedłoga kreslanki"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument pśedłoga prezentacije"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument pśedłoga tekstowego dokumenta"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Kóńcowka %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Pšawopisna kontrola Hunspell"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Źělenje złožkow Libhyphen"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Tezawrus Mythes"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Lisćina ignorěrowanych słowow"
diff --git a/source/dsb/svx/messages.po b/source/dsb/svx/messages.po
index b17f9382789..fde98e18219 100644
--- a/source/dsb/svx/messages.po
+++ b/source/dsb/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-08-09 12:35+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/dsb/>\n"
@@ -16332,11 +16332,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Za_stupujuce symbole"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_Komentary"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/dsb/sw/messages.po b/source/dsb/sw/messages.po
index 71a42c6ad6f..39d833f0ccf 100644
--- a/source/dsb/sw/messages.po
+++ b/source/dsb/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-08-20 21:35+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/dsb/>\n"
@@ -17452,86 +17452,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Powšykne"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "Na_dpismo"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Głowowe smužki na nowych _bokach wóspjetowaś"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Tabelu na bokach njeła_maś"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Głowowe s_mužki:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Nastajenja"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Pśedłogi"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20045,289 +20051,289 @@ msgid "Text"
msgstr "Tekst"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Głowny naglěd pśešaltowaś"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Wopśimjeśe nawigaciskego naglěda"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Głowowa smužka"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Nogowa smužka"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Kokula<->Tekst"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Dopomnjeńku stajiś"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Zwobraznjone nadpismowe rowniny"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Lisćinowe pólo zašaltowaś/wušaltowaś"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Wó jadnu rowninu wušej"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Wó jadnu rowninu nižej"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Kapitel wó rowninu wušej pśesunuś"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Kapitel wó rowninu nižej pśesunuś"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Šěgaty modus"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Dokument"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Aktiwne wokno"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Głowny naglěd pśešaltowaś"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Wobźěłaś"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Aktualizěrowaś"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Zasajźiś"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Wopśimjeśe sobu składowaś"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Górjej pśesunuś"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Dołoj pśesunuś"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Wuběrk"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Indekse"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Wótkaze"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Wše"
diff --git a/source/dz/helpcontent2/source/text/scalc/01.po b/source/dz/helpcontent2/source/text/scalc/01.po
index cc1913314f2..629088dda67 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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2018-11-12 13:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr ""
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/sdraw.po b/source/dz/helpcontent2/source/text/sdraw.po
index d14bf9041cd..85f570146f6 100644
--- a/source/dz/helpcontent2/source/text/sdraw.po
+++ b/source/dz/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 10:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/shared/00.po b/source/dz/helpcontent2/source/text/shared/00.po
index e222273f95c..6f968961d3b 100644
--- a/source/dz/helpcontent2/source/text/shared/00.po
+++ b/source/dz/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-14 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "མཐུན་འབྲེལ་གྱི་གནད་སྡུད་གཞི་རྟེན་གྱི་དཔེ་བཟང་པོ་འདི་ ཚོང་འགྲོན་པ་ ཉོ་ཚོང་དང་ཨིན་བོའིསི་ཐིག་ཁྲམ་ཚུ་ཡོད་མི་གནད་སྡུད་གཞི་རྟེན་ཉོ་ཐོག་ལས་བྱིན་ཚུགས། ཨིན་བོའིསི་ཐིག་ཁྲམ་ནང་ལུ་ཚོང་མགྲོན་པ་ངོ་མ་དང་ཡང་ཅིན་ཉོ་བའི་གནད་སྡུད་མེདཔ་ཨིན་ ཨིན་རུང་ ཐིག་ཁྲམ་དེ་ལུ་ རང་རང་གི་ཚོང་མགྲོན་པ་དང་ ཉོ་ཐོག་ཐིག་ཁྲམ་གྱི་ས་སྒོ་ཚུ་ལུ་ མཐུན་འབྲེལ་གྱི་འབྲེལ་ལམ་ཡང་ན་ མཐུན་འབྲེལ་ཅིག་ལས་བརྒྱུད་དེ་གཞི་བསྟུན་འབདཝ་ཨིན། (དཔེར་ན་ , ཚོང་མགྲོན་པའི་ཐིག་ཁྲམ་ལས་ཚོང་མགྲོན་པའི་ཨའི་ཌི་ས་སྒོ་བཟུམ།)."
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>ཐོ་འགོད་-བདེན་པ་; ངེས་ཚིག་</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "ཐོ་བཀོད་བདེན་པ།"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/dz/helpcontent2/source/text/shared/01.po b/source/dz/helpcontent2/source/text/shared/01.po
index b809961b0ff..7dae11224fe 100644
--- a/source/dz/helpcontent2/source/text/shared/01.po
+++ b/source/dz/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr ""
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr ""
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr ""
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,13 +9376,13 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "མཐོང་སྣང་ཨམ་དང་སྤྱིར་གཏང་མཐོང་སྣང་གི་བར་ན་སོར་བསྒྱུར་འབདཝ་ཨིན།"
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
msgstr ""
#. 3Lq2G
@@ -9430,13 +9412,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr ""
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
msgstr ""
#. nRB3E
@@ -9466,13 +9448,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">ཁྱོད་ཀྱིས་ དུས་མཐུན་བཟོ་དགོ་པའི་ ནང་དོན་འདི་གདམ་ཁ་བརྐྱབ།</ahelp>"
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
msgstr ""
#. F4J5u
@@ -9601,13 +9583,13 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "ཁྱོད་ཀྱིས་ཡིག་སྣོད་ཚུ་ ཡིག་ཆའི་ཨམ་གྱི་ནང་ལུ་ ཁྱོད་རའི་ཌེཀསི་ཊོཔ་ལས་ ཡིག་སྣོད་འདི་འདྲུད་ནི་དང་ དེ་ལས་ འགྲུལ་བསྐྱོད་ཀྱི་མཐོང་སྣང་ཨམ་གུ་བཞག་པའི་ཐོག་ལས་ བཙུགས་བཏུབ་ཨིན།"
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
msgstr ""
#. ijR7M
@@ -9709,13 +9691,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr ""
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
msgstr ""
#. ADEyJ
@@ -9745,13 +9727,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
msgstr ""
#. GqEUL
@@ -9781,13 +9763,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
msgstr ""
#. DLEGF
diff --git a/source/dz/helpcontent2/source/text/shared/02.po b/source/dz/helpcontent2/source/text/shared/02.po
index d5f9c8bed92..c9fde04b70a 100644
--- a/source/dz/helpcontent2/source/text/shared/02.po
+++ b/source/dz/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 13:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">འགོ་མཚམས་མར་ཕབ་འབད།</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11059,14 +11059,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">ངོས་དཔར་ཚུ།</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr ""
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">ངོ་རྟགས་ ཡར་འཕར་འབད།</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11131,14 +11131,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149379\" src=\"cmd/sc_bezier_unfilled.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149379\">ངོས་དཔར།</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/dz/helpcontent2/source/text/shared/optionen.po b/source/dz/helpcontent2/source/text/shared/optionen.po
index e1ba6a4f987..f56b0e3ba52 100644
--- a/source/dz/helpcontent2/source/text/shared/optionen.po
+++ b/source/dz/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11860,32 +11860,32 @@ msgctxt ""
msgid "Snap"
msgstr "པར་བཏབ།"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "པར་ཐིག་ཚུ་ལུ།"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "ཁྱོད་ཀྱིས་ཡང་གསལ་སྟོན་ ཡང་ན་ པར་རིས་ཡིག་ཆ་ནང་གདམ་ཁ་ཚུའི་ཕྲ་རིང་ནང་ཐོབ་ཚུགས་མི་<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Guides\"><emph>ལམ་སྟོན་ཚུ་ལུ་པར་བཏབ་</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Guides\"><emph>ལམ་སྟོན་ཚུ་ལུ་པར་བཏབ་</emph></link></caseinline><defaultinline><emph>ལམ་སྟོན་ཚུའི་ངོས་དཔར་ལུ་པར་བཏབ་ནི་</emph></defaultinline></switchinline> ལག་ལེན་འཐབ་ཐོག་ལས་<emph>ཨ་ནི་སྒྲིག་སྟངས་</emph> ངེས་འཛིན་འབད་ཚུགས།"
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr ""
#. eUCCJ
#: 01070300.xhp
diff --git a/source/dz/helpcontent2/source/text/simpress/02.po b/source/dz/helpcontent2/source/text/simpress/02.po
index 7b46998f48e..7a51023bd10 100644
--- a/source/dz/helpcontent2/source/text/simpress/02.po
+++ b/source/dz/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 10:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5695,40 +5695,40 @@ msgctxt ""
msgid "Exit all groups"
msgstr "སྡེ་ཚན་ཚུ་ཆ་མཉམ་ཕྱིར་ཐོན་འབད།"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Guides\">འཁྱིད་མི་ཚུ་ལུ་པར་བཏབ།</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">ངོས་དཔར།</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
#. oXWsX
diff --git a/source/dz/helpcontent2/source/text/swriter.po b/source/dz/helpcontent2/source/text/swriter.po
index 0bcbc6c2122..374e90cf841 100644
--- a/source/dz/helpcontent2/source/text/swriter.po
+++ b/source/dz/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-10-21 20:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "གཡོན་-ལས་ཁཡས་ཁ་ཐུག"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id8354747\">གཡོན་ལས་གཡས་ཁ་ཐུག་གི་ངོས་དཔར།</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "གཡས་-ལས་-གཡོན་ཁ་ཐུག"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id2405774\">གཡས་ལས་གཡོན་ག་ཐུག་གི་ངོས་དཔར།</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/dz/helpcontent2/source/text/swriter/01.po b/source/dz/helpcontent2/source/text/swriter/01.po
index d47b43e5b5c..7161d650c91 100644
--- a/source/dz/helpcontent2/source/text/swriter/01.po
+++ b/source/dz/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-10-21 20:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "འགྲུལ་བསྐྱོདཔ།"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">ཡིག་འཕྲིན་མཉམ་བསྡོམས་འཐོབ་མཁན་<emph>Mail Merge Recipients</emph>ཌའི་ལོག་དེ་ཁ་ཕྱེཝ་ཨིན།</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/swriter/guide.po b/source/dz/helpcontent2/source/text/swriter/guide.po
index b3d08662106..a5b6161e002 100644
--- a/source/dz/helpcontent2/source/text/swriter/guide.po
+++ b/source/dz/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-12 13:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7792,49 +7792,49 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr ""
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
msgstr ""
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
msgstr ""
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
msgstr ""
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
+msgid "Positioning indents"
msgstr ""
#. qUxKq
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr ""
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr ""
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr ""
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr ""
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,14 +10294,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "ཨང་ངོས་འཛིན་འབད་ནི་འདི་ ཐིག་ཁྲམ་ཚུ་ནང་ ཨཱོན་ཡང་ན་ཨོཕ་ཊཱན་འབད་དོ།"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>ཨང་གྲངས་ཚུ་; ཚིག་ཡིག་ཐིག་ཁྲམ་ཚུ་ནང་རང་བཞིན་ངོས་འཛིན་</bookmark_value><bookmark_value>ཐིག་ཁྲམ་ཚུ་; ཨང་གྲངས་ངོས་འཛིན་</bookmark_value><bookmark_value>ཚེས་གྲངས་ཚུ་;ཐིག་ཁྲམ་ཚུ་ནང་རང་བཞིན་གྱིས་རྩ་སྒྲིག་འབད་དོ་</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10267,14 +10330,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "འོག་གི་ཚུ་ལས་གཅིག་འབད་:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "ཐིག་ཁྲམ་ནང་ཐིག་ཅིག་ནང་ཚར་གཉིས་ཨེབ་གཏང་ དེ་ལས་ <emph>ཨང་ངོས་འཛིན་འབད་ནི་</emph>གདམ་ཁ་རྐྱབས། འ་ནི་ཁྱད་རྣམ་འདི་ཨཱོན་ཨིན་པའི་སྐབས་ དཔྱད་རྟགས་འདི་ <emph>ཨང་ངོས་འཛིན་འབད་ནིའི་ </emph>བརྡ་བཀོད་ཀྱི་གདོང་ཁར་ བཀྲམ་སྟོན་འབདཝ་ཨིན།"
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr ""
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12211,6 +12292,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "ཁྱོད་ཀྱིས་གནས་དེབ་སྦེ་དཔར་བསྐྲུན་འབད་ནི་ཨིན་མི་ཡིག་ཆ་ གསར་བསྐྲུན་འབད་བའི་སྐབས་ ཤོག་ལེབ་ཚུའི་དོན་ལུ་ ཡར་ཕྲང་ཕྱོགས་འདི་ལག་ལེན་འཐབ། རྩོམ་འབྲི་པ་གིས་ ཁྱོད་ཀྱིས་ཡིག་ཆ་འདི་དཔར་བསྐྲུན་འབད་བའི་སྐབས གནས་དེབ་སྒྲིག་བཀོད་འདི་འཇུག་སྤྱོད་འབདཝ་ཨིན།"
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12256,50 +12355,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "ཁྱོད་ཀྱི་དཔར་འཕྲུལ་གྱིས་ཌུ་པེལེགསི་དཔར་བསྐྲུན་འབད་བ་ཅིན་དང་ག་ཅི་སྨོ་ཟེར་བ་ཅིན་དེབ་ཆུང་ཨ་རྟག་ར་ཀེ་ཀེ་ཐབས་ལམ་ནང་དཔར་བསྐྲུན་འབད་བ་ཅིན་ ཁྱོད་རའི་དཔར་འཕྲུལ་ནང་\"duplex - short edge\" ཌའི་ལོག་གཞི་སྒྲིག་སྒྲིག་སྟངས་འདི་ལག་ལེན་འཐབ་དགོ།"
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
+msgid "Return to <emph>Print</emph> dialog."
msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "རང་བཞིན་གྱིས་ཤོག་ལེབ་ཀྱི་ཟུར་གཉིས་ཆ་ར་ལུ་དཔར་བསྐྲུན་འབད་མི་ དཔར་འཕྲུལ་ཅིག་གི་དོན་ལུ་ གཡས་ཀྱི་ཤོག་ལེབ་དང་གཡོན་གྱི་ཤོག་ལེབ་ཚུ་དཔར་བསྐྲུན་འབད་ནིའི་དོན་ལས་གསལ་བཀོད་འབད།"
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "<emph>བཏུབ་</emph>ཨེབ་གཏང་།"
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "%PRODUCTNAME གིས་ཤོག་ལེབ་ཚུ་གོ་རིམ་ཕྱི་འགྱུར་འབད་དཔར་བསྐྲུན་འབད་བ་ཅིན་ <emph>དཔར་འཕྲུལ་གདམ་ཁའི་</emph> ཌའི་ལོག་འདི་ཁ་ཕྱེ་ <emph>ཟུར་གསོག་འབད་ཡོདཔ་</emph> སེལ་འཐུ་འབད་ དེ་ལས་ཡིག་ཆ་འདི་ལོག་དཔར་བསྐྲུན་འབད།"
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr ""
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,32 +12724,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">སྣ་མང་ཤོག་ལེབ་ཚུ་ ལེབ་གྲངས་གཅིག་གུ་དཔར་བསྐྲུན་འབད་དོ་</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
+msgid "Choose <menuitem>File - Print</menuitem>"
msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "འོག་གི་ཚུ་ལས་གཅིག་འབད་:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/dz/sc/messages.po b/source/dz/sc/messages.po
index e88a2283b43..74a76a148ea 100644
--- a/source/dz/sc/messages.po
+++ b/source/dz/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29526,38 +29526,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr ""
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "དཔར་འཕྲུལ་མེ་ཊིཀ་ཚུ་དཔར་བསྐྲུན་འབད་ནིའི་དོན་ལས་དང་ ཡང་ གསལ་གཞི་གུ་བཀྲམ་སྟོན་རྩ་སྒྲིག་འབད་ནིའི་དོན་ལས་འཇུག་སྤྱོད་འབདཝ་ཨིནམ་གསལ་བཀོད་འབདཝ་ཨིན།"
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr ""
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr ""
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr ""
diff --git a/source/dz/sfx2/messages.po b/source/dz/sfx2/messages.po
index 7bf6d4f5a10..737633643ac 100644
--- a/source/dz/sfx2/messages.po
+++ b/source/dz/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-10-21 19:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1634,288 +1634,251 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr ""
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr ""
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "གདམ་ཁ་ཚུ་ཧེང་བཀལ།(~O)"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr ""
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "སྲོལ་སྒྲིག་བསྒུལ་བཟོ་..."
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr ""
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr ""
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "རྩ་བསྐྲད་གཏང་།"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4235,6 +4198,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "བཏོན་གཏང་..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/dz/starmath/messages.po b/source/dz/starmath/messages.po
index 97546f0557f..cabecef3d07 100644
--- a/source/dz/starmath/messages.po
+++ b/source/dz/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-05-08 13:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -425,2103 +425,2236 @@ msgid "or"
msgstr "ཡང་ན།"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+མིང་རྟགས་བཀོད།"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "-མིང་རྟགས་བཀོད།"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+-མིང་རྟགས་བཀོད།"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "-+མིང་རྟགས་བཀོད།"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "བུ་ལིན་མེན།"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "བསྡོམས། +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "ཕབ་ནི -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
#, fuzzy
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "དགུ་མཐབ།(ཌོཊ )"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "དགུ་འཐབ། (ཨེགས)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "དགུ་འཐབ། (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "བགོ་རྩིས།(གཡོ་ཤད།)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "བགོ་རྩིས།(÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "བགོ་རྩིས།(དཔྱ་ཕྲན།)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "བུ་ལིན་དང་།"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "བུ་ལིན།ཨོར།"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "མཉམ་པ་ཨིན།"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "མཉམ་པ་མེན།"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "དེ་ལས་ཉུང་མི།"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "དེ་ལས་སྦོམ་མི།"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "དེ་ལས་ཉུང་མི་ཡངན་མཉམ་པ།"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "དེ་ལས་སྦོམ་མི་ཡངན་མཉམ་པ།"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "དེ་ལས་ཉུང་མི་ཡངན་མཉམ་པ།"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "དེ་ལས་སྦོམ་མི་ཡངན་མཉམ་པ།"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr ""
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
#, fuzzy
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "དེ་ལས་སྦོམ་མི།"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "བཟོ་རྣམ་འདྲ་བ།"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "ཧ་ལམ་ཆ་མཉམ་པ་ཨིན།"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "དེ་ཆ་འདྲ་བ།"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "དེ་ཆ་འདྲ་བ་ཡངན་མཉམ་པ།"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "སྙོམས་ཚད་ཀྱི།"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "གཡས་ཕྱོགས་གཡོ་བ།"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "དེལ་བའི་མཉམ་སྤྱོད།"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "ཁ་ཐུག"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "དེའི་ནང་ན།"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "དེའི་ནང་ན་མེད།"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "བདག་དབང་བཟུང་ནི།"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "ཡུ་ནི་ཡཱན།"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "གདུམ་བུར་གཅོད་པ།"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "སོ་སོ།"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "ཆ་ཚན་ཡན་ལག"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "ཆ་ཚན་ཡན་ལག་ཡངན་མཉམ་པ།"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "ཆ་ཚན་ཡང་དག"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "ཆ་ཚན་ཡང་དག་ཡངན་མཉམ་པ།"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "ཆ་ཚན་ཡན་ལག་མེན།"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "ཆ་ཚན་ཡན་ལག་ཡང་མེན་ཡངན་མཉམ་པ་མེན།"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "ཆ་ཚན་ཡང་དག་མེན།"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "ཆ་ཚན་ཡང་དག་ཡང་མེན་མཉམ་པ་མེན།"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "གནས་གོང་ཡང་དག"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "ཆ་རྐྱེན་གྱི།"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "སི་ཀོའེར་རུཊི"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "ཨེན-ཊིཨེཆ་གི་རྩ་བ།"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "བསྒྱུར་གྲངས་ལས་འགན།"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "བསྒྱུར་གྲངས་ལས་འགན།"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "རང་བཞིན་གྱི་མཉམ་གྲངས།"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "མཉམ་གྲངས།"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "སིན།"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "ཀོ་སིན།"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "ཊེན་ཇེནཊི།"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "ཀོ་ཊེན་ཇེནཊི།"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "ཨརཀ་སིན།"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "ཨརཀ་ཀོ་སིན།"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "ཨརཀ་ཊེན་ཇེནཊི།"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "ཨརཀ་ཀོ་ཊེན་ཇེནཊི།"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "རབ་བཏགས་རྒྱན་ཅན་གྱི་སིན།"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "རབ་བཏགས་རྒྱན་ཅན་གྱི་ཀོ་སིན།"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "རབ་བཏགས་རྒྱན་ཅན་གྱི་ཊེན་ཇེནཊི།"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "རབ་བཏངས་རྒྱན་ཅན་གྱི་ཀོ་ཊེན་ཇེནཊ"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "མངའ་ཁོངས་རབ་བཏགས་ཅན་གྱི་སིན།"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "མངའ་ཁོངས་རབ་བཏགས་ཅན་གྱི་ཀོ་སིན།"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "མངའ་ཁོངས་རབ་བཏགས་ཅན་གྱི་ཊེན་ཇེནཊི།"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "མངའ་ཁོངས་རབ་བཏངས་ཅན་གྱི་ཀོ་ཊེན་ཇེནཊི།"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "དངུལ་བསྡོམས"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
#, fuzzy
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "མཇུག་གྱི་འོག་ཡིག"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
#, fuzzy
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "མགོའི་ཡིག་ཚུགས་ཡང་དག"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr ""
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "ཐོན་སྐྱེད།"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
#, fuzzy
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "མཇུག་གྱི་འོག་ཡིག"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr ""
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr ""
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "མཉམ་འབྲེལ་ཐོན་སྐྱེད།"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
#, fuzzy
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "མཇུག་གྱི་འོག་ཡིག"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr ""
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr ""
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "ཐལ་དཀར་ཚུ།"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
#, fuzzy
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "མཇུག་གྱི་འོག་ཡིག"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
#, fuzzy
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "མགོའི་ཡིག་ཚུགས་ཡང་དག"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr ""
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "གསུམ་ཡོད་པ།"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "གསུམ་ཡོད་པ།"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
#, fuzzy
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "ཆ་མཉམ་ལུ།"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "མེད་ཐབས་མེད་པའི།"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "ལོག་བལྟབ་མེདཐབས་མེད་པའི།"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "གསུམ་བལྟབ་མེད་ཐབས་མེད་པའི།"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "གུག་གུགཔ་མེད་ཐབས་མེད་པའི།"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "ལོག་བལྟབ་གུག་གུགཔ་མེད་ཐབས་མེད་པའི།"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "གསུམ་བལྟབ་གུག་གུགཔ་མེད་ཐབས་མེད་པའི།"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "བརྗོད་གདངས་དྲག་པ།"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "ལྟག་གི་གྱལ་རིམ།"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "སྒྲ་ཞན་པའི་རྟགས།"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "རིམ་ལོག་སྒྲ་གདངས་མཐོ་དམའ་གི་རྟགས།"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "སྒོར་ཐིག།"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "ཚག"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "ཚག་གཉིས་ལྡན།"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "ཚག་གསུམ་བལྟབ།"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "སྒྲ་གདངས་ལྕི་བ་དྲག་པ།"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "སྒྲ་གདངས་མཐོ་དམའ་གི་རྟགས།"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "སྣ་སྒྲ་ཅན་གྱི་སྟགས།"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "མཉམ་ཐིག་མདའ་རྟགས།"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "གྱལ་རིམ་གྱི་འོག་ལུ།"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "གྱལ་རིམ་གྱི་ལྟག་ལས།"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "རྒྱུད་དེ་ གྱལ་རིམ།"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "དྭངས་གསལ་ཅན།"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "ཡིག་གཟུགས་རྒྱགས་པ།"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "་ཨའི་ཊ་ལིཀ་གི་ཡིག་གཟུགས།"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "ཚད་བསྐྱར་བཟོ་འབད་ནི།"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "ཡིག་གཟུགས་བསྒྱུར་བཅོས་འབད།"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr ""
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr ""
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr ""
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr ""
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr ""
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr ""
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr ""
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "གུག་ཤད་སྡེ་ཚན།"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "གུག་ཤད་སྒོར་སྒོརམ།"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "གུག་ཤད་སི་ཀོའེར།"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "གུག་ཤད་སི་ཀོའེར་གཉིས་ལྡན།"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "གུག་ཤད། ({)"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "ཟུར་ཅན་གུག་ཤད།"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr ""
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "གྱལ་རིམ་རྐྱང་པ།"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "གྱལ་རིམ་གཉིས་ལྡན།"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "གུག་ཤད་བཀོལ་སྤྱོདཔ།"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "གུག་ཤད་སྒོར་སྒོརམ།(ཆ་ཚད་འཇལ་དུ་མེད་བཏུབ་མི།)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "གུག་ཤད་སི་ཀོའེར། (ཆ་ཚད་འཇལ་དུ་མེད་བཏུབ་མི།)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "གུག་ཤད་སི་ཀོའེར་གཉིས་ལྡན། (ཆ་ཚད་འཇལ་དུ་མེད་བཏུབ་མི།)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "གུག་ཤད། ({)(ཆ་ཚད་འཇལ་དུ་མེད་བཏུབ་མི།)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "ཟུར་ཅན་གུག་ཤད།(ཆ་ཚད་འཇལ་དུ་མེད་བཏུབ་མི།)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "གྱལ་རིམ་རྐྱང་པ།(ཆ་ཚད་འཇལ་དུ་མེད་བཏུབ་མི།)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "གྱལ་རིམ་གཉིས་ལྡན།(ཆ་ཚད་འཇལ་དུ་མེད་བཏུབ་མི།)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "གུག་ཤད་བཀོལ་སྤྱོདཔ།(ཆ་ཚད་འཇལ་དུ་མེད་བཏུབ་མི།)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "མགོའི་གུག་ཤད། ({)(ཆ་ཚད་འཇལ་དུ་མེད་བཏུབ་མི།)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "མཇུག་གི་མགོའི་གུག་ཤད། ({)(ཆ་ཚད་འཇལ་དུ་མེད་བཏུབ་མི།)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "གཡས་གྱི་འོག་ཡིག"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "ནུས་ཤུགས།"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "གཡོན་གྱི་འོག་ཡིག།"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "གཡོན་གྱི་ཡིག་ཚུགས་ཡང་དག"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "མཇུག་གྱི་འོག་ཡིག"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "མགོའི་ཡིག་ཚུགས་ཡང་དག"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "ས་སྟོང་ཆུང་ཀུ།"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
#, fuzzy
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "སྟོངམ།"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "གྱལ་རིམ་གསརཔ།"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "ཀེར་ཕྲང་བརྩེགས་ཕུང་། (༢ རྒྱུ་རྫས།)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "ཀེར་ཕྲང་བརྩེགས་ཕུང་།"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "མེ་ཊིགསིས་བརྩེགས་ཕུང་།"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "གཡོན་ཕྲང་།"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "དབུས་ཀྱི་ཕྲང་།"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "གཡས་ཀྱི་ཕྲང་།"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "ཨ་ལེཕ།"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "ཆ་ཚན་སྟོངམ།"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "ཡན་ལག་ངོ་མ།"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "བློའི་འཆར་ཚུལ།"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
#, fuzzy
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "ཚད་མེདཔ།"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "ཆ་ཤས།"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "ནེབ་ལ།"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "ཝེར་ཨིས་ཊེས།"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "ཚག་བར་ན།"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "མགོ་ལུ་ཚག"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
#, fuzzy
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "མཇུག་ལུ་ཚག"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "ཚག་མཇུག་ལུ།"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "ཚག་ཀེར་ཕྲང་།"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "རྒྱུན་མཐུད།"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
#, fuzzy
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "བགོ་རྩིས།(གཡོ་ཤད།)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "བགོཝ་ཨིན།"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "བགོ་ནི་མི་བཏུབ་པས།"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "གཡོན་གྱི་མདའ་རྟགས་གཉིས་ལྡན།"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "གཡོན་དང་དཡས་ཀྱི་མདའ་རྟགས་གཉིས་ལྡན།"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "གཡས་ཀྱི་མདའ་རྟགས་གཉིས་ལྡན།"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "རང་བཞིན་ཨང་གྲངས་ཀྱི་ཆ་ཙད།"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "ཧྲིལ་ཨང་གི་ཆ་ཚད།"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "མཚུངས་གྲངས་ཨང་གྲངས་ཀྱི་ཆ་ཚད།"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "ཨང་གྲངས་ངོ་མའི་ཆ་ཚད།"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "ཨང་གྲངས་གོ་དཀའ་བའི་ཆ་ཚད།"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "སྒྲ་གདངས་མཐོ་དམའ་གི་རྟགས་ཆེ་བ།"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "སྣ་སྒྲ་ཅན་གྱི་སྟགས་ཆེ་བ།"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "མཉམ་ཐིག་མདའ་རྟགས་ཆེ་བ།"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "ཨེཆ་ཕྲ་རིང་།"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "ལེམབ་ཌ་ཕྲ་རིང་།"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "གཡོན་གྱི་མདའ་རྟགས།"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "གཡས་ཀྱི་མདའ་རྟགས།"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "ཡར་གྱི་མདའ་རྟགས།"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "མར་གྱི་མདའ་རྟགས།"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr ""
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr ""
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr ""
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr ""
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr ""
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr ""
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr ""
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr ""
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr ""
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "་གཅིག་ལྡན/ཟང་ལྡན་བཀོལ་སྤྱོདཔ།"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "མཐུན་འབྲེལ།"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
#, fuzzy
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "བཀོལ་སྤྱོད་ཚུ་གཞི་སྒྲིག་འབད།"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "ལས་འགན་ཚུ།"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
#, fuzzy
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "བཀོལ་སྤྱོདཔ།"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
#, fuzzy
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "ཁྱད་ཆོས་ཚུ།"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
#, fuzzy
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "གུག་ཤད་ཚུ།"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
#, fuzzy
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "རྩ་སྒྲིག"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "གཞན་ཚུ།"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
#, fuzzy
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "དཔེར་བརྗོད།"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "ཚད་ལྡན།"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "ཨའི་ཊ་ལིཀ། "
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "རྒྱགས་པ།"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "STR_BLACK"
msgid "black"
msgstr "གནགཔོ།"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "ཧོནམ།"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "ལྗང་ཁུ།"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr ""
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "སྐྱ་ཐལ།"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "དུས་ཚོད།"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "སེརཔོ།"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "སྦ་བཞག"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "སིན།"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "ཡིག་གཟུགས།"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "གཡོན།"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "དབུས།"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "གཡས།"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "བརྡ་བཀོད་ཚུ།"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "མན་ངག"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "ཡིག་ཆ་སྲུང་བཞག"
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION མན་ངག"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "འཛོལ་བ: "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "རེ་བ་མེད་པའི་ཡིག་འབྲུ།"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "རེ་བ་བཀོད་ཡོདཔ།'{'"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "རེ་བ་བཀོད་ཡོདཔ།'}'"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "རེ་བ་བཀོད་ཡོདཔ།'('"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "རེ་བ་བཀོད་ཡོདཔ།')' "
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "རེ་བ་བཀོད་ཡོདཔ།'#'"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "ཚོས་གཞི་དགོས་མཁོ་ཡོདཔ།"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'གཡས' རེ་བ་བཀོད་ཡོདཔ། "
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME ཀེལ་སི།"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "ནང་དོན་ཚུ།"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "མགོ་མིང་།"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "མན་ངག་གི་ཚིག་ཡིག(~F)"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "མཐའ་མཚམས་ཚུ།"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "ཚད།"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "ཚད་ངོ་མ།(~r)"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "ཤོག་ལེབ་ནང་ལུ་ཚུད་ཚད་འབད།(~F)"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
diff --git a/source/dz/svtools/messages.po b/source/dz/svtools/messages.po
index 6aa879a592d..ff9394050b3 100644
--- a/source/dz/svtools/messages.po
+++ b/source/dz/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "འབད་བཤོལ།:"
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~ཡང་བསྐྱར།"
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "རྩ་སྒྲིག་འབད་མ་ཚར་བའི་ ཚིག་ཡིག།"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "ཨེསི་ ཝི ཨེགསི་ ནང་འཁོད་འབྲེལ་ལམ་ལས་ གནས་ཚད་བརྡ་དོན།"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "ནེཊི་སིཀེཔ་ དེབ་རྟགས།"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "སིཊར་ སར་བར་ རྩ་སྒྲིག།"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "སིཊར་ དངོས་ཕོ་ རྩ་སྒྲིག།"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "ཨེཔ་ལེཊི་ དངོས་པོ།"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "པ་ལག་ཨིན དངོས་པོ།"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "སིཊར་ རའི་ཊར ༣.༠ དངོས་པོ།"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "སིཊར་ རའི་ཊར ༤.༠་དངོས་པོ།"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "སིཊར་ རའི་ཊར་ ༥.༠་དངོས་པོ།"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "སིཊར་ རའི་ཊར/ཝེབ་ ༤.༠་དངོས་པོ།"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "སིཊར་ རའི་ཊར/ཝེབ་ ༥.༠་དངོས་པོ།"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "སིཊར་ རའི་ཊར/ཨམ་ ༤.༠་དངོས་པོ།"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "སིཊར་ རའི་ཊར་/ཨམ་༥.༠་དངོས་པོ།"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "སིཊར་ འབྲི་ནའི་ དངོས་"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "སིཊར་ཌཱ་ ༤.༠་ དངོས་པོ།"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "སིཊར་ཨིམ་པེ་རེསི་ ༥.༠་དངོས་པོ།"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "སིཊར་ཌཱ་ ༥.༠་དངོས་པོ།"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "སིཊར་ཀེལཀི་ དངོས་པོ།"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "སིཊར་ཀེལཀི་ ༤.༠་དངོས་པོ།"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "སིཊར་ཀེལཀི་ ༥.༠་དངོས་པོ།"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "སིཊར་ཅརཊི་ དངོས་པོ།"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "སིཊར་ཅརཊི་ ༤.༠་དངོས་པོ།"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "སིཊར་ཅརཊི་ ༥.༠་ དངོས་པོ།"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "སིཊར་ཨི་མིཇི་ དངོས་པོ།"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "སིཊར་ཨི་མེཇི་ ༤.༠་ དངོས་པོ།"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "སིཊར་ཨི་མེཇི་ ༥.༠་དངོས་པོ།"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "སིཊར་མེཏ་ དངོས་པོ།"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "སིཊར་མེཏ་ ༤.༠་དངོས་པོ།"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "སིཊར་མིཊ་ ༥.༠་དངོས་པོ།"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "སིཊར་ཨོབ་ཇིཀཊི་ ཚོན་གྱི་དངོས་པོ།"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "སི་ལིཀ།"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "མའི་ཀོརོ་སོཕཊི་ མིང་ཚིག་ དངོས་པོ།"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "སིཊར་ ཕེརེམ་སིཊི་ དངོས་པོ།"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "ཡིག་ཚང་ ཡིག་ཆ་ དངོས་པོ།"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "དྲན་འཛིན་ ཡིག་ཆ་ དངོས་པོ།"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "ཨེས་ཨེཕ་ཨེགསི་ ཡིག་ཆ།"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "སིཊར་ཅརཊི་ ༥.༠་དངོས་པོ།"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "ཚད་རིས་ དངོས་ཕོ།"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "ཝིན་ཌོསི་ མེ་ཊ་ཡིག་སྣོད།"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "གནད་སྡུད་ འབྱུང་ཁུངས་ དངོས་པོ།"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "གནད་སྡུད་ འབྱུང་ཁུངས་ ཐིག་ཁྲམ།"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "ཨེསི་ཀིའུ་ཨེལ འདྲི་དཔྱད།"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "འབྲེལ་ལམ།"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "བསམ་བཀོད་མེད་པའི་ ཨེཆ་ཊི་ཨེམ་ཨེལ་ རྩ་སྒྲིག།"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "དངོས་པོ་%་ འདི་བཙུགས་མ་ཚུགས།"
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "ཡིག་སྣོད་%ལས་ དངོས་པོ་ བཙུགས་མ་ཚུགས།"
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "དངོས་པོ་ཐེབས་ཚུ།"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "མ་ཤེས་པའི་ འབྱུང་ཁུངས།"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "བཱའིཊིསི།"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "ཀེ་བི།"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "ཨེམ་བི།"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "ཇི་བི།"
@@ -501,1253 +501,1253 @@ msgstr "ཇི་བི།"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "ཀ་ཁ་ཨང་ཡིག།"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "སྤྱིར་བཏང་།"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "ཡིག་འབྲུའི་ཆ་ཚན།"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "ཚིག་མཛོད།"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "པིན་ཡིན།"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "སིཊོཀ།"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "རེ་ཌི་ཀཱལ།"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "ཡུ་ནི་ཀོཌི།"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "ཞུ་ཡིན།"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "བརྒྱུད་འཕྲིན་ཀི་དེབ།"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "སྒྲ་རྟགས།(ཀ་ཁའི་ཨང་ཡིག་དང་པ།)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "སྒྲ་རྟགས (ཀ་ཁའི་ཨང་ཡིག་མཇུག་མམ།)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "ཀ་ཁའི་ཨང་ཡིག།"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "ཚིག་མཛོད།"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "པིན་ཡིན།"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "རེ་ཌི་ཀཱལ།"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "སིཊོཀ།"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "ཞུ་ཡིན།"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "སྒྲ་རྟགས་(ཀ་ཁའི་ཨང་ཡིག་དང་པ ཚེག་ཁྱིམ་ཚུ་གིས་སྡེ་ཚན་བཟོ་བཟོཝ།)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "སྒྲ་རྟགས་(ཀ་ཁའི་ཨང་ཡིག་དང་པ་ གསལ་བྱེད་ཚུ་གིས་སྡེ་ཚན་བཟོ་བཟོཝ།)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "སྒྲ་རྟགས་(ཀ་ཁའི་ཨང་ཡིག་མཇུག་མམ ཚེག་ཁྱིམ་་ཚུ་གིས་ སྡེ་ཚན་བཟོ་བཟོཝ།)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "སྒྲ་རྟགས་(ཀ་ཁའི་ཨང་མཇུག་མམ་ གསལ་བྱེད་ཚུ་གིས་ སྡེ་ཚན་བཟོ་བཟོཝ།)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "ཡང་བ།"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "ཡང་བའི་ ཨའི་ཊ་ལིཀ། "
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "དུས་རྒྱུན།"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "གཡས་གཡོ།"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "རྒྱགས་པ།"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "རྒྱགས་པ་གཡས་གཡོ།"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "གནགཔོ།"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "གཡས་གཡོ་ གནགཔོ།"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "ཀི་དེབ།"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "སྲབ་དམ།"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "དཔར་འཕྲུལ་དང་ཁྱོད་ཀྱི་ གསལ་གཞི་ནང་ལུ་ འ་ནི་ཡིག་གཟུགས་གཅིགཕ་འདི་ ལག་ལེན་འཐབ་བཏུབ།"
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "འ་ནི་འདི་དཔར་འཕྲུལ་ ཡིག་གཟུགས་ཨིན། གསལ་གཞི་ གཟུགས་བརྙན་འདི་ སོ་སོ་འགྱུར་འོང་།"
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "འ་ནི་ཡིག་གཟུགས་ཀྱི་ བཟོ་རྣམ་འདི་ མཚུངས་བཟོ་འབད་འོང་ ཡང་ན་ཐག་ཉེ་ཤོས་ཀྱི་ མཐུན་སྒྲིག་འབད་མི་བཟོ་རྣམ་ཅིག་ ལག་ལེན་འཐབ་འོང་།"
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "འ་ནི་ཡིག་གཟུགས་འདི་ གཞི་བཙུགས་མ་འབད། ཐག་ཉེ་ཤོས་ ཐོབ་ཚུགས་ཕའི་ཡིག་གཟུགས་ཅིག་ ལག་ལེན་འཐབ་འོང་།"
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "གྲལ་ཐིག་མར་སྤོ་བཤུད་འབད"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "གཡོན་ལུ་་ལུ་སྤོ།"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "གཡས་ལུ་སྤོ།"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "མར་སྤོ།"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "ཁ་སྐོང་རྐྱབས།"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "ཐད་སྙོམས་ཕྱི་ཁར།"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "ཀེར་ཕྲེང་སྦེ་ཡོད་མི་ ཐིག་ཤིང་།"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "ཐེརེཤ་ཧཱོལ་ བིཊི་༡།"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "བིཊི་༡་ སྤར་ཡོདཔ།"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "སྐྱ་ཐལ་ཆ་ཚད་ བིཊི་༤།"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "སྐྱ་ཐལ་ཆ་ཚད་ བིཊི་༤།"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "ཚོས་གཞི་ བདེན་པ་ བིཊི་༢༤།"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "གླ་ཆ།"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "དབྱེ་སེལ།"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "ཐེམ།"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "གཞི་བཙུགས་འབད་དོ།..."
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "བསྒུག་དོ།"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "འཛོལ་བ།"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "ཤོག་ལེབ་བཏོན་གཏང་།(~e)"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "དྲན་ཚད་མ་ལངམ།"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr ""
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
#, fuzzy
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "མིང་ཚིག་ཡིག་ཆ་ཚུ།"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<none>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "ཚོང་སྡེ།"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "ལས་ཁུངས།"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "མགོ་མིང་།"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "མཇུག་མིང་།"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "ཁྲོམ་ལམ།"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "རྒྱལ་ཁབ།"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "གནས་ཨང་།"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "གྲོང་སྡེ།"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "གོ་གནས།"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "གནས་ས།"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "ཁ་བྱང་བྲིས་ཤོག།"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "མིང་རྟགས་བསྡུས་པ།"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "བསྟོད་བསྔགས་ མཇུག།"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "བརྒྱུད་འཕྲིན: ཁྱིམ།"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "བརྒྱུད་འཕྲིན:ལཱ་ས།"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "ཡུ་ཨར་ཨེལ"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "དྲན་འཛིན།"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "ལག་ལེན་པ་ ༡།"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "ལག་ལེན་པ་ ༢།"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "ལག་ལེན་པ་ ༣།"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "ལག་ལེན་པ་ ༤།"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ཨའི་ཌི།"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "མངའ་སྡེ།"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "བརྒྱུད་འཕྲིན:ཡིག་ཚང་།"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "པེ་ཇར།"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "འགྲུལ་འཕྲིན།"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "བརྒྱད་འཕྲིན:གཞན།"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "ཟླ་ཐོ།"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "འགྲོན་བརྡ་འབད།"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "ཇེ་ཨར་ཨི་ དགོས་མཁོ་ཡོདཔ།"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "ཇེ་ཨར་ཨི་ སེལ་འཐུ་འབད།"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "ཇེ་ཨར་ཨི་ སྐྱོན་ཅན་ཨིན་པས།"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "འབྱུང་ཁུངས་ཀྱི་ཨང་རྟགས།"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "དེབ་རྟགས་ཀྱི་ཡིག་སྣོད།"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "ཚད་རིས།"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "རིམ་སྒྲིག་ཡིག་སྣོད།"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "གློག་རིམ།"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "གནད་སྡུད་གཞི་རྟེན་གྱི་ཐིག་ཁྲམ།"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "རིམ་ལུགས་ཡིག་སྣོད།"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "ཨེམ་ཨེསི་མིང་ཚིག་གི་ཡིག་ཆ།"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "གྲོག་རམ་ཡིག་སྣོད།"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་ཆ།"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "ཡིག་མཛོད་ཀྱི་ཡིག་སྣོད།"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "དྲན་དེབ་ཡིག་སྣོད།"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "སི་ཊར་ཡིག་ཚང་ ༥་༠ ཊིམ་པེལེཊི།"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "སི་ཊར་རའི་ཊར་ ༤.༠/༥.༠ ཡིག་ཆ་ཨམ།"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "སི་ཊར་ཡིག་ཚང་ ༥་༠ ཊིམ་པེལེཊི།"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "ཚིག་ཡིག་གི་ཡིག་སྣོད།"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "འབྲེལ་ལམ།"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "སི་ཊར་ཡིག་ཚང་ ༥་༠ ཊིམ་པེལེཊི།"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "ཨེམ་ཨེསི་ ཨེགསི་སེལ་ ཡིག་ཆ།"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "ཨེམ་ཨེསི་ ཨེགསི་སེལ་ ཊེམ་པེལེཊི།"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "རུ་ཚན་གྱི་ཡིག་སྣོད།"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ཡིག་སྣོད།"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "སྣོད་འཛིན།"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "ཚིག་ཡིག་གི་ཡིག་ཆ།"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "ཤོག་ཁྲམ།"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "གསལ་སྟོན།"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "པར་རིས།"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་ཆ།"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "ཡིག་ཆ་ཨམ།"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "མན་ངག"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "གནས་སྡུད་གཞི་རྟེན།"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "ཉེ་གནས་ཀྱི་འདྲེན་འཕྲུལ།"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "ཌིསིཀ་གི་འདྲེན་འཕྲུལ།"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "སི་ཌི་-ཨར་ཨོ་ཨེམ འདྲེན་འཕྲུལ།"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "ཡོངས་འབྲེལ་གྱི་མཐུད་ལམ།"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "ཨེམ་ཨེསི་ པ་ཝར་པོའིནཊི་ ཡིག་ཆ།"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "ཨེམ་ཨེསི་ པ་ཝར་པོའིནཊི་ ཊེམ་པེལེཊི།"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "ཨེམ་ཨེསི་ པ་ཝར་པོའིནཊི་ སྟོན།"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "ཨང་རྩིས་ཨེམ་ཨེལ་ ཡིག་ཆ།"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ གནད་སྡུད་གཞི་རྟེན།"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ པར་རིས།"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ མན་ངག"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ ཡིག་ཆ་ཨམ།"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ གསལ་སྟོན།"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ ཤོག་ཁྲམ།"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ ཚིག་ཡིག"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ ཤོག་ཁྲམ་གྱི་ཊེམ་པེལེཊི།"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ པར་རིས་ཀྱི་ཊེམ་པེལེཊི།"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ གསལ་སྟོན་གྱི་ཊེམ་པེལེཊི།"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ ཚིག་ཡིག་གི་ཊེམ་པེལེཊི།"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME རྒྱ་བསྐྱེད་"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/dz/svx/messages.po b/source/dz/svx/messages.po
index 4eb52103828..933be8c3b7d 100644
--- a/source/dz/svx/messages.po
+++ b/source/dz/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Dzongkha <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/dz/>\n"
@@ -16729,12 +16729,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
-#, fuzzy
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "བསམ་བཀོད།"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/dz/sw/messages.po b/source/dz/sw/messages.po
index ad8a8044ca1..89079fae569 100644
--- a/source/dz/sw/messages.po
+++ b/source/dz/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18094,88 +18094,94 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "ཡོངས་ཁྱབ།"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
#, fuzzy
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "མགུ་རྒྱན།"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr ""
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr ""
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr ""
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
#, fuzzy
msgctxt "inserttable|label2"
msgid "Options"
msgstr "གདམ་ཁ་ཚུ།"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20795,296 +20801,296 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr " ་དེ་གིས་ སྟོན་ནི་ཨམ་དང་ སྤྱིར་ཨམ་གཉིས་ཀྱི་བར་ན་ལུ་སོར་བསྒྱུར་འབདཝ་ཨིན།"
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "མགོ་ཡིག"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "མཇུག་ཡིག"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "ད་ལྟོའི་འོད་རྟགས་ཀྱི་གནས་ས་དེ་ལུ་དྲན་བསྐུལ་ཅིག་གཞི་སྒྲིག་འབད་ནིའི་དོན་ལུ་ ན་ལུ་ཨེབ་གཏང་འབད། ཁྱོད་དྲན་བསྐུལ་ལྔ་ཚུན་ཚོད་ལུ་ངེས་འཛིན་འབད་ཚུགས། དྲན་བསྐུལ་ཅིག་ལུ་མཆོངས་ནིའི་དོན་ལུ་ འགྲུལ་བསྐྱོདཔ་ནང་གི་ འགྲུལ་བསྐྱོདཔ་ངོས་དཔར་སྒོ་སྒྲིག་དེ་ཨེབ་གཏང་འབད། དྲན་བསྐུལ་ངོས་དཔར་དེ་ཨེབ་གཏང་འབདཞིནམ་ལས་ དེ་ལས་ ཧེ་མམ་ ཡང་ན་ ཤུལ་མམ་གྱི་ ཨེབ་རྟ་དེ་ལུ་ཨེབ་གཏང་འབད། "
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
#, fuzzy
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "གནས་རིམ་ ཡར་བསྐྱེད་འབད།"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
#, fuzzy
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "གནས་རིམ་ མར་ཕབ་འབད།"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
#, fuzzy
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "ཐབས་ལམ་འདྲུད།"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "ཡིག་ཆ།"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
#, fuzzy
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "སྒོ་སྒྲིག་ཤུགས་ལྡན་བཟོ།"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr " ་དེ་གིས་ སྟོན་ནི་ཨམ་དང་ སྤྱིར་ཨམ་གཉིས་ཀྱི་བར་ན་ལུ་སོར་བསྒྱུར་འབདཝ་ཨིན།"
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
#, fuzzy
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "ཞུན་དག།"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
#, fuzzy
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "དུས་མཐུན་བཟོ།"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "ཁྱོད་ཀྱིས་ དུས་མཐུན་བཟོ་དགོ་པའི་ ནང་དོན་འདི་གདམ་ཁ་བརྐྱབ།"
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
#, fuzzy
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "བཙུགས།"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "གིས་ ཡིག་ཆའི་ཨམ་གྱི་ནང་ལུ་ ཡིག་སྣོད་དང་ཟུར་ཐོ་ དེ་ལས་ ཡིག་ཆ་གསརཔ་ཅིག་བཙུགས་དོ་ཡོདཔ་ཨིན།"
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "ཡར་སྤོ།"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "མར་སྤོ།"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/el/helpcontent2/source/text/scalc/01.po b/source/el/helpcontent2/source/text/scalc/01.po
index 1e70eb18a09..7d2f8b97336 100644
--- a/source/el/helpcontent2/source/text/scalc/01.po
+++ b/source/el/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2020-10-26 21:35+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/el/>\n"
@@ -56474,6 +56474,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr "Χρήση κανονικών παραστάσεων και ένθετων συναρτήσεων"
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/sdraw.po b/source/el/helpcontent2/source/text/sdraw.po
index 69da7106a6c..ea7028ab92c 100644
--- a/source/el/helpcontent2/source/text/sdraw.po
+++ b/source/el/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-06-29 11:28+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/el/>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/shared/00.po b/source/el/helpcontent2/source/text/shared/00.po
index a242c31796d..2f6ed092dc3 100644
--- a/source/el/helpcontent2/source/text/shared/00.po
+++ b/source/el/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-10-26 21:35+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/el/>\n"
@@ -2663,76 +2663,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "Ένα καλό παράδειγμα σχεσιακής βάσης δεδομένων μπορεί να περιγραφεί από μια βάση δεδομένων αγορών όπου περιέχονται πίνακες Πελατών, Αγορών και Τιμολογίων. Στον πίνακα τιμολογίων, δεν υπάρχουν δεδομένα πελατών ή αγορών, αλλά περιέχονται οι παραπομπές (μέσω μιας σχεσιακής σύνδεσης ή μιας σχέσης) για το αντίστοιχο πεδίο πίνακα (π.χ. το πεδίο αναγνωριστικού πελάτη από τον πίνακα πελατών)."
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>επιβεβαίωση εγγραφής, ορισμός</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "Επιβεβαίωση εγγραφής (Register-true)"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/el/helpcontent2/source/text/shared/01.po b/source/el/helpcontent2/source/text/shared/01.po
index b000694f1b5..fad74f6e844 100644
--- a/source/el/helpcontent2/source/text/shared/01.po
+++ b/source/el/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-26 21:35+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/el/>\n"
@@ -5120,24 +5120,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr "Για μερικούς τύπους εγγράφου, μπορείτε να επιλέξετε την εκτύπωση φυλλαδίου."
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr "Περισσότερες επιλογές"
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr "<ahelp hid=\".\">Στο παράθυρο <emph>Περισσότερες επιλογές</emph> μπορείτε να ορίσετε κάποιες πρόσθετες επιλογές για την τρέχουσα εργασία εκτύπωσης.</ahelp>"
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9395,14 +9377,14 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "Αλλάζει μεταξύ κύριας προβολής και κανονικής προβολής."
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Εικονίδιο</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgstr ""
#. 3Lq2G
#: 02110000.xhp
@@ -9431,14 +9413,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_EDIT\">Επεξεργαστείτε τα περιεχόμενα του επιλεγμένου στοιχείου στον κατάλογο <emph>πλοηγητής</emph>. Εάν η επιλογή είναι αρχείο, αυτό το αρχείο ανοίγεται για επεξεργασία. Εάν η επιλογή είναι ευρετήριο, ανοίγεται ο διάλογος <emph>ευρετήριο</emph>.</ahelp>"
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Εικονίδιο</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgstr ""
#. nRB3E
#: 02110000.xhp
@@ -9467,14 +9449,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Πατήστε και επιλέξτε τα περιεχόμενα που επιθυμείτε να ενημερώσετε.</ahelp>"
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Εικονίδιο</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgstr ""
#. F4J5u
#: 02110000.xhp
@@ -9602,14 +9584,14 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "Μπορείτε επίσης να εισάγετε αρχεία στο κύριο έγγραφο με το να τα σύρετε και να τα αφήσετε στην κύρια προβολή της Περιήγησης."
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Εικονίδιο</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgstr ""
#. ijR7M
#: 02110000.xhp
@@ -9710,14 +9692,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Αποθηκεύει ένα αντίγραφο των περιεχομένων των συνδεδεμένων αρχείων στο κύριο έγγραφο. Αυτό εξασφαλίζει ότι τα τρέχοντα περιεχόμενα είναι διαθέσιμα όταν δεν υπάρχει πρόσβαση στα συνδεδεμένα αρχεία.</ahelp>"
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Εικονίδιο</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgstr ""
#. ADEyJ
#: 02110000.xhp
@@ -9746,14 +9728,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Μετακινεί την επιλογή προς τα πάνω κατά μία θέση στον κατάλογο Περιήγησης.</ahelp> Μπορείτε επίσης να μετακινήσετε εγγραφές με το να τις σύρετε και να τις αφήσετε στον κατάλογο. Εάν μετακινήσετε ένα τμήμα κειμένου σε άλλο τμήμα κειμένου, τα τμήματα κειμένου συγχωνεύονται."
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Εικονίδιο</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgstr ""
#. GqEUL
#: 02110000.xhp
@@ -9782,14 +9764,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Μετακινεί την επιλογή προς τα κάτω κατά μία θέση στον κατάλογο Περιήγησης.</ahelp> Μπορείτε επίσης να μετακινήσετε εγγραφές με το να τις σύρετε και να τις αφήσετε στον κατάλογο. Εάν μετακινήσετε ένα τμήμα κειμένου σε άλλο τμήμα κειμένου, τα τμήματα κειμένου συγχωνεύονται."
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
-msgstr "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Εικονίδιο</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgstr ""
#. DLEGF
#: 02110000.xhp
diff --git a/source/el/helpcontent2/source/text/shared/02.po b/source/el/helpcontent2/source/text/shared/02.po
index d11b2460592..2fa568d26cf 100644
--- a/source/el/helpcontent2/source/text/shared/02.po
+++ b/source/el/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-27 11:28+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/el/>\n"
@@ -11033,14 +11033,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr "<bookmark_value>παράγραφοι;μείωση εσοχών</bookmark_value><bookmark_value>μείωση εσοχής παραγράφου</bookmark_value>"
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Μείωση εσοχής\">Μείωση εσοχής</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11060,14 +11060,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Εάν προηγουμένως αυξήσατε την εσοχή για μερικές επιλεγμένες παραγράφους ομαδικά, αυτή η εντολή μπορεί να μειώσει την εσοχή για όλες τις επιλεγμένες παραγράφους.</caseinline><caseinline select=\"CALC\">Το περιεχόμενο του κελιού αναφέρεται στην τρέχουσα τιμή στο <link href=\"text/shared/01/05340300.xhp\" name=\"Μορφή - Κελιά - Στοίχιση\"><emph>Μορφή - Κελιά - Στοίχιση</emph></link>.</caseinline></switchinline>"
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Εικονίδιο</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11105,14 +11105,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr "<bookmark_value>παράγραφοι; αύξηση εσοχών</bookmark_value><bookmark_value>αύξηση εσοχής παραγράφου</bookmark_value>"
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Αύξηση εσοχής\">Αύξηση εσοχής</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11132,14 +11132,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Εάν αρκετές παράγραφοι έχουν επιλεγεί, η εσοχή όλων των επιλεγμένων παραγράφων αυξάνεται.</caseinline><caseinline select=\"CALC\"> Το περιεχόμενο κελιού αναφέρεται στην τρέχουσα τιμή στην καρτέλα <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Μορφή - Κελιά - Στοίχιση.</emph></link></caseinline></switchinline>"
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/el/helpcontent2/source/text/shared/optionen.po b/source/el/helpcontent2/source/text/shared/optionen.po
index ef23b40aa7d..39afd6bf062 100644
--- a/source/el/helpcontent2/source/text/shared/optionen.po
+++ b/source/el/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-25 17:00+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/el/>\n"
@@ -11861,32 +11861,32 @@ msgctxt ""
msgid "Snap"
msgstr "Συγκράτηση"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "Σε γραμμές συγκράτησης"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
-msgstr "<variable id=\"anlinie\"><ahelp hid=\".\">Προσκολλά την άκρη του μεταφερόμενου αντικειμένου στην πλησιέστερη γραμμή προσκόλλησης, όταν ελευθερώνετε το ποντίκι.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
+msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "Μπορείτε επίσης να ορίσετε αυτή τη ρύθμιση χρησιμοποιώντας το εικονίδιο <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Αγκίστρωση σε γραμμές προσκόλλησης\"><emph>Αγκίστρωση σε γραμμές προσκόλλησης</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Αγκίστρωση σε γραμμές προσκόλλησης\"><emph>Αγκίστρωση σε γραμμές προσκόλλησης</emph></link></caseinline><defaultinline><emph>Αγκίστρωση σε γραμμές προσκόλλησης</emph></defaultinline></switchinline>, που είναι διαθέσιμο στην γραμμή <emph>Επιλογές</emph> σε μία παρουσίαση ή έγγραφο σχεδίασης."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr ""
#. eUCCJ
#: 01070300.xhp
diff --git a/source/el/helpcontent2/source/text/simpress/02.po b/source/el/helpcontent2/source/text/simpress/02.po
index 0169fbfce7b..9228c432690 100644
--- a/source/el/helpcontent2/source/text/simpress/02.po
+++ b/source/el/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-03-26 21:16+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress02/el/>\n"
@@ -5695,41 +5695,41 @@ msgctxt ""
msgid "Exit all groups"
msgstr "Έξοδος από όλες τις ομάδες"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Πρόσδεση σε γραμμές προσκόλλησης"
+msgid "Snap to Snap Guides"
+msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Πρόσδεση σε γραμμές προσκόλλησης\">Πρόσδεση σε γραμμές προσκόλλησης</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Εικονίδιο</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Πρόσδεση σε γραμμές προσκόλλησης"
+msgid "Snap to Snap Guides"
+msgstr ""
#. oXWsX
#: 13150000.xhp
diff --git a/source/el/helpcontent2/source/text/swriter.po b/source/el/helpcontent2/source/text/swriter.po
index 37c78306571..4cad7a86de0 100644
--- a/source/el/helpcontent2/source/text/swriter.po
+++ b/source/el/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-25 17:00+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/el/>\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "Αριστερά-Προς-Δεξιά"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">εικονίδιο αριστερά προς δεξιά</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "Δεξιά-Προς-Αριστερά"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">εικονίδιο δεξιά προς αριστερά</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/el/helpcontent2/source/text/swriter/01.po b/source/el/helpcontent2/source/text/swriter/01.po
index 31b4d751016..326d0c8b9bf 100644
--- a/source/el/helpcontent2/source/text/swriter/01.po
+++ b/source/el/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-10 16:35+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/el/>\n"
@@ -683,13 +683,13 @@ msgctxt ""
msgid "Navigator"
msgstr "Περιηγητής"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -710,13 +710,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -764,13 +764,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -800,13 +800,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -908,13 +908,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -926,13 +926,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -944,13 +944,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30104,6 +30104,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Ανοίγει τον διάλογο <emph>Παραλήπτες συγχώνευσης αλληλογραφίας</emph>.</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/swriter/guide.po b/source/el/helpcontent2/source/text/swriter/guide.po
index 82e48d17372..dee36e9422e 100644
--- a/source/el/helpcontent2/source/text/swriter/guide.po
+++ b/source/el/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-07-25 17:00+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/el/>\n"
@@ -7793,50 +7793,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Εσοχές παραγράφων</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr "Για να αλλάξετε τις μονάδες μέτρησης, επιλέξτε <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Προτιμήσεις</item></caseinline><defaultinline><item type=\"menuitem\">Εργαλεία - Επιλογές</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Γενικά</item> και έπειτα επιλέξτε μια νέα μονάδα μέτρησης στην περιοχή ρυθμίσεων."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "Μπορείτε να μεταβάλετε τις εσοχές για την τρέχουσα παράγραφο ή για όλες τις επιλεγμένες παραγράφους ή για μια τεχνοτροπία παραγράφου."
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "Μπορείτε να μεταβάλετε τις εσοχές για την τρέχουσα παράγραφο ή για όλες τις επιλεγμένες παραγράφους ή για μια τεχνοτροπία παραγράφου."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "Επιλέξτε <item type=\"menuitem\">Μορφή - Παράγραφος - Εσοχές και διάστιχο</item> για να μεταβάλετε τις εσοχές για την τρέχουσα παράγραφο ή για όλες τις επιλεγμένες παραγράφους. Μπορείτε επίσης να <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">ορίσετε εσοχές χρησιμοποιώντας το χάρακα</link>."
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "Μπορείτε επίσης να <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">ορίσετε εσοχές χρησιμοποιώντας το χάρακα</link>. Για να εμφανίσετε το χάρακα, επιλέξτε <item type=\"menuitem\">Προβολή - Χάρακας</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "Επιλέξτε <item type=\"menuitem\">Μορφή - Παράγραφος - Εσοχές και διάστιχο</item> για να μεταβάλετε τις εσοχές για την τρέχουσα παράγραφο ή για όλες τις επιλεγμένες παραγράφους. Μπορείτε επίσης να <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">ορίσετε εσοχές χρησιμοποιώντας το χάρακα</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "Μπορείτε επίσης να <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">ορίσετε εσοχές χρησιμοποιώντας το χάρακα</link>. Για να εμφανίσετε το χάρακα, επιλέξτε <item type=\"menuitem\">Προβολή - Χάρακας</item>."
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "Δεξιοπατήστε σε μια παράγραφο και επιλέξτε <item type=\"menuitem\">Επεξεργασία τεχνοτροπίας παραγράφου - Εσοχές και διάστιχο</item> για να μεταβάλετε τις εσοχές για όλες τις παραγράφους που χρησιμοποιούν την ίδια τεχνοτροπία παραγράφου."
+msgid "Positioning indents"
+msgstr ""
#. qUxKq
#: indenting.xhp
@@ -7847,6 +7847,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "Οι εσοχές υπολογίζονται αναφορικά με το αριστερό και δεξί περιθώριο της σελίδας. Αν επιθυμείτε η παράγραφος να εκτείνεται μέσα στο περιθώριο, ορίστε αρνητικό αριθμό."
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr "Για να αλλάξετε τις μονάδες μέτρησης, επιλέξτε <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Προτιμήσεις</item></caseinline><defaultinline><item type=\"menuitem\">Εργαλεία - Επιλογές</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Γενικά</item> και έπειτα επιλέξτε μια νέα μονάδα μέτρησης στην περιοχή ρυθμίσεων."
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7856,6 +7865,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "Οι εσοχές διαφέρουν αναφορικά με την κατεύθυνση γραφής. Για παράδειγμα, κοιτάξτε την τιμή της εσοχής <item type=\"menuitem\">Πριν από κείμενο </item> σε γλώσσες που γράφονται αριστερά προς δεξιά. Το αριστερό άκρο της παραγράφου έχει εσοχή ανάλογα με το αριστερό περιθώριο. Σε γλώσσες που γράφονται από δεξιά προς αριστερά, η παράγραφος έχει εσοχή ανάλογα με το δεξί περιθώριο."
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7865,6 +7883,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "Για μία προεξοχή της πρώτης γραμμής, εισάγετε έναν θετικό αριθμό στο <item type=\"menuitem\">Πριν από κείμενο </item> και έναν αρνητικό στο <item type=\"menuitem\">Πρώτη γραμμή</item>."
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10232,14 +10295,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "Ενεργοποίηση ή απενεργοποίηση της αναγνώρισης αριθμών σε πίνακες"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>αριθμοί;αυτόματη αναγνώριση σε πίνακες κειμένου</bookmark_value><bookmark_value>πίνακες; αναγνώριση αριθμών</bookmark_value><bookmark_value>ημερομηνίες; αυτόματη μορφοποίηση σε πίνακες</bookmark_value><bookmark_value>αναγνώριση;αριθμοί</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10268,14 +10331,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Εφαρμόστε κάποιο από τα ακόλουθα:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "Δεξί κλικ σε ένα κελί πίνακα και επιλογή <item type=\"menuitem\">αριθμός αναγνώρισης</item>. Όταν αυτή η ιδιότητα είναι ενεργή, ένα σημείο ελέγχου εμφανίζεται μπροστά από την εντολή <item type=\"menuitem\">αριθμός αναγνώρισης</item>."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10286,6 +10358,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr "Διαλέξτε <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Προτιμήσεις</caseinline><defaultinline>Εργαλεία - Επιλογές</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Πίνακας</item> και επιλέξτε ή καθαρίστε το πλαίσιο ελέγχου <item type=\"menuitem\">Αριθμός αναγνώρισης</item>."
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12212,6 +12293,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "Όταν δημιουργείτε ένα έγγραφο το οποίο επιθυμείτε να εκτυπώσετε σαν φυλλάδιο, χρησιμοποιήστε κατακόρυφο προσανατολισμό για τις σελίδες. Το Writer εφαρμόζει τη διάταξη φυλλαδίου όταν εκτυπώσετε το έγγραφο."
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12257,50 +12356,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "Αν ο εκτυπωτής σας τυπώνει τις σελίδες και από τις δύο πλευρές, και επειδή τα φυλλάδια πάντα εκτυπώνονται οριζόντια, θα πρέπει να χρησιμοποιήσετε τη ρύθμιση \"και από τις δύο πλευρές - μικρό άκρο\" στο παράθυρο διαλόγου ρύθμισης του εκτυπωτή σας."
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
-msgstr "Επιστροφή στο διάλογο <emph>Εκτύπωση</emph> και κλικ στη σελίδα καρτέλας <emph>Διάταξη σελίδας</emph>."
+msgid "Return to <emph>Print</emph> dialog."
+msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
-msgstr "Επιλέξτε <emph>Φυλλάδιο</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
+msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "Για εκτυπωτή που τυπώνει αυτόματα και στις δύο πλευρές, ορίστε να συμπεριλάβει \"Όλες οι σελίδες\"."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Κάντε κλικ στο κουμπί <emph>OK</emph>."
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "Εάν το %PRODUCTNAME τυπώνει σελίδες με λάθος σειρά, ανοίξτε τη σελίδα καρτέλας <emph>Επιλογές</emph>, επιλέξτε <emph>Εκτύπωση σε αντίστροφη σειρά σελίδων</emph> και έπειτα τυπώστε το έγγραφο ξανά."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12374,6 +12473,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">Αρχείο - Προεπισκόπηση εκτύπωσης</link>."
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12401,32 +12725,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Εκτύπωση πολλαπλών σελίδων σε ένα φύλλο\">Εκτύπωση πολλαπλών σελίδων σε ένα φύλλο</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
-msgstr "Στη σελίδα καρτέλας <emph>Διάταξη σελίδας</emph> του διαλόγου <item type=\"menuitem\">Αρχείο - Εκτύπωση</item>, έχετε την επιλογή της εκτύπωσης πολλαπλών σελίδων σε ένα φύλλο."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
+msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
-msgstr "Διαλέξτε <emph>Αρχείο - Εκτύπωση</emph> και κλικ στην καρτέλα <emph>Διάταξη σελίδας</emph>."
+msgid "Choose <menuitem>File - Print</menuitem>"
+msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Εφαρμόστε κάποιο από τα ακόλουθα:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13391,13 +13715,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/el/sc/messages.po b/source/el/sc/messages.po
index efd19ae8877..81f9cb60c3f 100644
--- a/source/el/sc/messages.po
+++ b/source/el/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-29 14:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/el/>\n"
@@ -28624,38 +28624,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr "Ορίζει ότι, όταν κάνετε επικόλληση κελιών από το πρόχειρο σε μια περιοχή κελιών που δεν είναι κενή, θα εμφανίζεται προειδοποίηση."
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Χρήση μετρικών εκτυπωτή για μορφοποίηση του κειμένου"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "Ορίζει ότι τα μετρικά εκτύπωσης εφαρμόζονται τόσο για εκτύπωση όσο και για μορφοποίηση της προβολής στην οθόνη."
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Επισήμανση των επι_λογών στις κεφαλίδες γραμμών/στηλών"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr "Ορίζει αν θα επισημαίνονται οι κεφαλίδες στηλών και γραμμών στις επιλεγμένες στήλες ή γραμμές."
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Ενημέρωση παραπομπών κατά την ταξινόμηση της περιοχής των κελιών"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Ρυθμίσεις εισόδου"
diff --git a/source/el/sfx2/messages.po b/source/el/sfx2/messages.po
index b6be5923e2c..b3bfcda3b09 100644
--- a/source/el/sfx2/messages.po
+++ b/source/el/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-10-29 14:35+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/el/>\n"
@@ -1655,286 +1655,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Κλείσιμο παραθύρου"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Προσάρτηση"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Αποπροσάρτηση"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Περισσότερες επιλογές"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Κλείσιμο προσαρτημένης πλευρικής στήλης"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Ρυθμίσεις πλευρικής στήλης"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Προσαρμογή"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Επαναφορά προεπιλογής"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Κλείσιμο πλευρικής στήλης"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Αλιζαρίνη"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Μελίσσι"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Γαλάζια καμπύλη"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Γαλάζια σχέδια"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Ανοιχτό γαλάζιο"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Κλασικό κόκκινο"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Εστίαση"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Πουλί δάσους"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Εντώπωση"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Έμπνευση"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Φώτα"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Πράσινο χλόης"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Μητρόπολη"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Γαλάζιο του μεσονυκτίου"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Φυσική εικόνα"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Μολύβι"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Πιάνο"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Χαρτοφύλακας"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Πρόοδος"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Δύση"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Εποχής"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Ζωηρό"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Βιογραφικό"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Προεπιλογή"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Σύγχρονο"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Σύγχρονη επαγγελματική επιστολή χωρίς πατούρα"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Σύγχρονη επαγγελματική επιστολή με πατούρα"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Επαγγελματική κάρτα με λογότυπο"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Απλό"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Αφαίρεση"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Καθαρισμός όλων"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Μήκος κωδικού πρόσβασης"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Ο κωδικός πρόσβασης που έχετε εισάγει προκαλεί προβλήματα διαλειτουργικότητας. Παρακαλούμε, εισάγετε κωδικό πρόσβασης που είναι μικρότερος από 52 ψηφιολέξεις (bytes), ή μεγαλύτερος από 55 ψηφιολέξεις."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-πατήστε για να ανοίξετε τον υπερσύνδεσμο: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Πατήστε για να ανοίξετε τον υπερσύνδεσμο: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(χρησιμοποιείται από το: %STYLELIST)"
@@ -4165,6 +4129,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Διαγραφή..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/el/starmath/messages.po b/source/el/starmath/messages.po
index b818f9fbb39..b7719ea8672 100644
--- a/source/el/starmath/messages.po
+++ b/source/el/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-07-24 04:35+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/el/>\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "ή"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Πρόσημο +"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Πρόσημο -"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Πρόσημο +-"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Πρόσημο -+"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Λογικό NOT"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Άθροισμα +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Αφαίρεση -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Πολλαπλασιασμός (Κουκκίδα)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Πολλαπλασιασμός (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Πολλαπλασιασμός (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Διαίρεση (Κάθετος)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Διαίρεση (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Διαίρεση (Κλάσμα)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Πλάγια κάθετος σε κύκλο"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Κουκκίδα σε κύκλο"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Πλην σε κύκλο"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Συν σε κύκλο"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Γινόμενο τανυστή"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Λογικό AND"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Λογικό OR"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Είναι ίσο"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Είναι διάφορο"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Είναι μικρότερο από"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Είναι μεγαλύτερο από"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Είναι μικρότερο ή ίσο με"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Είναι μεγαλύτερο ή ίσο με"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Είναι μικρότερο ή ίσο με"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Είναι μεγαλύτερο ή ίσο με"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Είναι πολύ μικρότερο από"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Είναι πολύ μεγαλύτερο από"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Ορίζεται ως"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Είναι όμοιο με"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Είναι κατά προσέγγιση ίσο"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Είναι όμοιο με"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Είναι όμοιο ή ίσο με"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Είναι ανάλογο με"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Είναι κάθετο με"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Είναι παράλληλο προς"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Τείνει προς"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Αντιστοιχεί σε (αριστερά)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "αντιστοιχεί σε (δεξιά)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Περιλαμβάνεται στο"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Δεν συμπεριλαμβάνεται στο"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Περιλαμβάνει"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Ένωση"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Τομή"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Διαφορά"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Υποσύνολο"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Υποσύνολο ή ίσο"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Υπερσύνολο"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Υπερσύνολο ή ίσο με"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Όχι υποσύνολο"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Όχι υποσύνολο ή ίσο"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Όχι υπερσύνολο"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Όχι υπερσύνολο ή ίσο"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr "Γενική συνάρτηση"
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Απόλυτη τιμή"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Παραγοντικό"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Τετραγωνική ρίζα"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "Ν-οστή ρίζα"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Εκθετική συνάρτηση"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Εκθετική συνάρτηση"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Φυσικός λογάριθμος"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Λογάριθμος"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Ημίτονο"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Συνημίτονο"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Εφαπτομένη"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Συνεφαπτομένη"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Τόξο ημιτόνου"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Τόξο συνημιτόνου"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Τόξο εφαπτομένης"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Τόξο συνεφαπτομένης"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Υπερβολικό ημίτονο"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Υπερβολικό συνημίτονο"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Υπερβολική εφαπτομένη"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Υπερβολική συνεφαπτομένη"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Αντίστροφο υπερβολικό ημίτονο"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Αντίστροφο υπερβολικό συνημίτονο"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Αντίστροφη υπερβολική εφαπτομένη"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Αντίστροφη υπερβολική συνεφαπτομένη"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr "Γενικός τελεστής"
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr "Κάτω δείκτης γενικού τελεστή"
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr "Πάνω εκθέτης γενικού τελεστή"
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr "Γραφή εκθέτη/δείκτη γενικού τελεστή"
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Άθροισμα"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Κάτω δείκτης αθροίσματος"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Πάνω εκθέτης αθροίσματος"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Εκθέτης/δείκτης αθροίσματος"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Γινόμενο"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Δείκτης γινομένου κάτω"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Επάνω εκθέτης γινομένου"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Εκθέτης/δείκτης γινομένου"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Συμπληρωματικό γινόμενο"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Κάτω δείκτης συμπληρωματικού γινομένου"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Επάνω εκθέτης συμπληρωματικού γινομένου"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Εκθέτης/δείκτης συμπληρωματικού γινομένου"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Όρια"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Κάτω δείκτης ορίου"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Πάνω εκθέτης ορίου"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Εκθέτης/δείκτης ορίου"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Κάτω όριο"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Κατώτερο όριο με κάτω δείκτη"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Κατώτερο όριο με πάνω εκθέτη"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Κατώτερο όριο με εκθέτη/δείκτη"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Άνω όριο"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Ανώτερο όριο με κάτω δείκτη"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Ανώτερο όριο με πάνω εκθέτη"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Ανώτερο όριο με εκθέτη/δείκτη"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Υπάρχει"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Δεν υπάρχει"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Για όλα"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Ολοκλήρωμα"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Κάτω δείκτης ολοκληρώματος"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Πάνω εκθέτης ολοκληρώματος"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Εκθέτης/δείκτης ολοκληρώματος"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Διπλό ολοκλήρωμα"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Κάτω δείκτης διπλού ολοκληρώματος"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Πάνω εκθέτης διπλού ολοκληρώματος"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Εκθέτης/δείκτης διπλού ολοκληρώματος"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Τριπλό ολοκλήρωμα"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Κάτω δείκτης τριπλού ολοκληρώματος"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Επάνω εκθέτης τριπλού ολοκληρώματος"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Εκθέτης/δείκτης τριπλού ολοκληρώματος"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Επικαμπύλιο ολοκλήρωμα"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Κάτω δείκτης επικαμπύλιου ολοκληρώματος"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Άνω εκθέτης επικαμπύλιου ολοκληρώματος"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Έκθετης/δείκτης επικαμπύλιου ολοκληρώματος"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Διπλό επικαμπύλιο ολοκλήρωμα"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Κάτω δείκτης διπλού επικαμπύλιου ολοκληρώματος"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Πάνω εκθέτης διπλού επικαμπύλιου ολοκληρώματος"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Εκθέτης/δείκτης διπλού επικαμπύλιου ολοκληρώματος"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Τριπλό επικαμπύλιο ολοκλήρωμα"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Κάτω δείκτης τριπλού επικαμπύλιου ολοκληρώματος"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Πάνω εκθέτης τριπλού επικαμπύλιου ολοκληρώματος"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Εκθέτης/δείκτης τριπλού επικαμπύλιου ολοκληρώματος"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Οξεία"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Γραμμή άνω"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Βραχύ"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Αντίστροφη γαλλική περισπωμένη"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Κύκλος"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Κουκκίδα"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Διπλή κουκκίδα"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Τριπλή κουκκίδα"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Βαρεία"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Γαλλική περισπωμένη"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Περισπωμένη"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Βέλος διανύσματος"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Άνυσμα"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Γραμμή από κάτω"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Γραμμή από πάνω"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Γραμμή δια μέσου"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Διαφανές"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Έντονη γραμματοσειρά"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Πλάγια γραμματοσειρά"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Αλλαγή μεγέθους"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Αλλαγή γραμματοσειράς"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Μαύρο χρώμα"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Γαλάζιο χρώμα"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Πράσινο χρώμα"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Κόκκινο χρώμα"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Χρώμα γκρίζο"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Χρώμα λεμονιάς"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Χρώμα καστανό"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Χρώμα σκούρο γαλανό"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Χρώμα λαδί"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Χρώμα πορφυρό"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Χρώμα αργυρό"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Χρώμα γαλαζοπράσινο"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Κίτρινο χρώμα"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "Χρώμα RGB"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Αγκύλες ομάδων"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Στρογγυλές παρενθέσεις"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Αγκύλες"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Διπλές τετράγωνες αγκύλες"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Άγκιστρα"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Διπλές αγκύλες"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Ανώτερο όριο"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Κάτω όριο"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Απλές γραμμές"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Διπλές γραμμές"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Αγκύλες τελεστή"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Στρογγυλές αγκύλες (κλιμακωτές)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Τετράγωνες αγκύλες (κλιμακωτές)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Διπλές αγκύλες (κλιμακωτές)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Άγκιστρα (κλιμακωτά)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Γωνιακές αγκύλες (κλιμακώσιμες)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Άνω όριο (κλιμακώσιμο)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Κάτω όριο (κλιμακώσιμο)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Απλές γραμμές (κλιμακώσιμες)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Διπλές γραμμές (κλιμακώσιμες)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Αγκύλες τελεστή (κλιμακώσιμες)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Υπολογισμένο σε"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Άνω άγκιστρα (κλιμακώσιμα)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Κάτω άγκιστρα (κλιμακώσιμα)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Δείκτης δεξιά"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Δύναμη"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Δείκτης αριστερά"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Εκθέτης αριστερά"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Δείκτης κάτω"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Εκθέτης πάνω"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Μικρό κενό"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Κενό"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Νέα γραμμή"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Κάθετη στοίβα (2 Στοιχεία)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Κατακόρυφη διάταξη"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Στοίβα μήτρας"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Στοίχιση αριστερά"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Κεντραρισμένη στοίχιση"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Στοίχιση δεξιά"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Άλεφ"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Κενό σύνολο"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Πραγματικό μέρος"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Φανταστικό μέρος"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Άπειρο"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Μερική"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Ανάδελτα"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr "Μετασχηματισμός Λαπλάς"
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr "Μετασχηματισμός Φουριέ"
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Βάιερστρας p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Κουκκίδες στο κέντρο"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Κουκκίδες προς τα πάνω"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Κουκκίδες προς τα κάτω"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Κουκκίδες κάτω"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Κουκκίδες κάθετα"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Συνένωση"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Διαίρεση (πλατιά πλαγιοκάθετος)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Διαίρεση (αντίθετη πλατιά πλαγιοκάθετος)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Διαιρεί"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Δεν διαιρεί"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Διπλό βέλος προς τα αριστερά"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Διπλό βέλος προς τα αριστερά και δεξιά"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Διπλό βέλος προς τα δεξιά"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Σύνολο φυσικών αριθμών"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Σύνολο ακεραίων"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Σύνολο ρητών αριθμών"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Σύνολο πραγματικών αριθμών"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Σύνολο μιγαδικών αριθμών"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Μεγάλη γαλλική περισπωμένη"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Μεγάλη περισπωμένη"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Πλατύ βέλος διανύσματος"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Μεγάλο άνυσμα"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h με γραμμή"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "λ με γραμμή"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Αριστερό βέλος"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Δεξί βέλος"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Πάνω βέλος"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Βέλος προς τα κάτω"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Χωρίς κενό"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Προηγείται"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Προηγείται ή ίσο με"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Προηγείται ή ισοδύναμο με"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Ακολουθεί"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Ακολουθεί ή ίσο με"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Ακολουθεί ή ισοδύναμο με"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Δεν προηγείται"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Δεν ακολουθεί"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Μοναδιαίοι/Δυαδικοί τελεστές"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Σχέσεις"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Πράξεις συνόλων"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Συναρτήσεις"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Τελεστές"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Γνωρίσματα"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Αγκύλες"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Μορφοποιήσεις"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Άλλα"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Παραδείγματα"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Περιφέρεια"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Ισοδυναμία μάζας–ενέργειας"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Πυθαγόρειο θεώρημα"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Κατανομή Γκάους"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Προεπιλογή"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Πλάγια γραφή"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Έντονη γραφή"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "μαύρο"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "γαλάζιο"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "πράσινο"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "κόκκινο"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "γκρίζο"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "λεμονί"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "καστανέρυθρο"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "ναυτικό"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "λαδί"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "πορφυρό"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "αργυρό"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "γαλαζοπράσινο"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "κίτρινο"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "απόκρυψη"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "μέγεθος"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "γραμματοσειρά"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "αριστερά"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "κέντρο"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "δεξιά"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Εντολές"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Τύπος"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Αποθήκευση εγγράφου..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Τύπος του %PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ΣΦΑΛΜΑ : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Αναπάντεχος χαρακτήρας"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Αναπάντεχο αναγνωριστικό"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' αναμένεται"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' αναμένεται"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' αναμένεται"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' αναμένεται"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Ασυμφωνία αριστερού και δεξιού συμβόλου"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "αναμενόταν 'fixed', 'sans', ή 'serif'"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "το 'size' ακολουθείται από αναπάντεχο διακριτικό"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Δεν επιτρέπεται διπλή στοίχιση"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Δεν επιτρέπονται διπλοί εκθέτες/δείκτες"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' αναμένεται"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Απαιτείται χρώμα"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Αναμένεται 'RIGHT'"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Περιεχόμενα"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Τίτλος"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Κείμενο ~τύπου"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Περι~γράμματα"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Μέγεθος"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Αρ~χικό μέγεθος"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Προσαρμογή στη ~σελίδα"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Κλιμάκωση"
diff --git a/source/el/svtools/messages.po b/source/el/svtools/messages.po
index ad238d8b083..077033ea0be 100644
--- a/source/el/svtools/messages.po
+++ b/source/el/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-25 00:44+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/el/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Αναίρεση: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Επανάληψη: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Ε~πανάληψη: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Αμορφοποίητο κείμενο"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Μη μορφοποιημένο κείμενο (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Ψηφιογραφική εικόνα (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Μετα-αρχείο διεπαφής συσκευής γραφικών (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Μορφοποίηση πλούσιου κειμένου (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Μορφοποίηση πλούσιου κειμένου (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Μορφή σχεδίασης του %PRODUCTNAME"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Ψηφιογραφία/κίνηση StarView (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Πληροφορίες κατάστασης από εσωτερική σύνδεση Svx"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Σύνδεσμος %PRODUCTNAME (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Σελιδοδείκτης του Netscape"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Μορφή εξυπηρετητή star"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Μορφή αντικειμένου star"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Αντικείμενο μικροεφαρμογής"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Αντικείμενο πρόσθετου"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Αντικείμενο του StarWriter 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Αντικείμενο του StarWriter 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Αντικείμενο του StarWriter 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Αντικείμενο του StarWriter/Web 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Αντικείμενο του StarWriter/Web 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Αντικείμενο του StarWriter/Master 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Αντικείμενο του StarWriter/Master 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Αντικείμενο του StarDraw"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Αντικείμενο του StarDraw 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Αντικείμενο του StarImpress 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Αντικείμενο του StarDraw 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Αντικείμενο του StarCalc"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Αντικείμενο του StarCalc 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Αντικείμενο του StarCalc 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Αντικείμενο του StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Αντικείμενο του StarChart 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Αντικείμενο του StarChart 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Αντικείμενο του StarImage"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Αντικείμενο του StarImage 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Αντικείμενο του StarImage 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Αντικείμενο του StarMath"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Αντικείμενο του StarMath 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Αντικείμενο του StarMath 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Αντικείμενο του StarObject Paint"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Γλώσσα σήμανσης υπερκειμένου (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Γυμνή γλώσσα σήμανσης υπερκειμένου (Απλό HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Μορφή ανταλλαγής δυαδικών Microsoft Excel 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Μορφή ανταλλαγής δυαδικών Microsoft Excel 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Δυναμική ανταλλαγή δεδομένων (σύνδεσμος DDE)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Μορφή ανταλλαγής δεδομένων (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Αντικείμενο του Microsoft Word"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Αντικείμενο του StarFrameSet"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Αντικείμενο εγγράφου του Office"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Πληροφορίες εγγράφου σημειώσεων"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Έγγραφο Sfx"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Αντικείμενο του StarChart 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Αντικείμενο γραφικού"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Αντικείμενο Writer OpenOffice.org 1.0"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Writer OpenOffice.org 1.0/αντικείμενο ιστού"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Writer OpenOffice.org 1.0/κύριο αντικείμενο"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Αντικείμενο Draw OpenOffice.org 1.0"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Αντικείμενο Impress OpenOffice.org 1.0"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Αντικείμενο Calc OpenOffice.org 1.0"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Αντικείμενο Chart OpenOffice.org 1.0"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Αντικείμενο Math OpenOffice.org 1.0"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Μετααρχείο των Windows"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Προέλευση δεδομένων αντικειμένου"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Πίνακας προέλευσης δεδομένων"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Ερώτημα SQL"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Διάλογος OpenOffice.org 1.0"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Σύνδεσμος"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Μορφοποίηση HTML χωρίς σχόλια"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Φορητά γραφικά δικτύου (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Αδυναμία εισαγωγής του αντικειμένου %."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Αδυναμία προσθήκης του αντικειμένου από το αρχείο %."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Επιπλέον αντικείμενα"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Άγνωστη προέλευση"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Ψηφιολέξεις"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1234 +501,1234 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Συμβολοσειρά"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Κανονικά"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Σύνολο χαρακτήρων"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Λεξικό"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Τηλεφωνικός κατάλογος"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Φωνητικό (πρώτα αλφαριθμητικό)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Φωνητικό (τελευταίο αλφαριθμητικό)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Συμβολοσειρά"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Λεξικό"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Φωνητικό (συμβολοσειρά πρώτα, ομαδοποιημένο κατά συλλαβές)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Φωνητικό (συμβολοσειρά πρώτα, ομαδοποιημένο κατά σύμφωνα)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Φωνητικό (συμβολοσειρά πρώτα, ομαδοποιημένο κατά συλλαβές)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Φωνητικό (συμβολοσειρά πρώτα, ομαδοποιημένο κατά σύμφωνα)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Λεπτό"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Πλάγια λεπτά"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Κανονικά"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Πλάγια"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Έντονα"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Πλάγια έντονα"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Μαύρο"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Πλάγια μαύρα"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Κανονικά"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Λοξά έντονα"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Συμπυκνωμένα"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Συμπυκνωμένα έντονα"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Συμπυκνωμένα έντονα πλάγια"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Συμπυκνωμένα έντονα λοξά"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Συμπυκνωμένα πλάγια"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Συμπυκνωμένα λοξά"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Πολύ λεπτά (ExtraLight)"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Πολύ λεπτά πλάγια"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Λοξά"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Ημιέντονα"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Ημιέντονα πλάγια"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Η ίδια γραμματοσειρά θα χρησιμοποιηθεί και από τον εκτυπωτή σας και από την οθόνη σας."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Αυτή είναι γραμματοσειρά εκτυπωτή. Η απεικόνισή στη οθόνη μπορεί να είναι διαφορετική."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Θα προσομοιωθεί αυτή η τεχνοτροπία γραμματοσειράς ή θα χρησιμοποιηθεί η τεχνοτροπία που ταιριάζει περισσότερο."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Η γραμματοσειρά δεν έχει εγκατασταθεί. Θα χρησιμοποιηθεί η πλησιέστερη διαθέσιμη γραμματοσειρά."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Μετακίνηση στην αρχή"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Μετακίνηση αριστερά"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Προς τα δεξιά"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Μετακίνηση στο τέλος"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Προσθήκη"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Οριζόντιος χάρακας"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Κάθετος χάρακας"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Κατώφλι 1 δυαδικού"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Πρόσμιξη 1 δυαδικού"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Διαβάθμιση γκρίζου 4 δυαδικών"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Χρώμα 4 δυαδικών"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Διαβάθμιση γκρίζου 8 δυαδικών"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Χρώμα 8 δυαδικών"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Φυσικό χρώμα 24 δυαδικών"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Η εικόνα χρειάζεται περίπου %1 KB μνήμης."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Η εικόνα χρειάζεται περίπου %1 KB μνήμης, το μέγεθος του αρχείου είναι %2 KB."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Το μέγεθος του αρχείου είναι %1 KB."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "οικοδεσπότης"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "θύρα"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Άλλα CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Έτοιμο"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Διακοπή"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Εκκρεμής διαγραφή"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Απασχολημένο"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Αρχικοποίηση"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Αναμονή"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Προετοιμασία"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Επεξεργασία"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Γίνεται εκτύπωση"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Αποσυνδεμένο"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Σφάλμα"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Άγνωστος εξυπηρετητής"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Φράξιμο χαρτιού"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Έλλειψη χαρτιού"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Χειροκίνητος εφοδιασμός χαρτιού"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Πρόβλημα με το χαρτί"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "Είσοδος/έξοδος ενεργές"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Το τμήμα εξαγωγής είναι πλήρες"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Χαμηλή στάθμη του γραφίτη"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Δεν υπάρχει γραφίτης"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Διαγραφή σελίδας"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Αναγκαία η παρέμβαση του χρήστη"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Ανεπαρκής μνήμη"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Κάλυμμα ανοιχτό"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Κατάσταση εξοικονόμησης ενέργειας"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Προεπιλεγμένος εκτυπωτής"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d έγγραφα"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<κανένα>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Εταιρία"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Τμήμα"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Όνομα"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Επώνυμο"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Οδός"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Χώρα"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Τ.Κ."
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Πόλη"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Τίτλος"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Θέση"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Προσφώνηση"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Αρχικά"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Προσφώνηση τέλους"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Τηλέφωνο κατοικίας"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Τηλέφωνο εργασίας"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Φαξ"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Ηλ. αλληλογραφία"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Σημείωση"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Χρήστης 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Χρήστης 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Χρήστης 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Χρήστης 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Αναγνωριστικό"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Νομός"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Τηλέφωνο γραφείου"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Βομβητής"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Κινητό"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Διάφορα τηλέφωνα"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Ημερολόγιο"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Πρόσκληση"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Η διαμόρφωση του %PRODUCTNAME έχει αλλαχθεί. Στο %PRODUCTNAME - Προτιμήσεις - %PRODUCTNAME - Προχωρημένα, επιλέξτε το περιβάλλον χρόνου εκτέλεσης Java που θέλετε να χρησιμοποιηθεί από το %PRODUCTNAME."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Η διαμόρφωση του %PRODUCTNAME έχει αλλαχθεί. Στο Εργαλεία - Επιλογές - %PRODUCTNAME - Προχωρημένα, επιλέξτε το περιβάλλον χρόνου εκτέλεσης Java που θέλετε να χρησιμοποιηθεί από το %PRODUCTNAME."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "Το %PRODUCTNAME απαιτεί ένα περιβάλλον χρόνου εκτέλεσης Java (JRE) για να εκτελέσει αυτήν την εργασία. Το επιλεγμένο JRE είναι ελαττωματικό. Παρακαλούμε επιλέξτε μια άλλη έκδοση ή εγκαταστήστε ένα νέο JRE και επιλέξτε το στο %PRODUCTNAME - Προτιμήσεις - %PRODUCTNAME - Προχωρημένα."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "Το %PRODUCTNAME απαιτεί ένα περιβάλλον χρόνου εκτέλεσης Java (JRE) για να εκτελέσει αυτήν την εργασία. Το επιλεγμένο JRE είναι ελαττωματικό. Παρακαλούμε επιλέξτε μια άλλη έκδοση ή εγκαταστήστε ένα νέο JRE και επιλέξτε το στο Εργαλεία - Επιλογές - %PRODUCTNAME - Προχωρημένα."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Απαιτείται JRE"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Επιλογή JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "Το JRE είναι προβληματικό"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Πηγαίος κώδικας"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Αρχείο σελιδοδείκτη"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Γραφικά"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Αρχείο διαμόρφωσης"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Εφαρμογή"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Πίνακας βάσης δεδομένων"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Αρχείο συστήματος"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Έγγραφο του MS Word"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Αρχείο βοήθειας"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Έγγραφο HTML"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Αρχείο αρχειοθήκης"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Αρχείο καταγραφής"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Βάση δεδομένων StarOffice"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Κύριο έγγραφο StarWriter 4.0 / 5.0"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Εικόνα StarOffice"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Αρχείο κειμένου"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Σύνδεση"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Πρότυπο StarOffice 3.0 - 5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Έγγραφο του MS Excel"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Πρότυπο MS Excel"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Αρχείο δέσμης"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Αρχείο"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Φάκελος"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Έγγραφο κειμένου"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Υπολογιστικό φύλλο"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Παρουσίαση"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Σχεδίαση"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Έγγραφο HTML"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Πρωτεύον έγγραφο"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Τύπος"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Βάση δεδομένων"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Πρότυπο υπολογιστικό φύλλο OpenOffice.org 1.0"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Πρότυπο σχεδίου του OpenOffice.org 1.0"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Πρότυπο παρουσίασης OpenOffice.org 1.0"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Πρότυπο εγγράφου κειμένου του OpenOffice.org 1.0"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Τοπικός δίσκος"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Μονάδα δίσκου"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Μονάδα CD-ROM"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Σύνδεση δικτύου"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Έγγραφο του MS PowerPoint"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Πρότυπο MS PowerPoint"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Προβολή του MS PowerPoint"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Τύπος OpenOffice.org 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Διάγραμμα OpenOffice.org 1.0"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Σχέδιο του OpenOffice.org 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Υπολογιστικό φύλλο του OpenOffice.org 1.0"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Παρουσίαση του OpenOffice.org 1.0"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Έγγραφο κειμένου του OpenOffice.org 1.0"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Κύριο έγγραφο του OpenOffice.org 1.0"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Έγγραφο του MathML"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Βάση δεδομένων του OpenDocument"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Σχεδίαση του OpenDocument"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Τύπος του OpenDocument"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Κύριο έγγραφο του OpenDocument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Παρουσίαση του OpenDocument"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Υπολογιστικό φύλλο του OpenDocument"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Κείμενο του OpenDocument"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Πρότυπο υπολογιστικού φύλλου του OpenDocument"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Πρότυπο σχεδίασης του OpenDocument"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Πρότυπο παρουσίασης του OpenDocument"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Πρότυπο κειμένου του OpenDocument"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Επέκταση του %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Ορθογραφικός έλεγχος Hunspell"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Συλλαβιστής Libhyphen"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Θησαυρός Mythes"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Κατάλογος από λέξεις που αγνοήθηκαν"
diff --git a/source/el/svx/messages.po b/source/el/svx/messages.po
index 46b5836909b..a2c36f0be19 100644
--- a/source/el/svx/messages.po
+++ b/source/el/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-29 14:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/el/>\n"
@@ -16332,11 +16332,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "_Σύμβολα υποκατάστασης"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_Σχόλια"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/el/sw/messages.po b/source/el/sw/messages.po
index a1d76361799..1de316ea04c 100644
--- a/source/el/sw/messages.po
+++ b/source/el/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-03 11:56+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/el/>\n"
@@ -17438,86 +17438,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr "Εισάγετε τον επιθυμητό αριθμό των γραμμών στον πίνακα."
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Γενικά"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "Κε_φαλίδα"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr "Περιλαμβάνει μια γραμμή επικεφαλίδας στον πίνακα."
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Επανάληψη γραμμών επικεφαλίδας σε νέες _σελίδες"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr "Επαναλαμβάνει την επικεφαλίδα του πίνακα στην κορυφή της επόμενης σελίδας εάν ο πίνακας επεκτείνεται σε περισσότερες από μία σελίδες."
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Μην _διαιρείτε τον πίνακα ανάμεσα στις σελίδες"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr "Αποτρέπει την επέκταση του πίνακα σε περισσότερες από μια σελίδες."
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr "Επιλέξτε τον επιθυμητό αριθμό γραμμών για την επικεφαλίδα."
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Επικεφαλίδες γ_ραμμών:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Επιλογές"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr "Εμφανίζει προεπισκόπηση της τρέχουσας επιλογής."
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr "Επιλέξτε μια προκαθορισμένη τεχνοτροπία για τον νέο πίνακα."
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Τεχνοτροπίες"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr "Εισάγει έναν πίνακα στο έγγραφο. Μπορείτε επίσης να πατήσετε στο βέλος, να σύρετε για να επιλέξετε τον αριθμό των γραμμών και των στηλών που θα συμπεριληφθούν στον πίνακα και μετά να πατήσετε στο τελευταίο κελί."
@@ -20031,289 +20037,289 @@ msgid "Text"
msgstr "Κείμενο"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Εναλλαγή κύριας προβολής"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Εναλλάσσεται μεταξύ κύριας προβολής και κανονικής προβολής εάν ένα κυρίως έγγραφο είναι ανοικτό."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Προβολή περιήγησης περιεχομένου"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr "Εναλλάσσει μεταξύ της εμφάνισης όλων των κατηγοριών στον Περιηγητή και της επιλεγμένης κατηγορίας."
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Κεφαλίδα"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr "Μετακινεί τον δρομέα στην κεφαλίδα ή από την κεφαλίδα στην περιοχή κειμένου του εγγράφου."
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Υποσέλιδο"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr "Μετακινεί τον δρομέα στο υποσέλιδο ή από το υποσέλιδο στην περιοχή κειμένου του εγγράφου."
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Αγκύρωση<->Κείμενο"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr "Μετακινείται μεταξύ του κειμένου της υποσημείωσης και της άγκυρας της υποσημείωσης."
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Ορισμός υπενθύμισης"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Πατήστε εδώ για ορισμό μιας υπενθύμισης στην τρέχουσα θέση του δρομέα. Μπορείτε να ορίσετε μέχρι πέντε υπενθυμίσεις. Για να μεταβείτε σε μια υπενθύμιση, πατήστε στο εικονίδιο Περιήγηση, στο παράθυρο Περιήγηση πατήστε στο εικονίδιο Υπενθύμιση και έπειτα πατήστε στο κουμπί Προηγούμενο ή Επόμενο."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Εμφανιζόμενα επίπεδα επικεφαλίδων"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr "Πατήστε σε αυτό το εικονίδιο και επιλέξτε τον αριθμό επιπέδων διάρθρωσης επικεφαλίδων που θέλετε να προβάλετε στο παράθυρο του περιηγητή."
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Πλαίσιο καταλόγου ενεργό/ανενεργό"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr "Εμφανίζει ή αποκρύπτει τον κατάλογο Περιηγητής."
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Προβιβασμός επιπέδου"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Αυξάνει το επίπεδο διάρθρωσης της επιλεγμένης επικεφαλίδας και τις επικεφαλίδες που βρίσκονται κάτω από την επικεφαλίδα κατά ένα. Για να αυξήσετε το επίπεδο διάρθρωσης μόνο της επιλεγμένης επικεφαλίδας, κρατείστε πατημένο το Ctrl και μετά πατήστε αυτό το εικονίδιο."
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Υποβιβασμός επιπέδου"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Μειώνει το επίπεδο διάρθρωσης της επιλεγμένης επικεφαλίδας και τις επικεφαλίδες που βρίσκονται κάτω από την επικεφαλίδα κατά ένα. Για να μειώσετε το επίπεδο διάρθρωσης μόνο της επιλεγμένης επικεφαλίδας, κρατείστε πατημένο το Ctrl και μετά πατήστε αυτό το εικονίδιο."
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Προβιβασμός κεφαλαίου"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Μετακινεί την επιλεγμένη επικεφαλίδα και το κείμενο κάτω από την επικεφαλίδα, μια θέση επικεφαλίδας πάνω στον περιηγητή και στο έγγραφο. Για να μετακινήσετε μόνο την επιλεγμένη επικεφαλίδα και όχι το κείμενο που συσχετίζεται με την επικεφαλίδα, κρατείστε πατημένο το Ctrl και μετά πατήστε αυτό το εικονίδιο."
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Υποβιβασμός κεφαλαίου"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Μετακινεί την επιλεγμένη επικεφαλίδα και το κείμενο κάτω από την επικεφαλίδα, μια θέση επικεφαλίδας κάτω στον περιηγητή και στο έγγραφο. Για να μετακινήσετε μόνο την επιλεγμένη επικεφαλίδα και όχι το κείμενο που συσχετίζεται με την επικεφαλίδα, κρατείστε πατημένο το Ctrl και μετά πατήστε αυτό το εικονίδιο."
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Κατάσταση μετακίνησης"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr "Ορίζει τις επιλογές μετακίνησης και απόθεσης για τα εισαγόμενα στοιχεία από τον περιηγητή στο έγγραφο, π.χ., ως υπερσύνδεσμο. Πατήστε στο εικονίδιο και μετά επιλέξτε την επιλογή που θέλετε να χρησιμοποιήσετε."
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Έγγραφο"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Ενεργό παράθυρο"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Εναλλαγή κύριας προβολής"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Εναλλάσσεται μεταξύ κύριας προβολής και κανονικής προβολής εάν ένα κυρίως έγγραφο είναι ανοικτό."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Επεξεργασία"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr "Επεξεργαστείτε τα περιεχόμενα του επιλεγμένου στοιχείου στον κατάλογο πλοηγητής. Εάν η επιλογή είναι αρχείο, αυτό το αρχείο ανοίγεται για επεξεργασία. Εάν η επιλογή είναι ευρετήριο, ανοίγεται ο διάλογος ευρετήριο."
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Ενημέρωση"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Πατήστε και επιλέξτε τα περιεχόμενα που επιθυμείτε να ενημερώσετε."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Εισαγωγή"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Εισάγει ένα αρχείο, ένα ευρετήριο ή ένα νέο έγγραφο στο κύριο έγγραφο."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Αποθήκευση και των περιεχομένων"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr "Αποθηκεύει ένα αντίγραφο των περιεχομένων των συνδεδεμένων αρχείων στο κύριο έγγραφο. Αυτό εξασφαλίζει ότι τα τρέχοντα περιεχόμενα είναι διαθέσιμα όταν δεν υπάρχει πρόσβαση στα συνδεδεμένα αρχεία."
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Μετακίνηση προς τα πάνω"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr "Μετακινεί την επιλογή προς τα πάνω κατά μία θέση στον κατάλογο Περιήγησης."
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Μετακίνηση προς τα κάτω"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr "Μετακινεί την επιλογή προς τα κάτω κατά μία θέση στον κατάλογο Περιήγησης."
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Επιλογή"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Ευρετήρια"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Σύνδεσμοι"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Όλα"
diff --git a/source/en-GB/cui/messages.po b/source/en-GB/cui/messages.po
index e89708b3325..918b6fce673 100644
--- a/source/en-GB/cui/messages.po
+++ b/source/en-GB/cui/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-10-27 11:35+0000\n"
+"PO-Revision-Date: 2020-11-19 20:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/en_GB/>\n"
"Language: en-GB\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562933207.000000\n"
#. GyY9M
@@ -3401,7 +3401,7 @@ msgstr "Unable to modify or delete a custom cell style? Check all sheets, none s
#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill."
#. BiSJM
#. local help missing
@@ -3472,9 +3472,10 @@ msgstr "Developing new XSLT and XML filters?"
#. C7Ya2
#: cui/inc/tipoftheday.hrc:271
+#, fuzzy
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General."
-msgstr ""
+msgstr "Press Shift+F1 to see any available extended tooltips in dialogue boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General."
#. hsZPg
#: cui/inc/tipoftheday.hrc:274
@@ -3498,7 +3499,7 @@ msgstr "Run this action now..."
#: cui/inc/tipoftheday.hrc:277
msgctxt "STR_TITLE"
msgid "Tip of the Day: %CURRENT/%TOTAL"
-msgstr ""
+msgstr "Tip of the Day: %CURRENT/%TOTAL"
#. C6Dsn
#: cui/inc/tipoftheday.hrc:278
@@ -4279,7 +4280,7 @@ msgstr "Website"
#: cui/uiconfig/ui/aboutdialog.ui:383
msgctxt "aboutdialog|releasenotes"
msgid "Release Notes"
-msgstr ""
+msgstr "Release Notes"
#. 5TUrF
#: cui/uiconfig/ui/aboutdialog.ui:411
@@ -4682,7 +4683,7 @@ msgstr "searchEntry"
#: cui/uiconfig/ui/additionsdialog.ui:211
msgctxt "additionsdialog|buttonGear"
msgid "Gear Menu"
-msgstr ""
+msgstr "Gear Menu"
#. CbCbR
#: cui/uiconfig/ui/additionsdialog.ui:212
@@ -4712,19 +4713,19 @@ msgstr "This button shows more extensions."
#: cui/uiconfig/ui/additionsfragment.ui:68
msgctxt "additionsEntry|votingLabel"
msgid "Voting:"
-msgstr ""
+msgstr "Voting:"
#. iMQas
#: cui/uiconfig/ui/additionsfragment.ui:88
msgctxt "additionsEntry|labelLicense"
msgid "License:"
-msgstr ""
+msgstr "License:"
#. buPFe
#: cui/uiconfig/ui/additionsfragment.ui:106
msgctxt "additionsEntry|labelVersion"
msgid "Required version:"
-msgstr ""
+msgstr "Required version:"
#. cFsEL
#: cui/uiconfig/ui/additionsfragment.ui:124
@@ -4742,13 +4743,13 @@ msgstr "Downloads:"
#: cui/uiconfig/ui/additionsfragment.ui:356
msgctxt "additionsEntry|buttonInstall"
msgid "Install"
-msgstr ""
+msgstr "Install"
#. VEbVr
#: cui/uiconfig/ui/additionsfragment.ui:370
msgctxt "additionsEntry|buttonWebsite"
msgid "Website"
-msgstr ""
+msgstr "Website"
#. BuMBh
#: cui/uiconfig/ui/agingdialog.ui:15
@@ -5630,7 +5631,7 @@ msgstr "_User-defined:"
#: cui/uiconfig/ui/borderpage.ui:98
msgctxt "borderpage|userdefft"
msgid "Click edge or corner to cycle through three states: set, unchanged, remove."
-msgstr ""
+msgstr "Click edge or corner to cycle through three states: set, unchanged, remove."
#. sRXeg
#: cui/uiconfig/ui/borderpage.ui:111
@@ -5732,7 +5733,7 @@ msgstr "Distan_ce:"
#: cui/uiconfig/ui/borderpage.ui:547
msgctxt "borderpage|distanceft"
msgid "Width of shadow"
-msgstr ""
+msgstr "Width of shadow"
#. gEF6E
#: cui/uiconfig/ui/borderpage.ui:572
@@ -10653,7 +10654,7 @@ msgstr "Re_cipient:"
#: cui/uiconfig/ui/hyperlinkmailpage.ui:59
msgctxt "hyperlinkmailpage|addressbook|tooltip_text"
msgid "Data Sources..."
-msgstr ""
+msgstr "Data Sources..."
#. mZ8Wv
#: cui/uiconfig/ui/hyperlinkmailpage.ui:64
@@ -16836,7 +16837,7 @@ msgstr "Icon s_tyle:"
#: cui/uiconfig/ui/optviewpage.ui:481
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
-msgstr ""
+msgstr "Add more icon themes via extension"
#. eMqmK
#: cui/uiconfig/ui/optviewpage.ui:499
@@ -17064,20 +17065,20 @@ msgstr "Page numbers:"
#: cui/uiconfig/ui/pageformatpage.ui:537
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Use page li_ne-spacing"
-msgstr ""
+msgstr "Use page li_ne-spacing"
#. DtZQG
#. xdds
#: cui/uiconfig/ui/pageformatpage.ui:541
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Enables page line-spacing (register-true) using the selected Reference Style"
-msgstr ""
+msgstr "Enables page line-spacing (register-true) using the selected Reference Style"
#. p2egb
#: cui/uiconfig/ui/pageformatpage.ui:547
msgctxt "extended_tip|checkRegisterTrue"
msgid "If enabled, then all paragraph styles with the option page line-spacing activated will be affected, assuming the line spacing of the Reference Style. This will align them to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
-msgstr ""
+msgstr "If enabled, then all paragraph styles with the option page line-spacing activated will be affected, assuming the line spacing of the Reference Style. This will align them to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
#. 46djR
#: cui/uiconfig/ui/pageformatpage.ui:561
@@ -17323,7 +17324,7 @@ msgstr "_Automatic"
#: cui/uiconfig/ui/paraindentspacing.ui:167
msgctxt "paraindentspacing|checkCB_AUTO|tooltip_text"
msgid "Indent paragraph automatically according to font size and line spacing."
-msgstr ""
+msgstr "Indent paragraph automatically according to font size and line spacing."
#. L9iw7
#: cui/uiconfig/ui/paraindentspacing.ui:218
@@ -17353,7 +17354,7 @@ msgstr "Below _paragraph:"
#: cui/uiconfig/ui/paraindentspacing.ui:331
msgctxt "paraindentspacing|checkCB_CONTEXTUALSPACING"
msgid "Do not add space between paragraphs of the same style"
-msgstr ""
+msgstr "Do not add space between paragraphs of the same style"
#. hWQWQ
#: cui/uiconfig/ui/paraindentspacing.ui:353
@@ -17413,20 +17414,20 @@ msgstr "of"
#: cui/uiconfig/ui/paraindentspacing.ui:479
msgctxt "paraindentspacing|checkCB_REGISTER"
msgid "Activate page li_ne-spacing"
-msgstr ""
+msgstr "Activate page li_ne-spacing"
#. uesRM
#. xdds
#: cui/uiconfig/ui/paraindentspacing.ui:482
msgctxt "paraindentspacing|checkCB_REGISTER|tooltip_text"
msgid "Applies page line-spacing (register-true) if set for the Page Style."
-msgstr ""
+msgstr "Applies page line-spacing (register-true) if set for the Page Style."
#. MwL9j
#: cui/uiconfig/ui/paraindentspacing.ui:488
msgctxt "paraindentspacing|extended_tip|checkCB_REGISTER"
msgid "If page line-spacing is activated and the Page style uses page line-spacing, then this paragraph will align to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
-msgstr ""
+msgstr "If page line-spacing is activated and the Page style uses page line-spacing, then this paragraph will align to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
#. GxJB6
#: cui/uiconfig/ui/paraindentspacing.ui:506
@@ -20087,7 +20088,7 @@ msgstr "Reverses the current horizontal alignment settings on even pages."
#: cui/uiconfig/ui/swpossizepage.ui:587
msgctxt "swpossizepage|followtextflow"
msgid "Keep inside te_xt boundaries"
-msgstr ""
+msgstr "Keep inside te_xt boundaries"
#. zfpt5
#: cui/uiconfig/ui/swpossizepage.ui:597
diff --git a/source/en-GB/dbaccess/messages.po b/source/en-GB/dbaccess/messages.po
index e9f1e144239..c047643feaf 100644
--- a/source/en-GB/dbaccess/messages.po
+++ b/source/en-GB/dbaccess/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-10-27 11:35+0000\n"
+"PO-Revision-Date: 2020-11-19 20:36+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/en_GB/>\n"
"Language: en-GB\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562933215.000000\n"
#. BiN6g
@@ -3360,6 +3360,8 @@ msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
"available in this setup."
msgstr ""
+"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
+"available in this setup."
#. DQvKi
#: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:43
diff --git a/source/en-GB/dictionaries/ko_KR.po b/source/en-GB/dictionaries/ko_KR.po
index 21b95f5743b..baafe0c49b4 100644
--- a/source/en-GB/dictionaries/ko_KR.po
+++ b/source/en-GB/dictionaries/ko_KR.po
@@ -4,14 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-03 12:42+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"
+"PO-Revision-Date: 2020-11-19 20:36+0000\n"
+"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
+"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/dictionariesko_kr/en_GB/>\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-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
#. DbXEb
#: description.xml
@@ -20,4 +22,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Korean spellcheck dictionary"
-msgstr ""
+msgstr "Korean spellcheck dictionary"
diff --git a/source/en-GB/filter/messages.po b/source/en-GB/filter/messages.po
index 26d0819b29e..da6ba007fcd 100644
--- a/source/en-GB/filter/messages.po
+++ b/source/en-GB/filter/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-10-19 15:35+0000\n"
+"PO-Revision-Date: 2020-11-19 20:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/filtermessages/en_GB/>\n"
"Language: en-GB\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562933226.000000\n"
#. 5AQgJ
@@ -381,7 +381,7 @@ msgstr "Selects a lossless compression of images. All pixels are preserved."
#: filter/uiconfig/ui/pdfgeneralpage.ui:241
msgctxt "pdfgeneralpage|reduceresolution"
msgid "Reduce ima_ge resolution"
-msgstr ""
+msgstr "Reduce ima_ge resolution"
#. bAtCV
#: filter/uiconfig/ui/pdfgeneralpage.ui:254
@@ -519,7 +519,7 @@ msgstr "Select to write PDF tags. This can increase file size by huge amounts."
#: filter/uiconfig/ui/pdfgeneralpage.ui:556
msgctxt "pdfgeneralpage|forms"
msgid "Create PDF for_m"
-msgstr ""
+msgstr "Create PDF for_m"
#. 3Vg8V
#: filter/uiconfig/ui/pdfgeneralpage.ui:560
@@ -603,13 +603,13 @@ msgstr "Converts to the PDF/A-2b or PDF/A-1b format. This is defined as an elect
#: filter/uiconfig/ui/pdfgeneralpage.ui:735
msgctxt "pdfgeneralpage|pdfaversion"
msgid "PDF_/A version:"
-msgstr ""
+msgstr "PDF_/A version:"
#. VQGHi
#: filter/uiconfig/ui/pdfgeneralpage.ui:769
msgctxt "pdfgeneralpage|pdfua"
msgid "Universal Accessibilit_y (PDF/UA)"
-msgstr ""
+msgstr "Universal Accessibilit_y (PDF/UA)"
#. 4B3FD
#: filter/uiconfig/ui/pdfgeneralpage.ui:773
@@ -627,7 +627,7 @@ msgstr "General"
#: filter/uiconfig/ui/pdfgeneralpage.ui:824
msgctxt "pdfgeneralpage|bookmarks"
msgid "Export outl_ines"
-msgstr ""
+msgstr "Export outl_ines"
#. qw9My
#: filter/uiconfig/ui/pdfgeneralpage.ui:833
@@ -645,7 +645,7 @@ msgstr "Expo_rt placeholders"
#: filter/uiconfig/ui/pdfgeneralpage.ui:859
msgctxt "pdfgeneralpage|comments"
msgid "Comm_ents as PDF annotations"
-msgstr ""
+msgstr "Comm_ents as PDF annotations"
#. SijbK
#: filter/uiconfig/ui/pdfgeneralpage.ui:868
@@ -1311,7 +1311,7 @@ msgstr "Select to generate a PDF file that shows only the page contents."
#: filter/uiconfig/ui/pdfviewpage.ui:73
msgctxt "pdfviewpage|outline"
msgid "Outl_ine and page"
-msgstr ""
+msgstr "Outl_ine and page"
#. JAAHm
#: filter/uiconfig/ui/pdfviewpage.ui:83
@@ -1449,7 +1449,7 @@ msgstr "Select to generate a PDF file that shows one page at a time."
#: filter/uiconfig/ui/pdfviewpage.ui:425
msgctxt "pdfviewpage|contlayout"
msgid "C_ontinuous"
-msgstr ""
+msgstr "C_ontinuous"
#. BRxps
#: filter/uiconfig/ui/pdfviewpage.ui:435
@@ -1461,7 +1461,7 @@ msgstr "Select to generate a PDF file that shows pages in a continuous vertical
#: filter/uiconfig/ui/pdfviewpage.ui:446
msgctxt "pdfviewpage|contfacinglayout"
msgid "Co_ntinuous facing"
-msgstr ""
+msgstr "Co_ntinuous facing"
#. YyCT7
#: filter/uiconfig/ui/pdfviewpage.ui:456
diff --git a/source/en-GB/helpcontent2/source/text/scalc/01.po b/source/en-GB/helpcontent2/source/text/scalc/01.po
index 206e6b48935..4efd2879715 100644
--- a/source/en-GB/helpcontent2/source/text/scalc/01.po
+++ b/source/en-GB/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2020-03-03 11:15+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/en_GB/>\n"
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr "Using regular expressions and nested functions"
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/sdatabase.po b/source/en-GB/helpcontent2/source/text/sdatabase.po
index aa9899448f4..8a2bcf0a2ff 100644
--- a/source/en-GB/helpcontent2/source/text/sdatabase.po
+++ b/source/en-GB/helpcontent2/source/text/sdatabase.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 14:18+0100\n"
-"PO-Revision-Date: 2020-09-29 13:35+0000\n"
+"PO-Revision-Date: 2020-11-19 19:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textsdatabase/en_GB/>\n"
"Language: en-GB\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
#. ugSgG
#: 02000000.xhp
@@ -2803,7 +2803,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Forms"
-msgstr ""
+msgstr "Forms"
#. AXYAE
#: 04000000.xhp
@@ -2812,7 +2812,7 @@ msgctxt ""
"hd_id3150476\n"
"help.text"
msgid "<link href=\"text/sdatabase/04000000.xhp\" name=\"Forms\">Forms</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/04000000.xhp\" name=\"Forms\">Forms</link>"
#. EJGgk
#: 04000000.xhp
@@ -2821,7 +2821,7 @@ msgctxt ""
"bm_id3156136\n"
"help.text"
msgid "<bookmark_value>forms; general information (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>forms; general information (Base)</bookmark_value>"
#. d9y84
#: 04000000.xhp
@@ -2830,7 +2830,7 @@ msgctxt ""
"par_id3156136\n"
"help.text"
msgid "Forms can be used to enter or to edit existing database contents easily."
-msgstr ""
+msgstr "Forms can be used to enter or to edit existing database contents easily."
#. pjGfo
#: 04000000.xhp
@@ -2839,7 +2839,7 @@ msgctxt ""
"hd_id3157910\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01090000.xhp\" name=\"Form Wizard\">FormWizard</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/autopi/01090000.xhp\" name=\"Form Wizard\">FormWizard</link>"
#. GDZow
#: 04000000.xhp
@@ -2848,7 +2848,7 @@ msgctxt ""
"hd_id3156003\n"
"help.text"
msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Form Controls\">Form Controls</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Form Controls\">Form Controls</link>"
#. CyFwA
#: 04000000.xhp
@@ -2857,7 +2857,7 @@ msgctxt ""
"par_id3156156\n"
"help.text"
msgid "The Form Controls toolbar provides the tools required to create a form in a text, table, drawing, or presentation document."
-msgstr ""
+msgstr "The Form Controls toolbar provides the tools required to create a form in a text, table, drawing or presentation document."
#. itCcM
#: 04000000.xhp
@@ -2866,7 +2866,7 @@ msgctxt ""
"hd_id3155388\n"
"help.text"
msgid "<link href=\"text/sdatabase/04030000.xhp\" name=\"Form in Design Mode\">Form in Design Mode</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/04030000.xhp\" name=\"Form in Design Mode\">Form in Design Mode</link>"
#. jwRmr
#: 04000000.xhp
@@ -2875,7 +2875,7 @@ msgctxt ""
"par_id3150504\n"
"help.text"
msgid "In design mode, the form is designed and the properties of the form and the controls contained in it are defined."
-msgstr ""
+msgstr "In design mode, the form is designed and the properties of the form and the controls contained in it are defined."
#. bWakN
#: 04000000.xhp
@@ -2884,7 +2884,7 @@ msgctxt ""
"hd_id3149784\n"
"help.text"
msgid "<link href=\"text/shared/main0213.xhp\" name=\"Sorting and Filtering Data\">Sorting and Filtering Data</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/main0213.xhp\" name=\"Sorting and Filtering Data\">Sorting and Filtering Data</link>"
#. 9s5BM
#: 04000000.xhp
@@ -2893,7 +2893,7 @@ msgctxt ""
"par_id3151384\n"
"help.text"
msgid "You will find the sorting and filter functions in the toolbar when you open a form in user mode."
-msgstr ""
+msgstr "You will find the sorting and filter functions in the toolbar when you open a form in user mode."
#. Dv2ku
#: 04000000.xhp
@@ -2902,7 +2902,7 @@ msgctxt ""
"hd_id3148944\n"
"help.text"
msgid "<link href=\"text/shared/02/01170203.xhp\" name=\"Subforms\">Subforms</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/01170203.xhp\" name=\"Subforms\">Subforms</link>"
#. CmENz
#: 04030000.xhp
@@ -2911,7 +2911,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Form Design"
-msgstr ""
+msgstr "Form Design"
#. 9uFK3
#: 04030000.xhp
@@ -2920,7 +2920,7 @@ msgctxt ""
"bm_id3148668\n"
"help.text"
msgid "<bookmark_value>forms; designing (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>forms; designing (Base)</bookmark_value>"
#. P4Yuk
#: 04030000.xhp
@@ -2929,7 +2929,7 @@ msgctxt ""
"hd_id3148668\n"
"help.text"
msgid "<variable id=\"formularentwurf\"><link href=\"text/sdatabase/04030000.xhp\" name=\"Form Design\">Form Design</link></variable>"
-msgstr ""
+msgstr "<variable id=\"formularentwurf\"><link href=\"text/sdatabase/04030000.xhp\" name=\"Form Design\">Form Design</link></variable>"
#. FC52Y
#: 04030000.xhp
@@ -2938,7 +2938,7 @@ msgctxt ""
"par_id3154230\n"
"help.text"
msgid "Any $[officename] document can be expanded into a form. Simply add one or more form controls."
-msgstr ""
+msgstr "Any $[officename] document can be expanded into a form. Simply add one or more form controls."
#. Pp5mg
#: 04030000.xhp
@@ -2947,7 +2947,7 @@ msgctxt ""
"par_id3145382\n"
"help.text"
msgid "Open the Form Controls toolbar. The Form Controls toolbar contains the <link href=\"text/shared/02/01170000.xhp\" name=\"functions\">functions</link> needed to edit a form. More functions can be found in the <emph>Form Design</emph> bar and <emph>More Controls</emph> bar."
-msgstr ""
+msgstr "Open the Form Controls toolbar. The Form Controls toolbar contains the <link href=\"text/shared/02/01170000.xhp\" name=\"functions\">functions</link> needed to edit a form. More functions can be found in the <emph>Form Design</emph> bar and <emph>More Controls</emph> bar."
#. 8SrEX
#: 04030000.xhp
@@ -2956,7 +2956,7 @@ msgctxt ""
"par_id3153146\n"
"help.text"
msgid "In form design mode you can <link href=\"text/shared/02/01170000.xhp\" name=\"include controls\">include controls</link>, <link href=\"text/shared/02/01170100.xhp\" name=\"apply properties\">apply properties</link> to them, define <link href=\"text/shared/02/01170200.xhp\" name=\"Form properties\">Form properties</link>, and <link href=\"text/shared/02/01170203.xhp\" name=\"define subforms\">define subforms</link>."
-msgstr ""
+msgstr "In form design mode you can <link href=\"text/shared/02/01170000.xhp\" name=\"include controls\">include controls</link>, <link href=\"text/shared/02/01170100.xhp\" name=\"apply properties\">apply properties</link> to them, define <link href=\"text/shared/02/01170200.xhp\" name=\"Form properties\">Form properties</link>, and <link href=\"text/shared/02/01170203.xhp\" name=\"define subforms\">define subforms</link>."
#. A95sK
#: 04030000.xhp
@@ -2965,7 +2965,7 @@ msgctxt ""
"par_id3154924\n"
"help.text"
msgid "The<emph> Form Navigator</emph> icon<image id=\"img_id3156002\" src=\"cmd/sc_showfmexplorer.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"alt_id3156002\">Icon</alt></image> on the Form Design bar opens the <link href=\"text/shared/02/01170600.xhp\" name=\"Form Navigator\"><emph>Form Navigator</emph></link>."
-msgstr ""
+msgstr "The<emph> Form Navigator</emph> icon<image id=\"img_id3156002\" src=\"cmd/sc_showfmexplorer.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"alt_id3156002\">Icon</alt></image> on the Form Design bar opens the <link href=\"text/shared/02/01170600.xhp\" name=\"Form Navigator\"><emph>Form Navigator</emph></link>."
#. 5wdwF
#: 04030000.xhp
@@ -2974,7 +2974,7 @@ msgctxt ""
"par_id3153968\n"
"help.text"
msgid "The <link href=\"text/shared/02/01171000.xhp\" name=\"Open in Design Mode\"><emph>Open in Design Mode</emph></link> icon<image id=\"img_id1871395\" src=\"cmd/sc_openreadonly.png\" width=\"5.59mm\" height=\"5.59mm\"><alt id=\"alt_id1871395\">Icon</alt></image> allows you to save a form document so that it always opens in form design mode."
-msgstr ""
+msgstr "The <link href=\"text/shared/02/01171000.xhp\" name=\"Open in Design Mode\"><emph>Open in Design Mode</emph></link> icon<image id=\"img_id1871395\" src=\"cmd/sc_openreadonly.png\" width=\"5.59mm\" height=\"5.59mm\"><alt id=\"alt_id1871395\">Icon</alt></image> allows you to save a form document so that it always opens in form design mode."
#. 4AXt6
#: 04030000.xhp
@@ -2983,7 +2983,7 @@ msgctxt ""
"par_id3154948\n"
"help.text"
msgid "If there is an error when assigning properties to the objects contained in the form (for example, when assigning a non-existent database table to an object), a corresponding error message appears. This error message may contain a <emph>More</emph> button. <ahelp hid=\"dummy\">If you click on <emph>More</emph>, a dialog displaying more information about the current problem appears.</ahelp>"
-msgstr ""
+msgstr "If there is an error when assigning properties to the objects contained in the form (for example, when assigning a non-existent database table to an object), a corresponding error message appears. This error message may contain a <emph>More</emph> button. <ahelp hid=\"dummy\">If you click on <emph>More</emph>, a dialogue box displaying more information about the current problem appears.</ahelp>"
#. cLmBi
#: main.xhp
diff --git a/source/en-GB/helpcontent2/source/text/sdraw.po b/source/en-GB/helpcontent2/source/text/sdraw.po
index 173e43587fd..59d73ca0b0b 100644
--- a/source/en-GB/helpcontent2/source/text/sdraw.po
+++ b/source/en-GB/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-06-29 11:28+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/en_GB/>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.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 0a5535b1b86..fe05443e3cb 100644
--- a/source/en-GB/helpcontent2/source/text/shared/00.po
+++ b/source/en-GB/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-02-10 17:43+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/en_GB/>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>register-true; definition</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "Register-true"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/en-GB/helpcontent2/source/text/shared/01.po b/source/en-GB/helpcontent2/source/text/shared/01.po
index d34c073fee3..20d022b626f 100644
--- a/source/en-GB/helpcontent2/source/text/shared/01.po
+++ b/source/en-GB/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-06-23 11:14+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/en_GB/>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr "For some document types, you can choose to print a brochure."
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr "More Options"
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,14 +9376,14 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "Switches between master view and normal view."
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgstr ""
#. 3Lq2G
#: 02110000.xhp
@@ -9430,14 +9412,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialogue box is opened.</ahelp>"
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgstr ""
#. nRB3E
#: 02110000.xhp
@@ -9466,14 +9448,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgstr ""
#. F4J5u
#: 02110000.xhp
@@ -9601,14 +9583,14 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgstr ""
#. ijR7M
#: 02110000.xhp
@@ -9709,14 +9691,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgstr ""
#. ADEyJ
#: 02110000.xhp
@@ -9745,14 +9727,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgstr ""
#. GqEUL
#: 02110000.xhp
@@ -9781,14 +9763,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
-msgstr "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgstr ""
#. DLEGF
#: 02110000.xhp
diff --git a/source/en-GB/helpcontent2/source/text/shared/02.po b/source/en-GB/helpcontent2/source/text/shared/02.po
index ec033d0d676..7150af8da20 100644
--- a/source/en-GB/helpcontent2/source/text/shared/02.po
+++ b/source/en-GB/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-06-29 11:28+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/en_GB/>\n"
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11059,14 +11059,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11131,14 +11131,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/en-GB/helpcontent2/source/text/shared/optionen.po b/source/en-GB/helpcontent2/source/text/shared/optionen.po
index 749b1e61614..4e21021e664 100644
--- a/source/en-GB/helpcontent2/source/text/shared/optionen.po
+++ b/source/en-GB/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-02-13 22:15+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11860,32 +11860,32 @@ msgctxt ""
msgid "Snap"
msgstr "Snap"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "To snap lines"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr ""
#. eUCCJ
#: 01070300.xhp
diff --git a/source/en-GB/helpcontent2/source/text/simpress/02.po b/source/en-GB/helpcontent2/source/text/simpress/02.po
index f4070591111..15d286258e0 100644
--- a/source/en-GB/helpcontent2/source/text/simpress/02.po
+++ b/source/en-GB/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-06-29 11:27+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress02/en_GB/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.10.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563448782.000000\n"
#. AiACn
@@ -5695,41 +5695,41 @@ msgctxt ""
msgid "Exit all groups"
msgstr "Exit all groups"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
+msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
+msgstr ""
#. oXWsX
#: 13150000.xhp
diff --git a/source/en-GB/helpcontent2/source/text/swriter.po b/source/en-GB/helpcontent2/source/text/swriter.po
index b263b098c00..0e5ea6f1e1a 100644
--- a/source/en-GB/helpcontent2/source/text/swriter.po
+++ b/source/en-GB/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-10 05:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/en_GB/>\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "Left-To-Right"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "Right-To-Left"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/en-GB/helpcontent2/source/text/swriter/01.po b/source/en-GB/helpcontent2/source/text/swriter/01.po
index df6afd9ecb7..6a068bcbc73 100644
--- a/source/en-GB/helpcontent2/source/text/swriter/01.po
+++ b/source/en-GB/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-02-18 14:15+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/en_GB/>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "Navigator"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialogue box.</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.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 b5a239fb8df..7509e828555 100644
--- a/source/en-GB/helpcontent2/source/text/swriter/guide.po
+++ b/source/en-GB/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-09-12 09:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/en_GB/>\n"
@@ -7793,50 +7793,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
+msgid "Positioning indents"
+msgstr ""
#. qUxKq
#: indenting.xhp
@@ -7847,6 +7847,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7856,6 +7865,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text</item> indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7865,6 +7883,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10232,14 +10295,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "Turning Number Recognition On or Off in Tables"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10268,14 +10331,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Do one of the following:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a tick mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10286,6 +10358,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and mark or unmark the <item type=\"menuitem\">Number recognition</item> check box."
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12212,6 +12293,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12257,50 +12356,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialogue box."
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
-msgstr "Return to <emph>Print</emph> dialogue box, and click <emph>Options</emph>."
+msgid "Return to <emph>Print</emph> dialog."
+msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
-msgstr "Select <emph>Brochure</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
+msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Click <emph>OK</emph>."
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Printer Options</emph> dialogue box, select <emph>Reversed</emph>, and then print the document again."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12374,6 +12473,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12401,32 +12725,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
-msgstr "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialogue box, you have the option to print multiple pages on one sheet."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
+msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
-msgstr "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
+msgid "Choose <menuitem>File - Print</menuitem>"
+msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Do one of the following:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13391,13 +13715,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/en-GB/sc/messages.po b/source/en-GB/sc/messages.po
index 4a6261abf0a..158885f75bc 100644
--- a/source/en-GB/sc/messages.po
+++ b/source/en-GB/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-03 06:09+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/en_GB/>\n"
@@ -28627,38 +28627,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Use printer metrics for text formatting"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Highlight sele_ction in column/row headers"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr "Specifies whether to highlight column and row headers in the selected columns or rows."
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Update references when sorting range of cells"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Input Settings"
diff --git a/source/en-GB/sd/messages.po b/source/en-GB/sd/messages.po
index 29a9d2542e1..5a671c4cb55 100644
--- a/source/en-GB/sd/messages.po
+++ b/source/en-GB/sd/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-09-07 15:25+0000\n"
+"PO-Revision-Date: 2020-11-19 20:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/en_GB/>\n"
"Language: en-GB\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562933451.000000\n"
#. WDjkB
@@ -2121,7 +2121,7 @@ msgstr "Insert Page"
#: sd/inc/strings.hrc:325
msgctxt "STR_SLIDE_SETUP_TITLE"
msgid "Slide Properties"
-msgstr ""
+msgstr "Slide Properties"
#. pA7rP
#: sd/inc/strings.hrc:327
@@ -3105,10 +3105,9 @@ msgstr "Enter the vertical distance between the centres of the selected object a
#. uyLiW
#: sd/uiconfig/sdraw/ui/copydlg.ui:306
-#, fuzzy
msgctxt "copydlg|extended_tip|angle"
msgid "Enter the angle (0 to 359 degrees) by which you want to rotate the duplicate object. Positive values rotate the duplicate object in a clockwise direction and negative values in a counterclockwise direction."
-msgstr "Enter the angle (0 to 359 degrees) by which you want to rotate the duplicate object. Positive values rotate the duplicate object in a clockwise direction and negative values in a counter-clockwise direction. "
+msgstr "Enter the angle (0 to 359 degrees) by which you want to rotate the duplicate object. Positive values rotate the duplicate object in a clockwise direction and negative values in a counterclockwise direction."
#. Mb9Gs
#: sd/uiconfig/sdraw/ui/copydlg.ui:323
@@ -3166,10 +3165,9 @@ msgstr "Choose a colour for the selected object."
#. AAoBa
#: sd/uiconfig/sdraw/ui/copydlg.ui:530
-#, fuzzy
msgctxt "copydlg|extended_tip|end"
msgid "Choose a color for the duplicate object. If you are making more than one copy, this color is applied to the last copy."
-msgstr "Choose a colour for the duplicate object. If you are making more than one copy, this colour is applied to the last copy. "
+msgstr "Choose a colour for the duplicate object. If you are making more than one copy, this colour is applied to the last copy."
#. F3A93
#: sd/uiconfig/sdraw/ui/copydlg.ui:547
@@ -3179,10 +3177,9 @@ msgstr "Colours"
#. W2wTC
#: sd/uiconfig/sdraw/ui/copydlg.ui:580
-#, fuzzy
msgctxt "copydlg|extended_tip|DuplicateDialog"
msgid "Makes one or more copies of a selected object."
-msgstr "Makes one or more copies of a selected object. "
+msgstr "Makes one or more copies of a selected object."
#. Y4vXd
#: sd/uiconfig/sdraw/ui/crossfadedialog.ui:15
@@ -3362,7 +3359,7 @@ msgstr "Highlighting"
#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:8
msgctxt "drawpagedialog|DrawPageDialog"
msgid "Page Properties"
-msgstr ""
+msgstr "Page Properties"
#. Py4db
#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:136
@@ -3672,10 +3669,9 @@ msgstr "Prevent elements on the layer from being edited."
#. ogtGC
#: sd/uiconfig/sdraw/ui/insertlayer.ui:313
-#, fuzzy
msgctxt "insertlayer|extended_tip|InsertLayerDialog"
msgid "Inserts a new layer in the document. Layers are only available in Draw, not in Impress."
-msgstr "Inserts a new layer in the document. Layers are only available in Draw, not in Impress. "
+msgstr "Inserts a new layer in the document. Layers are only available in Draw, not in Impress."
#. dCRtD
#: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:18
@@ -4870,10 +4866,9 @@ msgstr "Text Animation"
#. FcztB
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:132
-#, fuzzy
msgctxt "customanimationspanel|extended_tip|custom_animation_list"
msgid "The animation list displays all animations for the current slide."
-msgstr "The animation list displays all animations for the current slide. "
+msgstr "The animation list displays all animations for the current slide."
#. KFRTW
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:163
@@ -5707,7 +5702,7 @@ msgstr "Aligns the images in your animation."
#: sd/uiconfig/simpress/ui/dockinganimation.ui:410
msgctxt "dockinganimation|label1"
msgid "Animation Group"
-msgstr ""
+msgstr "Animation Group"
#. Bu3De
#: sd/uiconfig/simpress/ui/dockinganimation.ui:454
diff --git a/source/en-GB/sfx2/messages.po b/source/en-GB/sfx2/messages.po
index 0d720179ae8..172fede7752 100644
--- a/source/en-GB/sfx2/messages.po
+++ b/source/en-GB/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-10-27 11:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/en_GB/>\n"
@@ -1655,286 +1655,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Close Pane"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Dock"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Undock"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "More Options"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Close Sidebar Deck"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Sidebar Settings"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Customisation"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Restore Default"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Close Sidebar"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Beehive"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blue Curve"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blueprint Plans"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Bright Blue"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Classy Red"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Focus"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Forestbird"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiration"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lights"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Lush Green"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Midnightblue"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Nature Illustration"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Pencil"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progress"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Sunset"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Vivid"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Resume"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Default"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Modern business letter sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Modern business letter serif"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Businesscard with logo"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Simple"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Remove"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Clear All"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Password length"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-click to open hyperlink: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Click to open hyperlink: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(used by: %STYLELIST)"
@@ -4165,6 +4129,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Delete..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/en-GB/starmath/messages.po b/source/en-GB/starmath/messages.po
index 0e37cbf10a4..a219adb16c4 100644
--- a/source/en-GB/starmath/messages.po
+++ b/source/en-GB/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-10-27 11:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/en_GB/>\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "or"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+ Sign"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "- Sign"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+- Sign"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "-+ Sign"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Boolean NOT"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Addition +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Subtraction -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Multiplication (Dot)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Multiplication (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Multiplication (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Division (Slash)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Division (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Division (Fraction)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Circled Slash"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Circled Dot"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Circled Minus"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Circled Plus"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Tensor Product"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Boolean AND"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Boolean OR"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Is Equal To"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Is Not Equal To"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Is Less Than"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Is Greater Than"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Is Less Than Or Equal To"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Is Greater Than Or Equal To"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Is Less Than Or Equal To"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Is Greater Than Or Equal To"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Is Much Less Than"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Is Much Greater Than"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Is Defined As"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Is Congruent To"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Is Approximately Equal To"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Is Similar To"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Is Similar Or Equal To"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Is Proportional To"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Is Orthogonal To"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Is Parallel To"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Towards"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Corresponds To (Left)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Corresponds To (Right)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Is In"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Is Not In"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Owns"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Union"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Intersection"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Difference"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Subset Of"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Subset Of Or Equal to"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Superset Of"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Superset Of Or Equal to"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Not Subset Of"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Not Subset Of Or Equal To"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Not Superset Of"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Not Superset Of Or Equal To"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr "General function"
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Absolute Value"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Factorial"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Square Root"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N-th Root"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Exponential Function"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Exponential Function"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Natural Logarithm"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logarithm"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sine"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Cosine"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangent"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Cotangent"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arc sine"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arc cosine"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arctangent"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arccotangent"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Hyperbolic Sine"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Hyperbolic Cosine"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Hyperbolic Tangent"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Hyperbolic Cotangent"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Area Hyperbolic Sine"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Area Hyperbolic Cosine"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Area Hyperbolic Tangent"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Area Hyperbolic Cotangent"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr "General operator"
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr "General operator Subscript Bottom"
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr "General operator Superscript Top"
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr "General operator Sup/Sub script"
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Sum"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Sum Subscript Bottom"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Sum Superscript Top"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Sum Sup/Sub script"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Product"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Product Subscript Bottom"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Product Superscript Top"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Product Sup/Sub script"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Coproduct"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Coproduct Subscript Bottom"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Coproduct Superscript Top"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Coproduct Sup/Sub script"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Limes"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Limes Subscript Bottom"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Limes Superscript Top"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Limes Sup/Sub script"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Limit Inferior"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Limit Inferior Subscript Bottom"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Limit Inferior Superscript Top"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Limit Inferior Sup/Sub script"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Limit Superior"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Limit Superior Subscript Bottom"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Limit Superior Superscript Top"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Limit Superior Sup/Sub script"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "There Exists"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "There Not Exists"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "For all"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integral"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Integral Subscript Bottom"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Integral Superscript Top"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integral Sup/Sub script"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Double Integral"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Double Integral Subscript Bottom"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Double Integral Superscript Top"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Double Integral Sup/Sub script"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Triple Integral"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Triple Integral Subscript Bottom"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Triple Integral Superscript Top"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Triple Integral Sup/Sub script"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Curve Integral"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Curve Integral Subscript Bottom"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Curve Integral Superscript Top"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Curve Integral Sup/Sub script"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Double Curve Integral"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Double Curve Integral Subscript Bottom"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Double Curve Integral Superscript Top"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Double Curve Integral Sup/Sub script"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Triple Curve Integral"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Triple Curve Integral Subscript Bottom"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Triple Curve Integral Superscript Top"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Triple Curve Integral Sup/Sub script"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Acute Accent"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Line Above"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Breve"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Reverse Circumflex"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Circle"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Dot"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Double Dot"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Triple Dot"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Grave Accent"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Circumflex"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tilde"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Vector Arrow"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Harpoon"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Line Below"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Line Over"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Line Through"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Transparent"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Bold Font"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Italic Font"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Resize"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Change Font"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Colour Black"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Colour Blue"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Colour Green"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Colour Red"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Colour Grey"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Colour Lime"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Colour Maroon"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Colour Navy"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Colour Olive"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Colour Purple"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Colour Silver"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Colour Teal"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Colour Yellow"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "Colour RGB"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Group Brackets"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Round Brackets"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Square Brackets"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Double Square Brackets"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Braces"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Angle Brackets"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Upper Ceil"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Floor"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Single Lines"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Double Lines"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Operator Brackets"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Round Brackets (Scalable)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Square Brackets (Scalable)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Double Square Brackets (Scalable)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Braces (Scalable)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Angle Brackets (Scalable)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Ceiling (Scalable)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Floor (Scalable)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Single Lines (Scalable)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Double Lines (Scalable)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Operator Brackets (Scalable)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Evaluated At"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Braces Top (Scalable)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Braces Bottom (Scalable)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Subscript Right"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Power"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Subscript Left"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Superscript Left"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Subscript Bottom"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Superscript Top"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Small Gap"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Blank"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "New Line"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Vertical Stack (2 Elements)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Vertical Stack"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Matrix Stack"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Align Left"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Align Centre"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Align Right"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Aleph"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Empty Set"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Real Part"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Imaginary Part"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Infinity"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Partial"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr "Laplace transform"
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr "Fourier transform"
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Dots In Middle"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Dots To Top"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Dots To Bottom"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Dots At Bottom"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Dots Vertically"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Concatenate"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Division (wideslash)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Division (counter wideslash)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Divides"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Does Not Divide"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Double Arrow Left"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Double Arrow Left And Right"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Double Arrow Right"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Natural Numbers Set"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Integers Set"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Set of Rational Numbers"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Real Numbers Set"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Complex Numbers Set"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Large Circumflex"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Large Tilde"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Large Vector Arrow"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Large Harpoon"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h Bar"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda Bar"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Left Arrow"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Right Arrow"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Up Arrow"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Down Arrow"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "No space"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Precedes"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Precedes or equal to"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Precedes or equivalent to"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Succeeds"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Succeeds or equal to"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Succeeds or equivalent to"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Not precedes"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Not succeeds"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Unary/Binary Operators"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Relations"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Set Operations"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Functions"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operators"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Attributes"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Brackets"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formats"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Others"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Examples"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Circumference"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Mass–energy equivalence"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Pythagorean theorem"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Gauss distribution"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standard"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Italic"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Bold"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "black"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blue"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "green"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "red"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "grey"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "lime"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "maroon"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "navy"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olive"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "purple"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "silver"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "teal"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "yellow"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "hide"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "size"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "font"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "left"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centre"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "right"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Commands"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formula"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Saving document..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Formula"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Unexpected character"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Unexpected token"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' expected"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' expected"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' expected"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' expected"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Left and right symbols mismatched"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans', or 'serif' expected"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' followed by an unexpected token"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Double aligning is not allowed"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Double sub/superscripts is not allowed"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' expected"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Colour required"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' expected"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Contents"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Title"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formula text"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "B~orders"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Size"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "O~riginal size"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Fit to ~page"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Scaling"
diff --git a/source/en-GB/svtools/messages.po b/source/en-GB/svtools/messages.po
index 8355b2a3fd9..b03f1256a93 100644
--- a/source/en-GB/svtools/messages.po
+++ b/source/en-GB/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-27 11:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/en_GB/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Undo: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Redo: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Repeat: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Unformatted text"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Unformatted text (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bitmap Image (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface metafile (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich text formatting (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich text formatting (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME drawing format"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView bitmap/animation (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Status Info from Svx Internal Link"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME Link (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape Bookmark"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star server format"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star object format"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet object"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Plug-in object"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 object"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 object"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 object"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 object"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 object"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 object"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 object"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw object"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 object"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 object"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 object"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc object"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 object"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 object"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart object"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 object"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 object"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage object"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 object"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 object"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath object"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 object"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 object"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint object"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE link)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word object"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet object"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office document object"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes document info"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx document"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 object"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Graphic object"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer object"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web object"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Master object"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw object"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress object"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc object"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart object"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math object"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows metafile"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Data source object"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Data source table"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL query"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 dialog"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Link"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML format without comments"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Object % could not be inserted."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Object from file % could not be inserted."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Further objects"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Unknown source"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1234 +501,1234 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumeric"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Character set"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Dictionary"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Phone book"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Phonetic (alphanumeric first)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Phonetic (alphanumeric last)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumeric"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Dictionary"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Phonetic (alphanumeric first, grouped by syllables)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Phonetic (alphanumeric first, grouped by consonants)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Phonetic (alphanumeric last, grouped by syllables)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Phonetic (alphanumeric last, grouped by consonants)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Light"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Light Italic"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Regular"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Italic"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Bold"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Bold Italic"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Black"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Black Italic"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Book"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Bold Oblique"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensed"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Condensed Bold"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Condensed Bold Italic"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Condensed Bold Oblique"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Condensed Italic"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Condensed Oblique"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "ExtraLight"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "ExtraLight Italic"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Oblique"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Semibold"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Semibold Italic"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "The same font will be used on both your printer and your screen."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "This is a printer font. The screen image may differ."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "This font style will be simulated or the closest matching style will be used."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "This font has not been installed. The closest available font will be used."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Move To Home"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Move Left"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Move Right"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Move To End"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Add"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Horizontal Ruler"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Vertical Ruler"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 bit threshold"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bit dithered"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 bit greyscale"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 bit colour"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 bit greyscale"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 bit colour"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 bit true colour"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "The image needs about %1 KB of memory."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "The image needs about %1 KB of memory, the file size is %2 KB."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "The file size is %1 KB."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "host"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Other CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Ready"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Paused"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Pending deletion"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Busy"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Initialising"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Waiting"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Warming up"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Processing"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Printing"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Off-line"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Error"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Unknown Server"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Paper jam"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Not enough paper"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Manual feed"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Paper problem"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O active"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Output bin full"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Toner low"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "No toner"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Delete Page"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "User intervention necessary"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Insufficient memory"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Cover open"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Power save mode"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Default printer"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documents"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<none>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Company"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Department"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Forename"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Surname"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Street"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Country"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Postcode"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Post town"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Title"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Position"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Addr. Form"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Initials"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Complimentary close"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel: Home"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel: Work"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Email"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Note"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "User 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "User 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "User 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "User 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "County"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel: Office"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pager"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobile"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel: Other"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendar"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Invite"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE Required"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Select JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE is Defective"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Source code"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Bookmark file"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Graphics"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Configuration file"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Application"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Database table"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "System file"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Microsoft Word document"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Help file"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML document"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Archive file"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Log file"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice Database"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 Master Document"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice Image"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Text file"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Link"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 Template"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Microsoft Excel document"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Microsoft Excel template"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batch file"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "File"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Folder"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Text Document"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Spreadsheet"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentation"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Drawing"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML document"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Master document"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formula"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Database"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 Spreadsheet Template"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 Drawing Template"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 Presentation Template"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 Text Document Template"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Local drive"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Disc drive"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM drive"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Network connection"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Microsoft PowerPoint Document"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Microsoft PowerPoint Template"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Microsoft PowerPoint Show"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 Formula"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 Chart"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 Drawing"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 Spreadsheet"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 Presentation"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 Text Document"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 Master Document"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML Document"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument Database"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument Drawing"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument Formula"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument Master Document"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument Presentation"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument Spreadsheet"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument Text"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument Spreadsheet Template"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument Drawing Template"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument Presentation Template"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument Text Template"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME Extension"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell SpellChecker"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen Hyphenator"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes Thesaurus"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "List of Ignored Words"
diff --git a/source/en-GB/svx/messages.po b/source/en-GB/svx/messages.po
index 8030ca83d59..e1cc224d422 100644
--- a/source/en-GB/svx/messages.po
+++ b/source/en-GB/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-08-07 21:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/en_GB/>\n"
@@ -16333,11 +16333,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Wil_dcards"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_Comments"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/en-GB/sw/messages.po b/source/en-GB/sw/messages.po
index 140de928fd6..6610cf3b4ab 100644
--- a/source/en-GB/sw/messages.po
+++ b/source/en-GB/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-03-10 09:16+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-19 20:36+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/en_GB/>\n"
"Language: en-GB\n"
@@ -80,31 +80,31 @@ msgstr "The text formatting conveys additional meaning."
#: sw/inc/AccessibilityCheckStrings.hrc:26
msgctxt "STR_NON_INTERACTIVE_FORMS"
msgid "An input form is not interactive."
-msgstr ""
+msgstr "An input form is not interactive."
#. Z6sHT
#: sw/inc/AccessibilityCheckStrings.hrc:27
msgctxt "STR_FLOATING_TEXT"
msgid "Avoid floating text."
-msgstr ""
+msgstr "Avoid floating text."
#. 77aXx
#: sw/inc/AccessibilityCheckStrings.hrc:28
msgctxt "STR_HEADING_IN_TABLE"
msgid "Tables must not contain headings."
-msgstr ""
+msgstr "Tables must not contain headings."
#. LxJKy
#: sw/inc/AccessibilityCheckStrings.hrc:29
msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
-msgstr ""
+msgstr "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
#. gkDzg
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr ""
+msgstr "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -614,68 +614,68 @@ msgstr "Numbered Paragraphs"
#: sw/inc/inspectorproperties.hrc:31
msgctxt "RID_CHAR_DIRECTFORMAT"
msgid "Character Direct Formatting"
-msgstr ""
+msgstr "Character Direct Formatting"
#. fYAUc
#: sw/inc/inspectorproperties.hrc:32
msgctxt "RID_PARA_DIRECTFORMAT"
msgid "Paragraph Direct Formatting"
-msgstr ""
+msgstr "Paragraph Direct Formatting"
#. YUbUQ
#. Format names
#: sw/inc/inspectorproperties.hrc:35
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Color"
-msgstr ""
+msgstr "Colour"
#. 5Btdu
#: sw/inc/inspectorproperties.hrc:36
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Border Distance"
-msgstr ""
+msgstr "Border Distance"
#. sKjYr
#: sw/inc/inspectorproperties.hrc:37
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Inner Line Width"
-msgstr ""
+msgstr "Inner Line Width"
#. yrAyD
#: sw/inc/inspectorproperties.hrc:38
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Line Distance"
-msgstr ""
+msgstr "Line Distance"
#. jS4tt
#: sw/inc/inspectorproperties.hrc:39
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Line Style"
-msgstr ""
+msgstr "Line Style"
#. noNDX
#: sw/inc/inspectorproperties.hrc:40
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Line Width"
-msgstr ""
+msgstr "Line Width"
#. MVL7X
#: sw/inc/inspectorproperties.hrc:41
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Outer Line Width"
-msgstr ""
+msgstr "Outer Line Width"
#. c7Qfp
#: sw/inc/inspectorproperties.hrc:42
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Bottom Border"
-msgstr ""
+msgstr "Bottom Border"
#. EWncC
#: sw/inc/inspectorproperties.hrc:43
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Bottom Border Distance"
-msgstr ""
+msgstr "Bottom Border Distance"
#. rLqgx
#: sw/inc/inspectorproperties.hrc:44
@@ -17444,86 +17444,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr "Enter the number of rows that you want in the table."
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "General"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "Hea_ding"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr "Includes a heading row in the table."
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Repeat heading rows on new _pages"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Don’t _split table over pages"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr "Prevents the table from spanning more than one page."
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr "Select the number of rows that you want to use for the heading."
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Heading ro_ws:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Options"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr "Select a predefined style for the new table."
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Styles"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
@@ -20037,289 +20043,289 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Toggle Master View"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Switches between master view and normal view if a master document is open."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Content Navigation View"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr "Switches between the display of all categories in the Navigator and the selected category."
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Header"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr "Moves the cursor to the header, or from the header to the document text area."
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Footer"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr "Moves the cursor to the footer, or from the footer to the document text area."
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Anchor<->Text"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr "Jumps between the footnote text and the footnote anchor."
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Set Reminder"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Heading Levels Shown"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "List Box On/Off"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr "Shows or hides the Navigator list."
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Promote Level"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Demote Level"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Promote Chapter"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Demote Chapter"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Drag Mode"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Document"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Active Window"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Toggle Master View"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Switches between master view and normal view if a master document is open."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Edit"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialogue box is opened."
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Update"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Click and choose the contents that you want to update."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Insert"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Inserts a file, an index, or a new document into the master document."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Save Contents as well"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr "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."
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Move Up"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr "Moves the selection up one position in the Navigator list."
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Move Down"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr "Moves the selection down one position in the Navigator list."
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/en-ZA/helpcontent2/source/text/scalc/01.po b/source/en-ZA/helpcontent2/source/text/scalc/01.po
index 15b9badaec4..fb29f263421 100644
--- a/source/en-ZA/helpcontent2/source/text/scalc/01.po
+++ b/source/en-ZA/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2018-11-12 13:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr ""
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/sdraw.po b/source/en-ZA/helpcontent2/source/text/sdraw.po
index 65252eb7264..fde8e602a9f 100644
--- a/source/en-ZA/helpcontent2/source/text/sdraw.po
+++ b/source/en-ZA/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 10:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.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 fc4331c540b..72eafa5911f 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/00.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-14 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>register-true; definition</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "Register-true"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/en-ZA/helpcontent2/source/text/shared/01.po b/source/en-ZA/helpcontent2/source/text/shared/01.po
index 79ff5cec87c..c450837f4c7 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/01.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr "For some document types, you can choose to print a brochure."
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr ""
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr ""
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,13 +9376,13 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "Switches between master view and normal view."
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
msgstr ""
#. 3Lq2G
@@ -9430,13 +9412,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr ""
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
msgstr ""
#. nRB3E
@@ -9466,13 +9448,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
msgstr ""
#. F4J5u
@@ -9601,13 +9583,13 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
msgstr ""
#. ijR7M
@@ -9709,13 +9691,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr ""
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
msgstr ""
#. ADEyJ
@@ -9745,13 +9727,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
msgstr ""
#. GqEUL
@@ -9781,13 +9763,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
msgstr ""
#. DLEGF
diff --git a/source/en-ZA/helpcontent2/source/text/shared/02.po b/source/en-ZA/helpcontent2/source/text/shared/02.po
index 5b96b33e3e6..20b2ead573f 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/02.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 13:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11059,14 +11059,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr ""
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11131,14 +11131,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/en-ZA/helpcontent2/source/text/shared/optionen.po b/source/en-ZA/helpcontent2/source/text/shared/optionen.po
index 4ef17fa8e74..7d55a1260ef 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/optionen.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11860,32 +11860,32 @@ msgctxt ""
msgid "Snap"
msgstr "Snap"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "To snap lines"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Guides\"><emph>Snap to Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Guides\"><emph>Snap to Guides</emph></link></caseinline><defaultinline><emph>Snap to Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr ""
#. eUCCJ
#: 01070300.xhp
diff --git a/source/en-ZA/helpcontent2/source/text/simpress/02.po b/source/en-ZA/helpcontent2/source/text/simpress/02.po
index 13ec0ff88d0..e8e3c7f760a 100644
--- a/source/en-ZA/helpcontent2/source/text/simpress/02.po
+++ b/source/en-ZA/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 10:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5695,40 +5695,40 @@ msgctxt ""
msgid "Exit all groups"
msgstr "Exit all groups"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Guides\">Snap to Guides</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
#. oXWsX
diff --git a/source/en-ZA/helpcontent2/source/text/swriter.po b/source/en-ZA/helpcontent2/source/text/swriter.po
index a3f8cfa68ed..36dc27b76b6 100644
--- a/source/en-ZA/helpcontent2/source/text/swriter.po
+++ b/source/en-ZA/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-10-21 20:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "Left-To-Right"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "Right-To-Left"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/en-ZA/helpcontent2/source/text/swriter/01.po b/source/en-ZA/helpcontent2/source/text/swriter/01.po
index 3eed62d5504..662032a2ab6 100644
--- a/source/en-ZA/helpcontent2/source/text/swriter/01.po
+++ b/source/en-ZA/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-10-21 20:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "Navigator"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialogue.</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/swriter/guide.po b/source/en-ZA/helpcontent2/source/text/swriter/guide.po
index c02e1a2ed40..1a74e8e6cd5 100644
--- a/source/en-ZA/helpcontent2/source/text/swriter/guide.po
+++ b/source/en-ZA/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-12 13:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7792,50 +7792,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr ""
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
+msgid "Positioning indents"
+msgstr ""
#. qUxKq
#: indenting.xhp
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr ""
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,14 +10294,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "Turning Number Recognition On or Off in Tables"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10267,14 +10330,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Do one of the following:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12211,6 +12292,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12256,50 +12355,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialogue."
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
-msgstr "Return to <emph>Print</emph> dialogue, and click the <emph>Page Layout</emph> tab page."
+msgid "Return to <emph>Print</emph> dialog."
+msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
-msgstr "Select <emph>Brochure</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
+msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Click <emph>OK</emph>."
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr ""
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,32 +12724,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
-msgstr "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialogue, you have the option to print multiple pages on one sheet."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
+msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
-msgstr "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
+msgid "Choose <menuitem>File - Print</menuitem>"
+msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Do one of the following:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/en-ZA/sc/messages.po b/source/en-ZA/sc/messages.po
index 5bad176d68f..bb2ceeb8fbe 100644
--- a/source/en-ZA/sc/messages.po
+++ b/source/en-ZA/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29389,38 +29389,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr ""
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr ""
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr ""
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr ""
diff --git a/source/en-ZA/sfx2/messages.po b/source/en-ZA/sfx2/messages.po
index 3a087ac9d69..8c4fa7a0281 100644
--- a/source/en-ZA/sfx2/messages.po
+++ b/source/en-ZA/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-10-21 19:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,288 +1638,251 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Dock"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Undock"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "More ~Options"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr ""
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Custom Animation"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr ""
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr ""
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Remove"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4243,6 +4206,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Delete..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/en-ZA/starmath/messages.po b/source/en-ZA/starmath/messages.po
index b4d9fe2bbfd..085b24ee308 100644
--- a/source/en-ZA/starmath/messages.po
+++ b/source/en-ZA/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-05-08 13:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -425,2100 +425,2233 @@ msgid "or"
msgstr "or"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+ Sign"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "- Sign"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+- Sign"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "-+ Sign"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Boolean NOT"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Addition +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Subtraction -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
#, fuzzy
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Multiplication (Dot )"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Multiplication (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Multiplication (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Division (Slash)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Division (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Division (Fraction)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Boolean AND"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Boolean OR"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Is Equal"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Is Not Equal"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Is Less Than"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Is Greater Than"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Is Less Than Or Equal To"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Is Greater Than Or Equal To"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Is Less Than Or Equal To"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Is Greater Than Or Equal To"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr ""
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
#, fuzzy
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Is Greater Than"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Is Congruent To"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Is Approximately Equal"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Is Similar To"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Is Similar Or Equal"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Is Proportional To"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Is Orthogonal To"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Is Parallel To"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Toward"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Is In"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Is Not In"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Owns"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Union"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Intersection"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Difference"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Subset"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Subset Or Equal To"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Superset"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Superset Or Equal To"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Not Subset"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Not Subset Or Equal"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Not Superset"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Not Superset Or Equal"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Absolute Value"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Factorial"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Square Root"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N-th Root"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Exponential Function"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Exponential Function"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Natural Logarithm"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logarithm"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sine"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Cosine"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangent"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Cotangent"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arcsine"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arccosine"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arctangent"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arccotangent"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Hyperbolic Sine"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Hyperbolic Cosine"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Hyperbolic Tangent"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Hyperbolic Cotangent"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Area Hyperbolic Sine"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Area Hyperbolic Cosine"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Area Hyperbolic Tangent"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Area Hyperbolic Cotangent"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Sum"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
#, fuzzy
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Subscript Bottom"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
#, fuzzy
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Superscript Top"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr ""
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Product"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
#, fuzzy
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Subscript Bottom"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr ""
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr ""
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Coproduct"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
#, fuzzy
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Subscript Bottom"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr ""
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr ""
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Limes"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
#, fuzzy
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Subscript Bottom"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
#, fuzzy
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Superscript Top"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr ""
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "There Exists"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "There Exists"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
#, fuzzy
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "For All"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integral"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Double Integral"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Triple Integral"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Curve Integral"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Double Curve Integral"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Triple Curve Integral"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Acute Accent"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Line Above"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Breve"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Reverse Circumflex"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Circle"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Dot"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Double Dot"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Triple Dot"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Grave Accent"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Circumflex"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tilde"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Vector Arrow"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Line Below"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Line Over"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Line Through"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Transparent"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Bold Font"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Italic Font"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Resize"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Change Font"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr ""
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr ""
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr ""
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr ""
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr ""
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
#, fuzzy
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Colour Tab"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr ""
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Group Brackets"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Round Brackets"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Square Brackets"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Double Square Brackets"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Braces"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Angle Brackets"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr ""
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Single Lines"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Double Lines"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Operator Brackets"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Round Brackets (Scalable)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Square Brackets (Scalable)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Double Square Brackets (Scalable)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Braces (Scalable)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Angle Brackets (Scalable)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Single Lines (Scalable)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Double Lines (Scalable)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Operator Brackets (Scalable)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Braces Top (Scalable)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Braces Bottom (Scalable)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Subscript Right"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Power"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Subscript Left"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Superscript Left"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Subscript Bottom"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Superscript Top"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Small Gap"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
#, fuzzy
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Blank"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "New Line"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Vertical Stack (2 Elements)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Vertical Stack"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Matrix Stack"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Align Left"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Align Centre"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Align Right"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Aleph"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Empty Set"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Real Part"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Imaginary Part"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
#, fuzzy
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "infinite"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Partial"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Dots In Middle"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Dots To Top"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
#, fuzzy
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Dots to Bottom"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Dots At Bottom"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Dots Vertically"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Concatenate"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
#, fuzzy
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Division (Slash)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Divides"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Does Not Divide"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Double Arrow Left"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Double Arrow Left And Right"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Double Arrow Right"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Natural Numbers Set"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Integers Set"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Set of Rational Numbers"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Real Numbers Set"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Complex Numbers Set"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Large Circumflex"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Large Tilde"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Large Vector Arrow"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h Bar"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda Bar"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Left Arrow"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Right Arrow"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Up Arrow"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Down Arrow"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr ""
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr ""
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr ""
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr ""
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr ""
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr ""
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr ""
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr ""
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr ""
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Unary/Binary Operators"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Relations"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
#, fuzzy
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Set Operations"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Functions"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
#, fuzzy
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operators"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Attributes"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
#, fuzzy
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Brackets"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formats"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Others"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
#, fuzzy
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Example"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standard"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Italic"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Bold"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "black"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "Blue"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "Green"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr ""
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "Grey"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "Time"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "Yellow"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "Hide"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "Size"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "Font"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "left"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "Centre"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "right"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Commands"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formula"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Saving document..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Formula"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Unexpected character"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' expected"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' expected"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' expected"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' expected"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' expected"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Colour required"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' expected"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Contents"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Title"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formula text"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Borders"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Size"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Original size"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~Fit to page"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
diff --git a/source/en-ZA/svtools/messages.po b/source/en-ZA/svtools/messages.po
index 5e69cc88e79..27b4fed2b41 100644
--- a/source/en-ZA/svtools/messages.po
+++ b/source/en-ZA/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Undo: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Repeat: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Unformatted text"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Status Info from Svx Internal Link"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape Bookmark"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star server format"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star object format"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet object"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Plug-in object"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 object"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 object"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 object"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 object"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 object"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 object"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 object"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw object"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 object"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 object"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 object"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc object"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 object"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 object"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart object"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 object"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 object"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage object"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 object"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 object"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath object"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 object"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 object"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint object"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word object"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet object"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office document object"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes document info"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx document"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 object"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Graphic object"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows metafile"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Data source object"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Data source table"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL query"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Link"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML format without comments"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Object % could not be inserted."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Object from file % could not be inserted."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Further objects"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Unknown source"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1255 +501,1255 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumeric"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Character set"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Dictionary"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Phone book"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Phonetic (alphanumeric first)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Phonetic (alphanumeric last)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumeric"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Dictionary"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Phonetic (alphanumeric first, grouped by syllables)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Phonetic (alphanumeric first, grouped by consonants)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Phonetic (alphanumeric last, grouped by syllables)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Phonetic (alphanumeric last, grouped by consonants)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Light"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Light Italic"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Regular"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Italic"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Bold"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Bold Italic"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Black"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Black Italic"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Book"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensed"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "semi bold"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "The same font will be used on both your printer and your screen."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "This is a printer font. The screen image may differ."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "This font style will be simulated or the closest matching style will be used."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "This font has not been installed. The closest available font will be used."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Move Comment"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Move Left"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Move Right"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Move down"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Add"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Horizontal out"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Vertical Ruler"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 bit threshold"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bit dithered"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 bit greyscale"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
#, fuzzy
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 bit colour"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 bit greyscale"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
#, fuzzy
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 bit colour"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 bit true colour"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "The file size is %1 KB."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Cost"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Sort"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Pause"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Initialising..."
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Waiting"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Error"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "D~elete Page"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Insufficient memory."
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Default printer"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
#, fuzzy
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "Word documents"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<none>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Company"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Department"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "First name"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Surname"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Street"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Country"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Postal Code"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "City"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Title"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Position"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Addr. Form"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Initials"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Complimentary close"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel: Home"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel: Work"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Note"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "User 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "User 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "User 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "User 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Province"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel: Office"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pager"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Cellphone"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel: Other"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendar"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Invite"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE Required"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Select JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE is Defective"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Source code"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Bookmark file"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Graphics"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Configuration file"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Application"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Database table"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "System file"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word document"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Help file"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML document"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Archive file"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Log file"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice 5.0 Template"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 Master Document"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice 5.0 Template"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Text file"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Link"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 Template"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel document"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel template"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batch file"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "File"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Folder"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Text Document"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Spreadsheet"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentation"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Drawing"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML document"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Master document"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formula"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Database"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Local drive"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Disk drive"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM drive"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Network connection"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint Document"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint Template"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint Show"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML Document"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument Database"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument Drawing"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument Formula"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument Master Document"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument Presentation"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument Spreadsheet"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument Text"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument Spreadsheet Template"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument Drawing Template"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument Presentation Template"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument Text Template"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME Extension"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/en-ZA/svx/messages.po b/source/en-ZA/svx/messages.po
index 1e805be8c1d..1309d70f473 100644
--- a/source/en-ZA/svx/messages.po
+++ b/source/en-ZA/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16717,12 +16717,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
-#, fuzzy
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "Comments"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/en-ZA/sw/messages.po b/source/en-ZA/sw/messages.po
index fee58bd2376..9dc099481e9 100644
--- a/source/en-ZA/sw/messages.po
+++ b/source/en-ZA/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18003,87 +18003,93 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "General"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
#, fuzzy
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "Heading"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr ""
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr ""
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr ""
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Options"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20702,294 +20708,294 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Switches between master view and normal view if a master document is open."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Header"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Footer"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
#, fuzzy
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Promote level"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
#, fuzzy
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Demote level"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
#, fuzzy
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Drag Mode"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Document"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
#, fuzzy
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Active Window"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Switches between master view and normal view if a master document is open."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Edit"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
#, fuzzy
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Update"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Click and choose the contents that you want to update."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Insert"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Inserts a file, an index, or a new document into the master document."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Move Up"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Move Down"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/eo/cui/messages.po b/source/eo/cui/messages.po
index f860f084b02..0794bd1b432 100644
--- a/source/eo/cui/messages.po
+++ b/source/eo/cui/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-15 23:35+0000\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/eo/>\n"
"Language: eo\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1564181160.000000\n"
#. GyY9M
@@ -2062,13 +2062,13 @@ msgstr "Instali"
#: cui/inc/strings.hrc:395
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
-msgstr ""
+msgstr "Instalita"
#. TmK5f
#: cui/inc/strings.hrc:396
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
-msgstr ""
+msgstr "Instalas"
#. izdAK
#: cui/inc/strings.hrc:397
@@ -2092,13 +2092,13 @@ msgstr "Kromprogramoj"
#: cui/inc/strings.hrc:401
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
-msgstr ""
+msgstr "Apliki al %MODULE"
#. mpS3V
#: cui/inc/tipoftheday.hrc:48
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME offers a variety of user interface options to make you feel at home"
-msgstr ""
+msgstr "%PRODUCTNAME ofertas diversajn fasadajn eblojn por sentigi vin kiel hejme"
#. m8rYd
#: cui/inc/tipoftheday.hrc:49
@@ -3401,7 +3401,7 @@ msgstr "Ĉu vi ne povas ŝanĝi aŭ forigi propran ĉelstilon? Kontrolu ĉiujn f
#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Ĉu vi bezonas plenigi serion? Elektu la ĉelaron kaj Folio ▸ Plenigi ĉelojn ▸ Plenigi serion, kaj elektu inter Linia, Kreska, Data kaj Aŭtomate plenigi."
#. BiSJM
#. local help missing
@@ -3474,7 +3474,7 @@ msgstr "Ĉu vi evoluigas novajn XSLT kaj xml-filtrilojn?"
#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General."
-msgstr ""
+msgstr "Premu je Maj+F1 por vidi eventualajn pliampleksajn konsiletojn en dialogoj, kiam \"Pliampleksaj konsiletoj\" ne estas aktiva en Iloj ▸ Agordaĵoj ▸ %PRODUCTNAME ▸ Ĝenerala."
#. hsZPg
#: cui/inc/tipoftheday.hrc:274
@@ -3492,13 +3492,13 @@ msgstr "Pli da informo"
#: cui/inc/tipoftheday.hrc:276
msgctxt "STR_UNO_LINK"
msgid "Run this action now..."
-msgstr ""
+msgstr "Ruligi ĉi tiun agon nun..."
#. P6JME
#: cui/inc/tipoftheday.hrc:277
msgctxt "STR_TITLE"
msgid "Tip of the Day: %CURRENT/%TOTAL"
-msgstr ""
+msgstr "Konsileto de la tago: %CURRENT/%TOTAL"
#. C6Dsn
#: cui/inc/tipoftheday.hrc:278
@@ -3529,55 +3529,55 @@ msgstr "⌥ Opt"
#: cui/inc/toolbarmode.hrc:22
msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with menu, toolbar, and collapsed sidebar. Intended to user who are familiar with the classic interface."
-msgstr ""
+msgstr "Normala fasado kun menuo, ilobreto, kaj kolapsinta flanka breto. Celata al uzantoj kiuj konas la klasikan fasadon."
#. S5tR2
#: cui/inc/toolbarmode.hrc:23
msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface but with only one toolbar. Intended for use on small screens."
-msgstr ""
+msgstr "Normala fasado sed kun nur unu ilobreto. Celas al uzado per malgrandaj ekranoj."
#. wKg2Q
#: cui/inc/toolbarmode.hrc:24
msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with expanded sidebar. Expert users who want to quickly change many different properties are advised to use this UI."
-msgstr ""
+msgstr "Normala fasado kun etendita flanka breto. Ni konsilas uzi ĉi tiun fasadon spertajn uzantojn, kiuj volas rapide ŝanĝi plurajn atributojn."
#. MEQAE
#: cui/inc/toolbarmode.hrc:25
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed user interface is the most similar to the Ribbons used by Microsoft. It organize functions in tabs and makes the main menu obsolete."
-msgstr ""
+msgstr "La langeta fasado plej similas al Ribbons de Microsoft. Ĝi organizas funkciojn en langetojn kaj igas la ĉefan menuon ne plu uzata."
#. hXNUY
#: cui/inc/toolbarmode.hrc:26
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed Compact variant aims to be familiar with Microsoft's interface having at the same time a short interface for small screen sizes."
-msgstr ""
+msgstr "La etikeda kompakta variaĵo celas koniĝi kun la fasado de Microsoft, samtempe malgranda fasado por malgrandaj ekranoj."
#. GFycb
#: cui/inc/toolbarmode.hrc:27
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Groupedbar Compact variant provides access to functions in groups with most frequently used features in icons and less often used in a dropdown menu. The compact variant favors vertical size."
-msgstr ""
+msgstr "La grupobreta kompakta variaĵo donas aliron al funkcioj en grupoj, kun la plej ofte uzataj funkcioj en bildsimboloj kaj malpli ofte uzataj en fallista menuo. La kompakta variaĵo favoras vertikalan grandon."
#. Exopn
#: cui/inc/toolbarmode.hrc:28
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Groupedbar interface provides access to functions in groups with most frequently used features in icons and less often used in a dropdown menu. The full variant favors functions and is slightly larger than other variants."
-msgstr ""
+msgstr "La grupobreta fasado donas aliron al funkcioj en grupoj, kun la plej ofte uzataj funkcioj en bildsimboloj kaj malpli ofte uzataj en fallista menuo. La plena variaĵo favoras funkciojn kaj estas iom pli granda ol aliaj variaĵoj."
#. LNaMA
#: cui/inc/toolbarmode.hrc:29
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Contextual Single interface shows functions in a single line toolbar with contextual depending content."
-msgstr ""
+msgstr "La kunteksta unuopa fasado vidigas funkciojn en unulinia ilobreto kun kuntekste dependa enhavo."
#. xcPJ4
#: cui/inc/toolbarmode.hrc:30
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Contextual Groups interface focus on beginners. It exposes to the most frequently used functions on groups with the core action as large icon and a couple of small additional features. All functions have a label. Depending on the context an additional section provides access to those functions."
-msgstr ""
+msgstr "La fasado Kuntekstaj grupoj celas al komencantoj. Ĝi elmetas la plej ofte uzatajn funkciojn en grupoj kun la kerna ago kiel granda bildsimbolo kaj paroj da pluaj funkcioj. Ĉiuj funkcioj havas etikedon. Depende de la kunteksto, plua elektaĵo donas aliron al tiuj funkcioj."
#. Xnz8J
#: cui/inc/treeopt.hrc:33
@@ -4141,7 +4141,7 @@ msgstr "Redakti"
#: cui/uiconfig/ui/aboutconfigdialog.ui:46
msgctxt "extended_tip|edit"
msgid "Opens a dialog to edit the preference."
-msgstr ""
+msgstr "Malfermas dialogon por redakti la preferon."
#. 2uM3W
#: cui/uiconfig/ui/aboutconfigdialog.ui:58
@@ -4153,13 +4153,13 @@ msgstr "Reagordi"
#: cui/uiconfig/ui/aboutconfigdialog.ui:64
msgctxt "extended_tip|reset"
msgid "Undo changes done so far in this dialog."
-msgstr ""
+msgstr "Malfari ŝanĝojn ĝis nun en ĉi tiu dialogo."
#. j4Avi
#: cui/uiconfig/ui/aboutconfigdialog.ui:149
msgctxt "extended_tip|searchEntry"
msgid "Type the preference you want to display in the text area"
-msgstr ""
+msgstr "Tajpu la preferon vidigota en la teksta kampo."
#. EhpWF
#: cui/uiconfig/ui/aboutconfigdialog.ui:161
@@ -4171,7 +4171,7 @@ msgstr "Serĉi"
#: cui/uiconfig/ui/aboutconfigdialog.ui:170
msgctxt "extended_tip|searchButton"
msgid "Click to search your preference text in the Preferences tree."
-msgstr ""
+msgstr "Klaku por serĉi vian preferatan tekston en la arbo Preferoj."
#. BMohC
#: cui/uiconfig/ui/aboutconfigdialog.ui:212
@@ -4201,7 +4201,7 @@ msgstr "Valoro"
#: cui/uiconfig/ui/aboutconfigdialog.ui:272
msgctxt "extended_tip|preferences"
msgid "List the preferences organized hierarchically in a tree layout."
-msgstr ""
+msgstr "Listigi la preferojn hierarkie aranĝitaj laŭ arbo."
#. B8FF9
#: cui/uiconfig/ui/aboutconfigvaluedialog.ui:8
@@ -4279,7 +4279,7 @@ msgstr "Retejo"
#: cui/uiconfig/ui/aboutdialog.ui:383
msgctxt "aboutdialog|releasenotes"
msgid "Release Notes"
-msgstr ""
+msgstr "Eldonaj notoj"
#. 5TUrF
#: cui/uiconfig/ui/aboutdialog.ui:411
@@ -4297,7 +4297,7 @@ msgstr "Kopii ĉiujn versiajn informojn en la angla"
#: cui/uiconfig/ui/accelconfigpage.ui:126
msgctxt "accelconfigpage|extended_tip|shortcuts"
msgid "Lists the shortcut keys and the associated commands. To assign or modify the shortcut key for the command selected in the Function list, click a shortcut in this list, and then click Modify."
-msgstr ""
+msgstr "Listigas la fulmoklavojn kaj la rilatajn komandojn. Por atribui aŭ ŝanĝi la fulmoklavon por la komando elektita en la funkciolisto, klaku fulmoklavon en ĉi tiu listo, kaj klaku al Ŝanĝi."
#. MP3WF
#: cui/uiconfig/ui/accelconfigpage.ui:139
@@ -4315,7 +4315,7 @@ msgstr "%PRODUCTNAME"
#: cui/uiconfig/ui/accelconfigpage.ui:175
msgctxt "accelconfigpage|extended_tip|office"
msgid "Displays shortcut keys that are common to all %PRODUCTNAME applications."
-msgstr ""
+msgstr "Vidigas fulmoklavojn kiuj estas komunaj al ĉiuj %PRODUCTNAME-aplikaĵoj."
#. jjhUE
#: cui/uiconfig/ui/accelconfigpage.ui:187
@@ -4327,7 +4327,7 @@ msgstr "$(MODULE)"
#: cui/uiconfig/ui/accelconfigpage.ui:197
msgctxt "accelconfigpage|extended_tip|module"
msgid "Displays shortcut keys for the current %PRODUCTNAME application."
-msgstr ""
+msgstr "Vidigas fulmoklavojn por la aktuala %PRODUCTNAME-aplikaĵo."
#. R2nhJ
#: cui/uiconfig/ui/accelconfigpage.ui:224
@@ -4339,7 +4339,7 @@ msgstr "Modifi"
#: cui/uiconfig/ui/accelconfigpage.ui:231
msgctxt "accelconfigpage|extended_tip|change"
msgid "Assigns the key combination selected in the Shortcut keys list to the command selected in the Function list."
-msgstr ""
+msgstr "Atribuas la klavan kombinaĵon elektitan en la listo Fulmoklavoj al la komando elektita en la listo Funkcio."
#. eFsw9
#: cui/uiconfig/ui/accelconfigpage.ui:250
@@ -4357,7 +4357,7 @@ msgstr "Ŝargi..."
#: cui/uiconfig/ui/accelconfigpage.ui:269
msgctxt "accelconfigpage|extended_tip|load"
msgid "Replaces the shortcut key configuration with one that was previously saved."
-msgstr ""
+msgstr "Anstataŭigas la fulmoklavan agordon per antaŭe konservita."
#. Uq7F5
#: cui/uiconfig/ui/accelconfigpage.ui:282
@@ -4369,13 +4369,13 @@ msgstr "Konservi..."
#: cui/uiconfig/ui/accelconfigpage.ui:289
msgctxt "accelconfigpage|extended_tip|save"
msgid "Saves the current shortcut key configuration, so that you can load it later."
-msgstr ""
+msgstr "Konservas la aktualan fulmoklavan agordon, por ke vi povu ŝargi ĝin poste."
#. mJmga
#: cui/uiconfig/ui/accelconfigpage.ui:310
msgctxt "accelconfigpage|extended_tip|reset"
msgid "Resets modified values back to the default values."
-msgstr ""
+msgstr "Restaŭras ŝanĝitajn valorojn al la aprioraj valoroj."
#. BKAsD
#: cui/uiconfig/ui/accelconfigpage.ui:367
@@ -4405,13 +4405,13 @@ msgstr "Klavoj"
#: cui/uiconfig/ui/accelconfigpage.ui:460
msgctxt "accelconfigpage|extended_tip|category"
msgid "Lists the available function categories. To assign shortcuts to Styles, open the \"Styles\" category."
-msgstr ""
+msgstr "Listigas la haveblajn funkiajn kategoriojn. Por atribui fulmoklavojn al Stiloj, malfermu la kategorion \"Stiloj\"."
#. wGm8q
#: cui/uiconfig/ui/accelconfigpage.ui:507
msgctxt "accelconfigpage|extended_tip|function"
msgid "Select a function that you want to assign a shortcut key to, click a key combination in the Shortcut keys list, and then click Modify. If the selected function already has a shortcut key, it is displayed in the Keys list."
-msgstr ""
+msgstr "Elektu funkcion al kiu vi atribuos fulmoklavon, klaku klavan kombinaĵon en la listo Fulmoklavoj, kaj klaku Modifi. Se la elektita funkcio jam havas fulmoklavon, ĝi vidiĝas en la listo Klavoj."
#. CqdJF
#: cui/uiconfig/ui/accelconfigpage.ui:574
@@ -4423,13 +4423,13 @@ msgstr "Funkcioj"
#: cui/uiconfig/ui/accelconfigpage.ui:587
msgctxt "accelconfigpage|extended_tip|AccelConfigPage"
msgid "Assigns or edits the shortcut keys for %PRODUCTNAME commands, or %PRODUCTNAME Basic macros."
-msgstr ""
+msgstr "Atribuas aŭ redaktas la fulmoklavojn por %PRODUCTNAME-komandoj, aŭ %PRODUCTNAME-BASIC-makrooj."
#. FAPZ6
#: cui/uiconfig/ui/acorexceptpage.ui:61
msgctxt "acorexceptpage|extended_tip|abbrev"
msgid "Type an abbreviation followed by a period, and then click New. This prevents %PRODUCTNAME from automatically capitalizing the first letter of the word that comes after the period at the end of the abbreviation."
-msgstr ""
+msgstr "Tajpu mallongigon sekvatan de punkto, kaj klaku al Nova. Tio malebligas ke %PRODUCTNAME aŭtomate majuskligu la unuan literon de la vorto kiu sekvas la punkton ĉe la fino de la mallongigo."
#. vanfV
#: cui/uiconfig/ui/acorexceptpage.ui:72
@@ -4441,7 +4441,7 @@ msgstr "Aŭtomate inkluzivi"
#: cui/uiconfig/ui/acorexceptpage.ui:81
msgctxt "acorexceptpage|extended_tip|autoabbrev"
msgid "Automatically adds abbreviations or words that start with two capital letters to the corresponding list of exceptions. This feature only works if the Correct TWo INitial CApitals option or the Capitalize first letter of every sentence option are selected in the [T] column onOptions tab of this dialog."
-msgstr ""
+msgstr "Aŭtomate aldonas mallongigojn aŭ vortojn kiuj komencas per du majusklaj literoj al la rilata listo de esceptoj. Ĉi tiu funkcio agas nur se la eblo Korekti DU KOmencajn MAjusklojn, aŭ la eblo Majuskligi la unuan literon de ĉiu frazo, estas elektita en la [T] kolumno jeEbloj-langeto de ĉi tiu dialogo."
#. tpV8t
#: cui/uiconfig/ui/acorexceptpage.ui:108
@@ -4465,7 +4465,7 @@ msgstr "Forigi mallongigojn"
#: cui/uiconfig/ui/acorexceptpage.ui:195
msgctxt "acorexceptpage|extended_tip|abbrevlist"
msgid "Lists the abbreviations that are not automatically corrected."
-msgstr ""
+msgstr "Listigas la mallongigojn kiuj ne estas aŭtomate korektataj."
#. VoLnB
#: cui/uiconfig/ui/acorexceptpage.ui:214
@@ -4477,7 +4477,7 @@ msgstr "Mallongigoj (neniu posta majusklo)"
#: cui/uiconfig/ui/acorexceptpage.ui:260
msgctxt "acorexceptpage|extended_tip|double"
msgid "Type the word or abbreviation that starts with two capital letters that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc."
-msgstr ""
+msgstr "Tajpu la vorton aŭ mallongigon kiu komencas per du majusklaj literoj kiujn %PRODUCTNAME ne ŝanĝu al unu komenca majusklo. Ekzemple, enigu je PC por malebligi ke %PRODUCTNAME ŝanĝu je PC al Pc."
#. kAzxB
#: cui/uiconfig/ui/acorexceptpage.ui:271
@@ -4489,7 +4489,7 @@ msgstr "Aŭtomate inkluzivi"
#: cui/uiconfig/ui/acorexceptpage.ui:280
msgctxt "acorexceptpage|extended_tip|autodouble"
msgid "Automatically adds abbreviations or words that start with two capital letters to the corresponding list of exceptions. This feature only works if the Correct TWo INitial CApitals option or the Capitalize first letter of every sentence option are selected in the [T] column onOptions tab of this dialog."
-msgstr ""
+msgstr "Aŭtomate aldonas mallongigojn aŭ vortojn kiuj komencas per du majusklaj literoj al la rilata listo de esceptoj. Ĉi tiu funkcio agas nur se la eblo Korekti DU KOmencajn MAjusklojn, aŭ la eblo Majuskligi la unuan literon de ĉiu frazo, estas elektita en la [T] kolumno jeEbloj-langeto de ĉi tiu dialogo."
#. AcEEf
#: cui/uiconfig/ui/acorexceptpage.ui:307
@@ -4513,7 +4513,7 @@ msgstr "Forigi vortojn kun du komencaj majuskoj aŭ minuskla komenco"
#: cui/uiconfig/ui/acorexceptpage.ui:394
msgctxt "acorexceptpage|extended_tip|doublelist"
msgid "Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field."
-msgstr ""
+msgstr "Listigas la vortojn aŭ mallongigojn kiuj komencas per du majuskloj kiuj ne estas aŭtomate korektotaj. Ĉiuj vortoj kiuj komencas per du majuskloj listiĝas en la kampo."
#. 7FHhG
#: cui/uiconfig/ui/acorexceptpage.ui:413
@@ -4525,19 +4525,19 @@ msgstr "Vortoj kun DU KOmencaj MAjuskoj aŭ mINUSKLA kOMENCO"
#: cui/uiconfig/ui/acorexceptpage.ui:428
msgctxt "acorexceptpage|extended_tip|AcorExceptPage"
msgid "Specify the abbreviations or letter combinations that you do not want %PRODUCTNAME to correct automatically."
-msgstr ""
+msgstr "Agordu la mallongigojn aŭ literkombinaĵojn kiujn %PRODUCTNAME ne aŭtomate korektu."
#. Cd7nJ
#: cui/uiconfig/ui/acoroptionspage.ui:84
msgctxt "acoroptionspage|extended_tip|AutocorrectOptionsPage"
msgid "Select the options for automatically correcting errors as you type, and then click OK."
-msgstr ""
+msgstr "Elektu la eblojn por aŭtomate korekti erarojn dum vi tajpas, kaj klaku al Akcepti."
#. D8rmz
#: cui/uiconfig/ui/acorreplacepage.ui:40
msgctxt "acorreplacepage|extended_tip|new"
msgid "Adds or replaces an entry in the replacement table."
-msgstr ""
+msgstr "Aldonas aŭ anstataŭigas elementon en la anstataŭiga tabelo."
#. qjPVK
#: cui/uiconfig/ui/acorreplacepage.ui:52
@@ -4549,7 +4549,7 @@ msgstr "Anstataŭigi"
#: cui/uiconfig/ui/acorreplacepage.ui:60
msgctxt "acorreplacepage|extended_tip|replace"
msgid "Adds or replaces an entry in the replacement table."
-msgstr ""
+msgstr "Aldonas aŭ anstataŭigas elementon en la anstataŭiga tabelo."
#. 7hHNW
#: cui/uiconfig/ui/acorreplacepage.ui:79
@@ -4561,19 +4561,19 @@ msgstr "Forigas la elektitan elementon aŭ elementojn sen konfirmo."
#: cui/uiconfig/ui/acorreplacepage.ui:146
msgctxt "acorreplacepage|extended_tip|tabview"
msgid "Lists the entries for automatically replacing words, abbreviations or word parts while you type. To add an entry, enter text in the Replace and With boxes, and then click New. To edit an entry, select it, change the text in the With box, and then click Replace. To delete an entry, select it, and then click Delete."
-msgstr ""
+msgstr "Listigas la elementojn por aŭtomate anstataŭigi vortojn, mallongigojn aŭ vortpartojn dum vi tajpas. Por aldoni elementon, enigu tekston en la kampoj Anstatŭigi kaj Per, kaj klaku al Nova. Por redakti elementon, elektu ĝin, ŝanĝu la tekston en la kampo Per, kaj klaku al Anstataŭigi. Por forigi elementon, elektu ĝin, kaj klaku al Forigi."
#. p6tMV
#: cui/uiconfig/ui/acorreplacepage.ui:167
msgctxt "acorreplacepage|extended_tip|newtext"
msgid "Enter the replacement text, graphic, frame, or OLE object that you want to replace the text in the Replace box. If you have selected text, a graphic, a frame, or an OLE object in your document, the relevant information is already entered here."
-msgstr ""
+msgstr "Enigu la anstataŭigan tekston, grafikon, kadron, aŭ OLE-objekton, kiun vi volas anstataŭigi la tekston en la kampo Anstataŭigi. Se vi elektis tekston, grafikon, kadron aŭ OLE-objekton en via dokumento, la rilata informo jam eniĝis ĉi tie."
#. gd9PD
#: cui/uiconfig/ui/acorreplacepage.ui:185
msgctxt "acorreplacepage|extended_tip|origtext"
msgid "Enter the word, abbreviation or word part that you want to replace while you type. Wildcard character sequence .* in the end of word results the replacement of the word before arbitrary suffixes, too. Wildcard character sequence .* before the word results the replacement after arbitrary prefixes, too. For example, the pattern \"i18n.*\" with the replacement text \"internationalization\" finds and replaces \"i18ns\" with \"internationalizations\", or the pattern \".*...\" with the replacement text \"…\" finds and replaces three dots in \"word...\" with the typographically correct precomposed Unicode horizontal ellipsis (\"word…\")."
-msgstr ""
+msgstr "Enigu la vorton, mallongigon aŭ vortparton kiun vi volas anstataŭigi dum vi tajpas. La ĵokera kombinaĵo .* en la fino de vorto rezultigas anstataŭigi la vorton antaŭ arbitraj sufiksoj. La ĵokera kombinaĵo .* antaŭ la vorto rezultigas anstataŭigi la vorton post arbitraj prefiksoj. Ekzemple, la ŝablono \"i18n.*\" kun la anstataŭiga teksto \"internationalization\" serĉas kaj anstataŭigas je \"i18ns\" per \"internationalizations\", aŭ la ŝablono \".*...\" per la anstataŭiga teksto \"…\" serĉas kaj anstataŭigas tri punktojn en \"vorto...\" per la tipografie ĝusta antaŭe kunmetita Unikoda horizontala tripunkto (\"vorto…\")."
#. GLT9J
#: cui/uiconfig/ui/acorreplacepage.ui:198
@@ -4597,13 +4597,13 @@ msgstr "Nur teksto"
#: cui/uiconfig/ui/acorreplacepage.ui:239
msgctxt "acorreplacepage|extended_tip|textonly"
msgid "Saves the entry in the With box without formatting. When the replacement is made, the text uses the same format as the document text."
-msgstr ""
+msgstr "Konservas sen formatado la elementon en la kadro Kun. Kiam anstataŭigo okazas, la teksto uzas la saman formaton kiel la dokumenta teksto."
#. yuDgJ
#: cui/uiconfig/ui/acorreplacepage.ui:253
msgctxt "acorreplacepage|extended_tip|AcorReplacePage"
msgid "Edits the replacement table for automatically correcting or replacing words or abbreviations in your document."
-msgstr ""
+msgstr "Redaktas la anstataŭigan tabelon por aŭtomate korekti aŭ anstataŭigi vortojn aŭ mallongigojn en via dokumento."
#. 9Xnti
#: cui/uiconfig/ui/additionsdialog.ui:12
@@ -4682,7 +4682,7 @@ msgstr "serĉa elemento"
#: cui/uiconfig/ui/additionsdialog.ui:211
msgctxt "additionsdialog|buttonGear"
msgid "Gear Menu"
-msgstr ""
+msgstr "Dentrada menuo"
#. CbCbR
#: cui/uiconfig/ui/additionsdialog.ui:212
@@ -4712,19 +4712,19 @@ msgstr "Ĉi tiu butono vidigas pluajn kromprogramojn."
#: cui/uiconfig/ui/additionsfragment.ui:68
msgctxt "additionsEntry|votingLabel"
msgid "Voting:"
-msgstr ""
+msgstr "Voĉdoni:"
#. iMQas
#: cui/uiconfig/ui/additionsfragment.ui:88
msgctxt "additionsEntry|labelLicense"
msgid "License:"
-msgstr ""
+msgstr "Permesilo:"
#. buPFe
#: cui/uiconfig/ui/additionsfragment.ui:106
msgctxt "additionsEntry|labelVersion"
msgid "Required version:"
-msgstr ""
+msgstr "Bezonata versio:"
#. cFsEL
#: cui/uiconfig/ui/additionsfragment.ui:124
@@ -4736,19 +4736,19 @@ msgstr "Komentoj:"
#: cui/uiconfig/ui/additionsfragment.ui:142
msgctxt "additionsEntry|labelComments"
msgid "Downloads:"
-msgstr ""
+msgstr "Elŝutaĵoj:"
#. JRe5b
#: cui/uiconfig/ui/additionsfragment.ui:356
msgctxt "additionsEntry|buttonInstall"
msgid "Install"
-msgstr ""
+msgstr "Instali"
#. VEbVr
#: cui/uiconfig/ui/additionsfragment.ui:370
msgctxt "additionsEntry|buttonWebsite"
msgid "Website"
-msgstr ""
+msgstr "Retejo"
#. BuMBh
#: cui/uiconfig/ui/agingdialog.ui:15
@@ -4760,7 +4760,7 @@ msgstr "Malnoviĝo"
#: cui/uiconfig/ui/agingdialog.ui:149
msgctxt "agingdialog|extended_tip|value"
msgid "Specifies the number of colors to which the image is to be reduced."
-msgstr ""
+msgstr "Agordas la nombron da koloroj al kiu redukti la bildon."
#. bJvBm
#: cui/uiconfig/ui/agingdialog.ui:162
@@ -4778,7 +4778,7 @@ msgstr "Parametroj"
#: cui/uiconfig/ui/agingdialog.ui:211
msgctxt "agingdialog|extended_tip|AgingDialog"
msgid "All pixels are set to their gray values, and then the green and blue color channels are reduced by the amount you specify. The red color channel is not changed."
-msgstr ""
+msgstr "Agordas ĉiujn bilderojn al iliaj grizaj valoroj, kaj reduktas la verdan kaj bluan kolorkanelojn laŭ la kvanto kiun vi agordis. Ne ŝanĝas la ruĝan koloron."
#. nxZTH
#: cui/uiconfig/ui/applyautofmtpage.ui:55
@@ -4790,7 +4790,7 @@ msgstr "_Redakti..."
#: cui/uiconfig/ui/applyautofmtpage.ui:64
msgctxt "applyautofmtpage|extended_tip|edit"
msgid "Modifies the selected AutoCorrect option."
-msgstr ""
+msgstr "Ŝanĝas la elektitan eblon Aŭtomate korekti."
#. sYxng
#: cui/uiconfig/ui/applyautofmtpage.ui:78
@@ -4820,7 +4820,7 @@ msgstr "[T]"
#: cui/uiconfig/ui/applyautofmtpage.ui:205
msgctxt "applyautofmtpage|extended_tip|ApplyAutoFmtPage"
msgid "Select the options for automatically correcting errors as you type, and then click OK."
-msgstr ""
+msgstr "Elektu la eblojn por aŭtomate korekti erarojn dum vi tajpas, kaj klaku al Akcepti."
#. EjG2g
#: cui/uiconfig/ui/applylocalizedpage.ui:92
@@ -4838,13 +4838,13 @@ msgstr "[T]"
#: cui/uiconfig/ui/applylocalizedpage.ui:139
msgctxt "applylocalizedpage|extended_tip|list"
msgid "Select to apply the replacements while you type [T], or when you modify existing text [M]."
-msgstr ""
+msgstr "Elektu por apliki la anstataŭigojn dum vi tajpas [T], aŭ kiam vi modifas ekzistantan tekston [M]."
#. KM3Dj
#: cui/uiconfig/ui/applylocalizedpage.ui:200
msgctxt "applylocalizedpage|extended_tip|checklist"
msgid "Select to apply the replacements while you type [T], or when you modify existing text [M]."
-msgstr ""
+msgstr "Elektu por apliki la anstataŭigojn dum vi tajpas [T], aŭ kiam vi modifas ekzistantan tekston [M]."
#. srHxL
#: cui/uiconfig/ui/applylocalizedpage.ui:245
@@ -4856,7 +4856,7 @@ msgstr "Anstataŭigi"
#: cui/uiconfig/ui/applylocalizedpage.ui:254
msgctxt "applylocalizedpage|extended_tip|singlereplace"
msgid "Automatically replaces the default system symbol for the given type of quotation marks with the special character that you specify."
-msgstr ""
+msgstr "Aŭtomate anstataŭigas la aprioran sisteman signon por la donita tipo de citiloj per la speciala signo kiun vi agordis."
#. EQrEN
#: cui/uiconfig/ui/applylocalizedpage.ui:269
@@ -4874,7 +4874,7 @@ msgstr "Komenca citilo de unuopa citilo"
#: cui/uiconfig/ui/applylocalizedpage.ui:294
msgctxt "applylocalizedpage|extended_tip|startsingle"
msgid "Select the special character that will automatically replace the current opening quotation mark in your document when you choose Tools - AutoCorrect - Apply."
-msgstr ""
+msgstr "Elektu la specialan signon kiu aŭtomate anstataŭos la aktualan malferman citilon en via dokumento kiam vi elektas menuerojn Iloj - Aŭtomate korekti - Apliki."
#. FFEVA
#: cui/uiconfig/ui/applylocalizedpage.ui:307
@@ -4898,7 +4898,7 @@ msgstr "Unuopa citilo apriora"
#: cui/uiconfig/ui/applylocalizedpage.ui:332
msgctxt "applylocalizedpage|extended_tip|defaultsingle"
msgid "Resets the quotation marks to the default symbols."
-msgstr ""
+msgstr "Restaŭras la citilojn al la aprioraj signoj."
#. GRDaT
#: cui/uiconfig/ui/applylocalizedpage.ui:346
@@ -4916,7 +4916,7 @@ msgstr "Fina citilo de unuopa citilo"
#: cui/uiconfig/ui/applylocalizedpage.ui:371
msgctxt "applylocalizedpage|extended_tip|endsingle"
msgid "Select the special character that will automatically replace the current closing quotation mark in your document when you choose Tools - AutoCorrect - Apply."
-msgstr ""
+msgstr "Elektu la specialan signon kiu aŭtomate anstataŭos la aktualan ferman citilon en via dokumento kiam vi elektas menuerojn Iloj - Aŭtomate korekti - Apliki."
#. M4BCQ
#: cui/uiconfig/ui/applylocalizedpage.ui:384
@@ -4940,7 +4940,7 @@ msgstr "Anstataŭigi"
#: cui/uiconfig/ui/applylocalizedpage.ui:450
msgctxt "applylocalizedpage|extended_tip|doublereplace"
msgid "Automatically replaces the default system symbol for the given type of quotation marks with the special character that you specify."
-msgstr ""
+msgstr "Aŭtomate anstataŭigos la aprioran sisteman citilon por la donita tipo de citilo per la speciala signo kiun vi agordis."
#. MAW53
#: cui/uiconfig/ui/applylocalizedpage.ui:465
@@ -4958,7 +4958,7 @@ msgstr "Komenci citaĵon de duopaj citiloj"
#: cui/uiconfig/ui/applylocalizedpage.ui:490
msgctxt "applylocalizedpage|extended_tip|startdouble"
msgid "Select the special character that will automatically replace the current opening quotation mark in your document when you choose Tools - AutoCorrect - Apply."
-msgstr ""
+msgstr "Elektu la specialan signon kiu aŭtomate anstataŭos la aktualan malferman citilon en via dokumento kiam vi elektas menuerojn Iloj - Aŭtomate korekti - Apliki."
#. oqBJC
#: cui/uiconfig/ui/applylocalizedpage.ui:503
@@ -4982,7 +4982,7 @@ msgstr "Apriora duopa citilo"
#: cui/uiconfig/ui/applylocalizedpage.ui:528
msgctxt "applylocalizedpage|extended_tip|defaultdouble"
msgid "Resets the quotation marks to the default symbols."
-msgstr ""
+msgstr "Restaŭras la citilojn al la aprioraj signoj."
#. cDwwK
#: cui/uiconfig/ui/applylocalizedpage.ui:542
@@ -5000,7 +5000,7 @@ msgstr "Fina citilo de duopa citilo"
#: cui/uiconfig/ui/applylocalizedpage.ui:567
msgctxt "applylocalizedpage|extended_tip|enddouble"
msgid "Select the special character that will automatically replace the current closing quotation mark in your document when you choose Tools - AutoCorrect - Apply."
-msgstr ""
+msgstr "Elektu la specialan signon kiu aŭtomate anstataŭos la aktualan ferman citilon en via dokumento kiam vi elektas menuerojn Iloj - Aŭtomate korekti - Apliki."
#. FBndB
#: cui/uiconfig/ui/applylocalizedpage.ui:580
@@ -5018,7 +5018,7 @@ msgstr "Dustrekaj citiloj"
#: cui/uiconfig/ui/applylocalizedpage.ui:632
msgctxt "applylocalizedpage|extended_tip|ApplyLocalizedPage"
msgid "Specify the AutoCorrect options for quotation marks and for options that are specific to the language of the text."
-msgstr ""
+msgstr "Agordu la eblojn Aŭtomate korekti, por citiloj kaj por ebloj kiuj estas specifaj al la lingvo de la teksto."
#. BXzDP
#: cui/uiconfig/ui/areadialog.ui:8
@@ -5048,7 +5048,7 @@ msgstr "Travidebleco"
#: cui/uiconfig/ui/areadialog.ui:257
msgctxt "areadialog|extended_tip|AreaDialog"
msgid "Sets the fill properties of the selected drawing object."
-msgstr ""
+msgstr "Agordas la plenigajn atributojn de la elektita desegna objekto."
#. as89H
#: cui/uiconfig/ui/areatabpage.ui:33
@@ -5072,7 +5072,7 @@ msgstr "Tabelo"
#: cui/uiconfig/ui/areatabpage.ui:39
msgctxt "areatabpage|extended_tip|tablelb"
msgid "Set the fill options for the selected drawing object or document element."
-msgstr ""
+msgstr "Agordas la plenigajn atributojn de la elektita desegna objekto aŭ dokumenta elemento."
#. 2kC9i
#: cui/uiconfig/ui/areatabpage.ui:51
@@ -5084,7 +5084,7 @@ msgstr "Neniu"
#: cui/uiconfig/ui/areatabpage.ui:57
msgctxt "areatabpage|extended_tip|btnnone"
msgid "Do not fill the selected object."
-msgstr ""
+msgstr "Ne plenigu la elektitan objekton."
#. AiEuM
#: cui/uiconfig/ui/areatabpage.ui:69
@@ -5096,7 +5096,7 @@ msgstr "Koloro"
#: cui/uiconfig/ui/areatabpage.ui:75
msgctxt "areatabpage|extended_tip|btncolor"
msgid "Fills the object with a gradient selected on this page."
-msgstr ""
+msgstr "Plenigas la objekton per kolortransiro elektita en ĉi tiu paĝo."
#. zXDcA
#: cui/uiconfig/ui/areatabpage.ui:87
@@ -5108,7 +5108,7 @@ msgstr "Gradiento"
#: cui/uiconfig/ui/areatabpage.ui:93
msgctxt "areatabpage|extended_tip|btngradient"
msgid "Fills the object with a gradient selected on this page."
-msgstr ""
+msgstr "Plenigas la objekton per kolortransiro elektita en ĉi tiu paĝo."
#. MDHs7
#: cui/uiconfig/ui/areatabpage.ui:105
@@ -5120,7 +5120,7 @@ msgstr "Bitbildo"
#: cui/uiconfig/ui/areatabpage.ui:111
msgctxt "areatabpage|extended_tip|btnbitmap"
msgid "Fills the object with a hatching pattern selected on this page."
-msgstr ""
+msgstr "Plenigas la objekton per haĉa desegno elektita en ĉi tiu paĝo."
#. 9q7GD
#: cui/uiconfig/ui/areatabpage.ui:123
@@ -5132,7 +5132,7 @@ msgstr "Modelo"
#: cui/uiconfig/ui/areatabpage.ui:129
msgctxt "areatabpage|extended_tip|btnpattern"
msgid "Fills the object with a hatching pattern selected on this page."
-msgstr ""
+msgstr "Plenigas la objekton per haĉa desegno elektita en ĉi tiu paĝo."
#. 5y6vj
#: cui/uiconfig/ui/areatabpage.ui:141
@@ -5144,13 +5144,13 @@ msgstr "Haĉo"
#: cui/uiconfig/ui/areatabpage.ui:147
msgctxt "areatabpage|extended_tip|btnhatch"
msgid "Fills the object with a hatching pattern selected on this page."
-msgstr ""
+msgstr "Plenigas la objekton per haĉa desegno elektita en ĉi tiu paĝo."
#. TFDzi
#: cui/uiconfig/ui/areatabpage.ui:201
msgctxt "areatabpage|extended_tip|AreaTabPage"
msgid "Set the fill options for the selected drawing object or document element."
-msgstr ""
+msgstr "Agordas la plenigajn atributojn de la elektita desegna objekto aŭ dokumenta elemento."
#. GSXcM
#: cui/uiconfig/ui/asiantypography.ui:25
@@ -5222,7 +5222,7 @@ msgstr "Anstataŭigoj kaj esceptoj por lingvo:"
#: cui/uiconfig/ui/autocorrectdialog.ui:137
msgctxt "autocorrectdialog|extended_tip|lang"
msgid "Select the language for which you want to create or edit the replacement rules."
-msgstr ""
+msgstr "Elektu la lingvon por kiu vi volas krei aŭ redakti la anstataŭigajn regulojn."
#. Qpig7
#: cui/uiconfig/ui/autocorrectdialog.ui:199
@@ -5282,7 +5282,7 @@ msgstr "_Ŝanĝu..."
#: cui/uiconfig/ui/baselinksdialog.ui:60
msgctxt "baselinksdialog|extended_tip|CHANGE_SOURCE"
msgid "Change the source file for the selected link."
-msgstr ""
+msgstr "Ŝanĝi la fontan dosieron por la elektita ligilo."
#. RDZHa
#: cui/uiconfig/ui/baselinksdialog.ui:72
@@ -5294,7 +5294,7 @@ msgstr "_Rompi ligilon"
#: cui/uiconfig/ui/baselinksdialog.ui:79
msgctxt "baselinksdialog|extended_tip|BREAK_LINK"
msgid "Breaks the link between the source file and the current document. The most recently updated contents of the source file are kept in the current document."
-msgstr ""
+msgstr "Rompas la ligilon inter la fonta dosiero kaj la aktuala dokumento. La plej freŝe ĝisdatigita enhavo de la fonta dosiero konserviĝas en la aktuala dokumento."
#. SEEGs
#: cui/uiconfig/ui/baselinksdialog.ui:91
@@ -5306,7 +5306,7 @@ msgstr "Ĝisdatigi"
#: cui/uiconfig/ui/baselinksdialog.ui:98
msgctxt "baselinksdialog|extended_tip|UPDATE_NOW"
msgid "Updates the selected link so that the most recently saved version of the linked file is displayed in the current document."
-msgstr ""
+msgstr "Ĝisdatigas la elektitan ligilon por ke la plej freŝe konservita versio de la ligita dosiero vidiĝas en la aktuala dokumento."
#. A6Mz4
#: cui/uiconfig/ui/baselinksdialog.ui:171
@@ -5336,7 +5336,7 @@ msgstr "Stato"
#: cui/uiconfig/ui/baselinksdialog.ui:221
msgctxt "baselinksdialog|extended_tip|TB_LINKS"
msgid "Double-click a link in the list to open a file dialog where you can select another object for this link."
-msgstr ""
+msgstr "Duoble alklaku ligilon en la listo por malfermi dosieran dialogon kie vi povas elekti alian objekton por ĉi tiu ligilo."
#. VUouK
#: cui/uiconfig/ui/baselinksdialog.ui:252
@@ -5372,7 +5372,7 @@ msgstr "Aŭtomata"
#: cui/uiconfig/ui/baselinksdialog.ui:366
msgctxt "baselinksdialog|extended_tip|AUTOMATIC"
msgid "Automatically updates the contents of the link when you open the file. Any changes made in the source file are then displayed in the file containing the link. Linked graphic files can only be updated manually."
-msgstr ""
+msgstr "Aŭtomate ĝisdatigas la enhavon de la ligilo kiam vi malfermas la dosieron. Eventualaj ŝanĝoj faritaj en la fonta dosiero vidiĝas en la dosiero enhavanta la ligilon. Ligitaj grafikaj dosieroj estas ĝisdatigeblaj nur mane."
#. GzGG5
#: cui/uiconfig/ui/baselinksdialog.ui:377
@@ -5384,13 +5384,13 @@ msgstr "Mana"
#: cui/uiconfig/ui/baselinksdialog.ui:387
msgctxt "baselinksdialog|extended_tip|MANUAL"
msgid "Only updates the link when you click the Update button."
-msgstr ""
+msgstr "Ĝisdatigas la ligilon nur kiam vi alklakas la butonon Ĝisdatigi."
#. D2J77
#: cui/uiconfig/ui/baselinksdialog.ui:427
msgctxt "baselinksdialog|extended_tip|BaseLinksDialog"
msgid "Lets you edit the properties of each link in the current document, including the path to the source file. This command is not available if the current document does not contain links to other files."
-msgstr ""
+msgstr "Ebligas al vi redakti la atributojn de ĉiu ligilo en la aktuala dokumento, inklude la vojprefikson al la fonta dosiero. Ĉi tiu komando ne estas havebla se la aktuala dokumento ne enhavas ligilojn al aliaj dosieroj."
#. D264D
#: cui/uiconfig/ui/bitmaptabpage.ui:66
@@ -5402,7 +5402,7 @@ msgstr "Aldoni / Importi"
#: cui/uiconfig/ui/bitmaptabpage.ui:72
msgctxt "bitmaptabpage|extended_tip|BTN_IMPORT"
msgid "Locate the bitmap that you want to import, and then click Open. The bitmap is added to the end of the list of available bitmaps."
-msgstr ""
+msgstr "Trovu la bitbildon importotan, kaj alklaku al Malfermu. La bitbildo aldoniĝas al la fino de la listo de haveblaj bitbildoj."
#. UYRCn
#: cui/uiconfig/ui/bitmaptabpage.ui:90
@@ -5576,7 +5576,7 @@ msgstr "Aspekto"
#: cui/uiconfig/ui/bitmaptabpage.ui:607
msgctxt "bitmaptabpage|extended_tip|BitmapTabPage"
msgid "Select a bitmap that you want to use as a fill image, or add your own bitmap pattern."
-msgstr ""
+msgstr "Elektu bitbildon uzotan kiel plenigan bildon, aŭ aldonu vian propran bitbildan desegnon."
#. AYRA3
#: cui/uiconfig/ui/borderareatransparencydialog.ui:8
@@ -5630,7 +5630,7 @@ msgstr "Propre difinita:"
#: cui/uiconfig/ui/borderpage.ui:98
msgctxt "borderpage|userdefft"
msgid "Click edge or corner to cycle through three states: set, unchanged, remove."
-msgstr ""
+msgstr "Alklaku al la eĝo aŭ angulo por pasi tra la tri statoj: agordi, neŝanĝita, forigi."
#. sRXeg
#: cui/uiconfig/ui/borderpage.ui:111
@@ -5732,7 +5732,7 @@ msgstr "_Distanco:"
#: cui/uiconfig/ui/borderpage.ui:547
msgctxt "borderpage|distanceft"
msgid "Width of shadow"
-msgstr ""
+msgstr "Larĝo de ombro"
#. gEF6E
#: cui/uiconfig/ui/borderpage.ui:572
@@ -6032,7 +6032,7 @@ msgstr "Klarigiloj"
#: cui/uiconfig/ui/calloutpage.ui:35
msgctxt "calloutpage|extended_tip|valueset"
msgid "Click the Callout style that you want to apply to the selected callout."
-msgstr ""
+msgstr "Alklaku la Klarigilo-stilon aplikotan al la elektita klarigilo."
#. cAZqx
#: cui/uiconfig/ui/calloutpage.ui:66
@@ -6074,13 +6074,13 @@ msgstr "Vertikala"
#: cui/uiconfig/ui/calloutpage.ui:89
msgctxt "calloutpage|extended_tip|extension"
msgid "Select where you want to extend the callout line from, in relation to the callout box."
-msgstr ""
+msgstr "Elektu tie, de kie vi volas etendi la klarigilan linion, rilate al la klarigila kadro."
#. CGjKD
#: cui/uiconfig/ui/calloutpage.ui:120
msgctxt "calloutpage|extended_tip|length"
msgid "Enter the length of the callout line segment that extends from the callout box to the inflection point of the line."
-msgstr ""
+msgstr "Enigu la longon de la klarigila linisegmento kiu etendiĝas de la klarigila kadro al la trafleksa punkto de la linio."
#. SFvEw
#: cui/uiconfig/ui/calloutpage.ui:133
@@ -6098,7 +6098,7 @@ msgstr "Optimuma"
#: cui/uiconfig/ui/calloutpage.ui:160
msgctxt "calloutpage|extended_tip|optimal"
msgid "Click here to display a single-angled line in an optimal way."
-msgstr ""
+msgstr "Alklaku ĉi tie por vidigi unuangulan linion en optimuma maniero."
#. dD3os
#: cui/uiconfig/ui/calloutpage.ui:180
@@ -6152,13 +6152,13 @@ msgstr "Desktre"
#: cui/uiconfig/ui/calloutpage.ui:218
msgctxt "calloutpage|extended_tip|position"
msgid "Select where you want to extend the callout line from, in relation to the callout box."
-msgstr ""
+msgstr "Elektu tie, de kie vi volas etendi la klarigilan linion, rilate al la klarigila kadro."
#. rj7LU
#: cui/uiconfig/ui/calloutpage.ui:237
msgctxt "calloutpage|extended_tip|by"
msgid "Select where you want to extend the callout line from, in relation to the callout box."
-msgstr ""
+msgstr "Elektu tie, de kie vi volas etendi la klarigilan linion, rilate al la klarigila kadro."
#. jG4AE
#: cui/uiconfig/ui/calloutpage.ui:262
@@ -6170,7 +6170,7 @@ msgstr "Interspaco:"
#: cui/uiconfig/ui/calloutpage.ui:282
msgctxt "calloutpage|extended_tip|spacing"
msgid "Enter the amount of space that you want to leave between the end of the callout line, and the callout box."
-msgstr ""
+msgstr "Enigu la kvanton da spaco lasota inter la fino de la klarigila linio, kaj la klarigila kadro."
#. wvzCN
#: cui/uiconfig/ui/calloutpage.ui:302
@@ -6194,7 +6194,7 @@ msgstr "Angula konekta linio"
#: cui/uiconfig/ui/calloutpage.ui:321
msgctxt "calloutpage|extended_tip|CalloutPage"
msgid "Click the Callout style that you want to apply to the selected callout."
-msgstr ""
+msgstr "Alklaku la Klarigilo-stilon aplikotan al la elektita klarigilo."
#. vQp3A
#: cui/uiconfig/ui/cellalignment.ui:53
@@ -6212,13 +6212,13 @@ msgstr "Referenca rando:"
#: cui/uiconfig/ui/cellalignment.ui:86
msgctxt "cellalignment|extended_tip|spinDegrees"
msgid "Enter the rotation angle from 0 to 360 for the text in the selected cell(s)."
-msgstr ""
+msgstr "Enigu la turnan angulon inter 0 kaj 360 por la teksto en la elektita(j) ĉelo(j)."
#. D2Ebb
#: cui/uiconfig/ui/cellalignment.ui:103
msgctxt "cellalignment|extended_tip|references"
msgid "Specify the cell edge from which to write the rotated text."
-msgstr ""
+msgstr "Agordu la ĉelan eĝon de kiu skribi la turnitan tekston."
#. Gwudo
#: cui/uiconfig/ui/cellalignment.ui:126
@@ -6230,7 +6230,7 @@ msgstr "Vertikale staplita"
#: cui/uiconfig/ui/cellalignment.ui:136
msgctxt "cellalignment|extended_tip|checkVertStack"
msgid "Aligns text vertically."
-msgstr ""
+msgstr "Ĝisrandigas tekston vertikale."
#. XBFYt
#: cui/uiconfig/ui/cellalignment.ui:147
@@ -6242,13 +6242,13 @@ msgstr "Aziaranĝa reĝimo"
#: cui/uiconfig/ui/cellalignment.ui:158
msgctxt "cellalignment|extended_tip|checkAsianMode"
msgid "Aligns Asian characters one below the other in the selected cell(s). If the cell contains more than one line of text, the lines are converted to text columns that are arranged from right to left. Western characters in the converted text are rotated 90 degrees to the right. Asian characters are not rotated."
-msgstr ""
+msgstr "Ĝisrandigas aziajn signojn, unu sub la alia, en la elektita(j) ĉelo(j). Se la ĉelo enhavas pli ol unu linion da teksto, la linioj konvertiĝas al tekstaj kolumnoj, kiuj aranĝiĝas de dekstre maldekstren. Okcidentaj signoj en la konvertita teksto turniĝas 90 gradojn dekstren. Aziaj signoj ne turniĝas."
#. rTfQa
#: cui/uiconfig/ui/cellalignment.ui:182
msgctxt "cellalignment|extended_tip|dialcontrol"
msgid "Click in the dial to set the text orientation."
-msgstr ""
+msgstr "Alklaku en la ciferilo por agordi la tekstan orientiĝon."
#. Kh9JE
#: cui/uiconfig/ui/cellalignment.ui:200
@@ -6266,7 +6266,7 @@ msgstr "Aŭtomata teksta ĉirkaŭfluo"
#: cui/uiconfig/ui/cellalignment.ui:246
msgctxt "cellalignment|extended_tip|checkWrapTextAuto"
msgid "Wraps text onto another line at the cell border. The number of lines depends on the width of the cell."
-msgstr ""
+msgstr "Fluigas tekston al alia linio ĉe la ĉela bordero. La nombro da linioj dependas de la larĝo de la ĉelo."
#. GDRER
#: cui/uiconfig/ui/cellalignment.ui:257
@@ -6278,7 +6278,7 @@ msgstr "Kuntiri en ĉelgrandon"
#: cui/uiconfig/ui/cellalignment.ui:267
msgctxt "cellalignment|extended_tip|checkShrinkFitCellSize"
msgid "Reduces the apparent size of the font so that the contents of the cell fit into the current cell width. You cannot apply this command to a cell that contains line breaks."
-msgstr ""
+msgstr "Reduktas la ŝajnan grandon de la tiparo por ke la enhavo de la ĉelo adaptiĝu en la aktualan ĉellarĝon. Vi ne povas apliki ĉi tiun komandon al ĉelo kiu enhavas linisaltojn."
#. Phw2T
#: cui/uiconfig/ui/cellalignment.ui:278
@@ -6290,7 +6290,7 @@ msgstr "Vortodivido ŝaltita"
#: cui/uiconfig/ui/cellalignment.ui:290
msgctxt "cellalignment|extended_tip|checkHyphActive"
msgid "Enables word hyphenation for text wrapping to the next line."
-msgstr ""
+msgstr "Ebligas vortdividon por teksto fluanta al la sekva linio."
#. pQLTe
#: cui/uiconfig/ui/cellalignment.ui:308
@@ -6308,7 +6308,7 @@ msgstr "Atributoj"
#: cui/uiconfig/ui/cellalignment.ui:383
msgctxt "cellalignment|extended_tip|spinIndentFrom"
msgid "Indents from the left edge of the cell by the amount that you enter."
-msgstr ""
+msgstr "Krommarĝeno de la maldekstra eĝo de la ĉelo laŭ la kvanto kiun vi enigis."
#. dzBtA
#: cui/uiconfig/ui/cellalignment.ui:396
@@ -6374,7 +6374,7 @@ msgstr "Dismeti"
#: cui/uiconfig/ui/cellalignment.ui:449
msgctxt "cellalignment|extended_tip|comboboxHorzAlign"
msgid "Select the horizontal alignment option that you want to apply to the cell contents."
-msgstr ""
+msgstr "Elektu la horizontalan ĝisrandigan eblon aplikotan al la ĉelenhavo."
#. Cu2BM
#: cui/uiconfig/ui/cellalignment.ui:463
@@ -6416,7 +6416,7 @@ msgstr "Dismeti"
#: cui/uiconfig/ui/cellalignment.ui:472
msgctxt "cellalignment|extended_tip|comboboxVertAlign"
msgid "Select the vertical alignment option that you want to apply to the cell contents."
-msgstr ""
+msgstr "Elektu la vertikalan ĝisrandigan eblon aplikotan al la ĉelenhavo."
#. FT9GJ
#: cui/uiconfig/ui/cellalignment.ui:495
@@ -6452,7 +6452,7 @@ msgstr "ABCD"
#: cui/uiconfig/ui/cellalignment.ui:564
msgctxt "cellalignment|extended_tip|CellAlignPage"
msgid "Sets the alignment options for the contents of the current cell, or the selected cells."
-msgstr ""
+msgstr "Agordas la ĝisrandigon por la enhavo de la aktuala ĉelo, aŭ la elektitaj ĉeloj."
#. xPtim
#: cui/uiconfig/ui/certdialog.ui:24
@@ -6470,7 +6470,7 @@ msgstr "Elekti NSS-vojon..."
#: cui/uiconfig/ui/certdialog.ui:48
msgctxt "certdialog|extended_tip|add"
msgid "Opens a file picker dialog to add a new Network Security Services Certificate directory to the list."
-msgstr ""
+msgstr "Malfermas dosierelektan dialogon por aldoni al la listo novan permesilan dosierujon, de retaj sekurecaj servoj."
#. GFGjC
#: cui/uiconfig/ui/certdialog.ui:139
@@ -6512,19 +6512,19 @@ msgstr "Atestila vojprefikso"
#: cui/uiconfig/ui/certdialog.ui:284
msgctxt "certdialog|extended_tip|CertDialog"
msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures."
-msgstr ""
+msgstr "Elektu aŭ enmeti la ĝustan dosierujon por la atestilo pri retaj sekurecaj servoj, uzotan por ciferecaj subskriboj."
#. xXVpD
#: cui/uiconfig/ui/charnamepage.ui:246
msgctxt "charnamepage|extended_tip|weststylelb-nocjk"
msgid "Select the formatting that you want to apply."
-msgstr ""
+msgstr "Elektu la formatadon aplikotan."
#. MR6Nr
#: cui/uiconfig/ui/charnamepage.ui:343
msgctxt "charnamepage|extended_tip|westsizelb-nocjk"
msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
-msgstr ""
+msgstr "Enigu aŭ elektu la tiparan grandon aplikotan. Por skaleblaj tiparoj, vi povas ankaŭ enigi dekumajn valorojn."
#. YcKtn
#: cui/uiconfig/ui/charnamepage.ui:374
@@ -6542,7 +6542,7 @@ msgstr "Lingvo:"
#: cui/uiconfig/ui/charnamepage.ui:435
msgctxt "charnamepage|extended_tip|westlanglb-nocjk"
msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
-msgstr ""
+msgstr "Agordas la lingvon kiun la literumilo uzu por la elektita teksto aŭ la teksto kiun vi tajpas. Disponeblaj lingvaj moduloj havas kontrolmarkon antaŭ si."
#. NgZJ9
#: cui/uiconfig/ui/charnamepage.ui:454
@@ -6566,19 +6566,19 @@ msgstr "Lingvo:"
#: cui/uiconfig/ui/charnamepage.ui:589
msgctxt "charnamepage|extended_tip|weststylelb-cjk"
msgid "Select the formatting that you want to apply."
-msgstr ""
+msgstr "Elektu la formatadon aplikotan."
#. 8quPQ
#: cui/uiconfig/ui/charnamepage.ui:611
msgctxt "charnamepage|extended_tip|westsizelb-cjk"
msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
-msgstr ""
+msgstr "Enigu aŭ elektu la tiparan grandon aplikotan. Por skaleblaj tiparoj, vi povas ankaŭ enigi dekumajn valorojn."
#. zCCrx
#: cui/uiconfig/ui/charnamepage.ui:642
msgctxt "charnamepage|extended_tip|westlanglb-cjk"
msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
-msgstr ""
+msgstr "Agordas la lingvon kiun la literumilo uzu por la elektita teksto aŭ la teksto kiun vi tajpas. Disponeblaj lingvaj moduloj havas kontrolmarkon antaŭ si."
#. qpSnT
#: cui/uiconfig/ui/charnamepage.ui:671
@@ -6608,19 +6608,19 @@ msgstr "Lingvo:"
#: cui/uiconfig/ui/charnamepage.ui:818
msgctxt "charnamepage|extended_tip|eaststylelb"
msgid "Select the formatting that you want to apply."
-msgstr ""
+msgstr "Elektu la formatadon aplikotan."
#. JSR99
#: cui/uiconfig/ui/charnamepage.ui:840
msgctxt "charnamepage|extended_tip|eastsizelb"
msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
-msgstr ""
+msgstr "Enigu aŭ elektu la tiparan grandon aplikotan. Por skaleblaj tiparoj, vi povas ankaŭ enigi dekumajn valorojn."
#. KLJQT
#: cui/uiconfig/ui/charnamepage.ui:870
msgctxt "charnamepage|extended_tip|eastlanglb"
msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
-msgstr ""
+msgstr "Agordas la lingvon kiun la literumilo uzu por la elektita teksto aŭ la teksto kiun vi tajpas. Disponeblaj lingvaj moduloj havas kontrolmarkon antaŭ si."
#. 5uQYn
#: cui/uiconfig/ui/charnamepage.ui:898
@@ -6650,19 +6650,19 @@ msgstr "Lingvo:"
#: cui/uiconfig/ui/charnamepage.ui:1045
msgctxt "charnamepage|extended_tip|ctlstylelb"
msgid "Select the formatting that you want to apply."
-msgstr ""
+msgstr "Elektu la formatadon aplikotan."
#. CeMCG
#: cui/uiconfig/ui/charnamepage.ui:1067
msgctxt "charnamepage|extended_tip|ctlsizelb"
msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
-msgstr ""
+msgstr "Enigu aŭ elektu la tiparan grandon aplikotan. Por skaleblaj tiparoj, vi povas ankaŭ enigi dekumajn valorojn."
#. zCKxL
#: cui/uiconfig/ui/charnamepage.ui:1097
msgctxt "charnamepage|extended_tip|ctllanglb"
msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
-msgstr ""
+msgstr "Agordas la lingvon kiun la literumilo uzu por la elektita teksto aŭ la teksto kiun vi tajpas. Disponeblaj lingvaj moduloj havas kontrolmarkon antaŭ si."
#. Nobqa
#: cui/uiconfig/ui/charnamepage.ui:1126
@@ -6686,7 +6686,7 @@ msgstr "Antaŭvido"
#: cui/uiconfig/ui/charnamepage.ui:1209
msgctxt "charnamepage|extended_tip|CharNamePage"
msgid "Specify the formatting and the font that you want to apply."
-msgstr ""
+msgstr "Agordu la formatadon kaj la tiparon aplikotajn."
#. LE7Wp
#: cui/uiconfig/ui/colorconfigwin.ui:14
@@ -7466,7 +7466,7 @@ msgstr "Teksto"
#: cui/uiconfig/ui/comment.ui:223
msgctxt "comment|extended_tip|edit"
msgid "Enter a comment for the recorded change."
-msgstr ""
+msgstr "Enigu komenton por la registrita ŝanĝo."
#. bEtYk
#: cui/uiconfig/ui/comment.ui:245
@@ -7496,7 +7496,7 @@ msgstr "Enhavo"
#: cui/uiconfig/ui/comment.ui:319
msgctxt "comment|extended_tip|CommentDialog"
msgid "Enter a comment for the recorded change."
-msgstr ""
+msgstr "Enigu komenton por la registrita ŝanĝo."
#. B73bz
#: cui/uiconfig/ui/connectortabpage.ui:62
@@ -7508,7 +7508,7 @@ msgstr "Tipo:"
#: cui/uiconfig/ui/connectortabpage.ui:79
msgctxt "connectortabpage|extended_tip|LB_TYPE"
msgid "Lists the types of connectors that are available."
-msgstr ""
+msgstr "Listigas la tipojn de konektiloj disponeblaj."
#. VnKTH
#: cui/uiconfig/ui/connectortabpage.ui:119
@@ -7532,19 +7532,19 @@ msgstr "Linio _3:"
#: cui/uiconfig/ui/connectortabpage.ui:166
msgctxt "connectortabpage|extended_tip|MTR_FLD_LINE_1"
msgid "Enter a skew value for Line 1."
-msgstr ""
+msgstr "Enigu valoron por nesimetrieco de Linio 1."
#. SGov7
#: cui/uiconfig/ui/connectortabpage.ui:184
msgctxt "connectortabpage|extended_tip|MTR_FLD_LINE_2"
msgid "Enter a skew value for Line 2."
-msgstr ""
+msgstr "Enigu valoron por nesimetrieco de Linio 2."
#. Cv7eg
#: cui/uiconfig/ui/connectortabpage.ui:202
msgctxt "connectortabpage|extended_tip|MTR_FLD_LINE_3"
msgid "Enter a skew value for Line 3."
-msgstr ""
+msgstr "Enigu valoron por nesimetrieco de Linio 3."
#. xvCfy
#: cui/uiconfig/ui/connectortabpage.ui:219
@@ -7580,25 +7580,25 @@ msgstr "Fini vertikalan:"
#: cui/uiconfig/ui/connectortabpage.ui:317
msgctxt "connectortabpage|extended_tip|MTR_FLD_HORZ_1"
msgid "Enter the amount of horizontal space you want at the beginning of the connector."
-msgstr ""
+msgstr "Enigu la kvanton da horizontala spaco kiun vi volas ĉe la komenco de la konektilo."
#. pUTnF
#: cui/uiconfig/ui/connectortabpage.ui:335
msgctxt "connectortabpage|extended_tip|MTR_FLD_HORZ_2"
msgid "Enter the amount of horizontal space you want at the end of the connector."
-msgstr ""
+msgstr "Enigu la kvanton da horizontala spaco kiun vi volas ĉe la fino de la konektilo."
#. 23o9a
#: cui/uiconfig/ui/connectortabpage.ui:353
msgctxt "connectortabpage|extended_tip|MTR_FLD_VERT_1"
msgid "Enter the amount of vertical space you want at the beginning of the connector."
-msgstr ""
+msgstr "Enigu la kvanton da vertikala spaco kiun vi volas ĉe la komenco de la konektilo."
#. 22Tvd
#: cui/uiconfig/ui/connectortabpage.ui:371
msgctxt "connectortabpage|extended_tip|MTR_FLD_VERT_2"
msgid "Enter the amount of vertical space you want at the end of the connector."
-msgstr ""
+msgstr "Enigu la kvanton da vertikala spaco kiun vi volas ĉe la fino de la konektilo."
#. idTk6
#: cui/uiconfig/ui/connectortabpage.ui:388
@@ -7622,7 +7622,7 @@ msgstr "Ekzemplo"
#: cui/uiconfig/ui/connectortabpage.ui:448
msgctxt "connectortabpage|extended_tip|ConnectorTabPage"
msgid "Sets the properties of a connector."
-msgstr ""
+msgstr "Agordas la atributojn de la konektilo."
#. ezicB
#: cui/uiconfig/ui/connpooloptions.ui:59
@@ -7634,7 +7634,7 @@ msgstr "Konekta grupigo aktivas"
#: cui/uiconfig/ui/connpooloptions.ui:68
msgctxt "extended_tip|connectionpooling"
msgid "Specifies whether the chosen connections are pooled."
-msgstr ""
+msgstr "Agordas ĉu la elektitaj konektiloj estu grupigitaj."
#. GHbky
#: cui/uiconfig/ui/connpooloptions.ui:90
@@ -7658,7 +7658,7 @@ msgstr "Aktivigi grupigon por ĉi tiu pelilo"
#: cui/uiconfig/ui/connpooloptions.ui:148
msgctxt "extended_tip|enablepooling"
msgid "Select a driver from the list and mark the Enable pooling for this driver checkbox in order to pool its connection."
-msgstr ""
+msgstr "Elektu pelilon el la listo kaj marku je Aktivigi grupigon por ĉi tiu pelila markobutono por grupigi ĝian konekton."
#. uzbLN
#: cui/uiconfig/ui/connpooloptions.ui:167
@@ -7670,7 +7670,7 @@ msgstr "Tempolimo (sekundoj)"
#: cui/uiconfig/ui/connpooloptions.ui:188
msgctxt "extended_tip|timeout"
msgid "Defines the time in seconds after which a pooled connection is freed."
-msgstr ""
+msgstr "Agordas la tempon en sekundoj post kiu grupigita konekto liberiĝu."
#. gWFKz
#: cui/uiconfig/ui/connpooloptions.ui:235
@@ -7796,7 +7796,7 @@ msgstr "_URL:"
#: cui/uiconfig/ui/cuiimapdlg.ui:114
msgctxt "cuiimapdlg|extended_tip|urlentry"
msgid "Enter the URL for the file that you want to open when you click the selected hotspot."
-msgstr ""
+msgstr "Enigu je URL por la dosiero kiu malfermiĝu kiam vi klakas al la elektita kaptejo."
#. FLKr9
#: cui/uiconfig/ui/cuiimapdlg.ui:142
@@ -7808,7 +7808,7 @@ msgstr "_Kadro:"
#: cui/uiconfig/ui/cuiimapdlg.ui:167
msgctxt "cuiimapdlg|extended_tip|frameCB"
msgid "Enter the name of the target frame that you want to open the URL in. You can also select a standard frame name that is recognized by all browsers from the list."
-msgstr ""
+msgstr "Enigu la nomon de la cela kadro en kiu vi volas malfermi je la URL. Vi povas ankaŭ elekti la nomon de normala kadro kiu estas konata de ĉiuj TTT-foliumiloj en la listo."
#. V8Zgo
#: cui/uiconfig/ui/cuiimapdlg.ui:195
@@ -7820,7 +7820,7 @@ msgstr "Nomo:"
#: cui/uiconfig/ui/cuiimapdlg.ui:214
msgctxt "cuiimapdlg|extended_tip|nameentry"
msgid "Enter a name for the image."
-msgstr ""
+msgstr "Enigu nomon por la bildo."
#. BAXQk
#: cui/uiconfig/ui/cuiimapdlg.ui:242
@@ -7832,7 +7832,7 @@ msgstr "Alternativa teksto:"
#: cui/uiconfig/ui/cuiimapdlg.ui:261
msgctxt "cuiimapdlg|extended_tip|textentry"
msgid "Enter the text that you want to display when the mouse rests on the hotspot in a browser."
-msgstr ""
+msgstr "Enigu la tekston vidigotan kiam la muso ŝvebas super la kaptejo en TTT-foliumilo."
#. bsgYj
#: cui/uiconfig/ui/cuiimapdlg.ui:289
@@ -7844,13 +7844,13 @@ msgstr "_Priskribo:"
#: cui/uiconfig/ui/cuiimapdlg.ui:318
msgctxt "cuiimapdlg|extended_tip|descTV"
msgid "Enter a description for the hotspot."
-msgstr ""
+msgstr "Enigu priskribon por la kaptejo."
#. 7LsXB
#: cui/uiconfig/ui/cuiimapdlg.ui:356
msgctxt "cuiimapdlg|extended_tip|IMapDialog"
msgid "Lists the properties for the selected hotspot."
-msgstr ""
+msgstr "Listigas la atributojn por la elektita kaptejo."
#. 8LR3s
#: cui/uiconfig/ui/customizedialog.ui:8
@@ -7910,7 +7910,7 @@ msgstr "Foliumi..."
#: cui/uiconfig/ui/databaselinkdialog.ui:99
msgctxt "extended_tip|browse"
msgid "Opens a file dialog where you can select the database file."
-msgstr ""
+msgstr "Malferas dosieran dialogon kie vi povas elekti la datumbazan dosieron."
#. kvNEy
#: cui/uiconfig/ui/databaselinkdialog.ui:112
@@ -7928,7 +7928,7 @@ msgstr "Registrita nomo:"
#: cui/uiconfig/ui/databaselinkdialog.ui:178
msgctxt "extended_tip|name"
msgid "Enter a name for the database. %PRODUCTNAME uses this name to access the database."
-msgstr ""
+msgstr "Enigu nomon por la datumbazo. %PRODUCTNAME uzos ĉi tiun nomon por aliri la datumbazon."
#. FrRyU
#: cui/uiconfig/ui/databaselinkdialog.ui:197
@@ -7940,7 +7940,7 @@ msgstr "Redakti datumbazan ligilon"
#: cui/uiconfig/ui/databaselinkdialog.ui:223
msgctxt "extended_tip|DatabaseLinkDialog"
msgid "Creates or edits an entry in the Databases tab page."
-msgstr ""
+msgstr "Kreas aŭ redaktas elementon en la langeto Datumbazoj."
#. ehaGT
#: cui/uiconfig/ui/dbregisterpage.ui:74
@@ -7964,7 +7964,7 @@ msgstr "_Nova..."
#: cui/uiconfig/ui/dbregisterpage.ui:131
msgctxt "extended_tip|new"
msgid "Opens the Database Link dialog to create a new entry."
-msgstr ""
+msgstr "Malfermas la dialogon Datumbaza ligilo, por krei novan elementon."
#. zqFjG
#: cui/uiconfig/ui/dbregisterpage.ui:143
@@ -7976,7 +7976,7 @@ msgstr "Forigi"
#: cui/uiconfig/ui/dbregisterpage.ui:150
msgctxt "extended_tip|delete"
msgid "Removes the selected entry from the list."
-msgstr ""
+msgstr "Forigas la elektitan elementon el la listo."
#. eiE2E
#: cui/uiconfig/ui/dbregisterpage.ui:162
@@ -7988,7 +7988,7 @@ msgstr "_Redakti..."
#: cui/uiconfig/ui/dbregisterpage.ui:169
msgctxt "extended_tip|edit"
msgid "Opens the Database Link dialog to edit the selected entry."
-msgstr ""
+msgstr "Malfermas la dialogon Datumbaza ligilo, por redakti la elektitan elementon."
#. Q3nF4
#: cui/uiconfig/ui/dbregisterpage.ui:194
@@ -8042,43 +8042,43 @@ msgstr "Mezuri suban objekton"
#: cui/uiconfig/ui/dimensionlinestabpage.ui:171
msgctxt "dimensionlinestabpage|extended_tip|TSB_BELOW_REF_EDGE"
msgid "Reverses the properties set in the Line area."
-msgstr ""
+msgstr "Inversigas la atributojn de la zono Linio"
#. M2qGu
#: cui/uiconfig/ui/dimensionlinestabpage.ui:190
msgctxt "dimensionlinestabpage|extended_tip|MTR_LINE_DIST"
msgid "Specifies the distance between the dimension line and the baseline (line distance = 0)."
-msgstr ""
+msgstr "Agordas la distancon inter la dimensia linio kaj la bazlinio (linia distanco = 0)."
#. 6wKTs
#: cui/uiconfig/ui/dimensionlinestabpage.ui:208
msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_HELPLINE_OVERHANG"
msgid "Specifies the length of the left and right guides starting at the baseline (line distance = 0). Positive values extend the guides above the baseline and negative values extend the guides below the baseline."
-msgstr ""
+msgstr "Agordas la longon de la maldekstra kaj dekstra gvidiloj komence ĉe la bazlinio (linia distanco = 0). Pozitivaj valoroj etendigas la gvidilojn super la bazlinio kaj negativaj valoroj etendigas la gvidilojn sub la bazlinio."
#. AdBKh
#: cui/uiconfig/ui/dimensionlinestabpage.ui:226
msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_HELPLINE_DIST"
msgid "Specifies the length of the right and left guides starting at the dimension line. Positive values extend the guides above the dimension line and negative values extend the guides below the dimension line."
-msgstr ""
+msgstr "Agordas la longon de la maldekstra kaj dekstra gvidiloj komence ĉe la bazlinio. Pozitivaj valoroj etendigas la gvidilojn super la dimensia linio kaj negativaj valoroj etendigas la gvidilojn sub la dimensia linio."
#. hFGhD
#: cui/uiconfig/ui/dimensionlinestabpage.ui:244
msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_HELPLINE1_LEN"
msgid "Specifies the length of the left guide starting at the dimension line. Positive values extend the guide below the dimension line and negative values extend the guide above the dimension line."
-msgstr ""
+msgstr "Agordas la longon de la maldekstra gvidilo komence ĉe la dimensia linio. Pozitivaj valoroj etendigas la gvidilon sub la dimensia linio kaj negativaj valoroj etendigas la gvidilon super la dimensia linio."
#. 3bQD4
#: cui/uiconfig/ui/dimensionlinestabpage.ui:262
msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_HELPLINE2_LEN"
msgid "Specifies the length of the right guide starting at the dimension line. Positive values extend the guide below the dimension line and negative values extend the guide above the dimension line."
-msgstr ""
+msgstr "Agordas la longon de la dekstra gvidilo komence ĉe la dimensia linio. Pozitivaj valoroj etendigas la gvidilon sub la dimensia linio kaj negativaj valoroj etendigas la gvidilon super la dimensia linio."
#. BKJDe
#: cui/uiconfig/ui/dimensionlinestabpage.ui:279
msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_DECIMALPLACES"
msgid "Specifies the number of decimal places used for the display of line properties."
-msgstr ""
+msgstr "Agordas la nombron da dekumaj lokoj uzataj por vidigi liniajn atributojn."
#. uruYG
#: cui/uiconfig/ui/dimensionlinestabpage.ui:296
@@ -8096,7 +8096,7 @@ msgstr "Teksta pozicio"
#: cui/uiconfig/ui/dimensionlinestabpage.ui:375
msgctxt "dimensionlinestabpage|extended_tip|CTL_POSITION"
msgid "Determines the position of the dimension text with respect to the dimension line and the guides."
-msgstr ""
+msgstr "Agordas la pozicion de la dimensia teksto rilate al la dimensia linio kaj la gvidiloj."
#. t8Ewg
#: cui/uiconfig/ui/dimensionlinestabpage.ui:391
@@ -8108,7 +8108,7 @@ msgstr "AŭtomateVertikala"
#: cui/uiconfig/ui/dimensionlinestabpage.ui:401
msgctxt "dimensionlinestabpage|extended_tip|TSB_AUTOPOSV"
msgid "Determines the optimal vertical position for the dimension text."
-msgstr ""
+msgstr "Agordas la optimuman vertikalan pozicion por la dimensia teksto."
#. KykMq
#: cui/uiconfig/ui/dimensionlinestabpage.ui:413
@@ -8120,7 +8120,7 @@ msgstr "AŭtomateHorizontala"
#: cui/uiconfig/ui/dimensionlinestabpage.ui:423
msgctxt "dimensionlinestabpage|extended_tip|TSB_AUTOPOSH"
msgid "Determines the optimal horizontal position for the dimension text."
-msgstr ""
+msgstr "Agordas la optimuman horizontalan pozicion por la dimensia teksto."
#. yQtE3
#: cui/uiconfig/ui/dimensionlinestabpage.ui:444
@@ -8132,7 +8132,7 @@ msgstr "Paralela al linio"
#: cui/uiconfig/ui/dimensionlinestabpage.ui:454
msgctxt "dimensionlinestabpage|extended_tip|TSB_PARALLEL"
msgid "Displays the text parallel to or at 90 degrees to the dimension line."
-msgstr ""
+msgstr "Vidigas la tekston paralele al aŭ ĉe 90 gradoj al la dimensia linio."
#. QNscD
#: cui/uiconfig/ui/dimensionlinestabpage.ui:466
@@ -8144,13 +8144,13 @@ msgstr "Vidigi mezurajn unuojn"
#: cui/uiconfig/ui/dimensionlinestabpage.ui:476
msgctxt "dimensionlinestabpage|extended_tip|TSB_SHOW_UNIT"
msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list."
-msgstr ""
+msgstr "Vidigas aŭ kaŝas la dimensiajn mezurunuojn. Vi povas ankaŭ elekti mezurunuon kiun vi volas vidigi el la listo."
#. EEaqi
#: cui/uiconfig/ui/dimensionlinestabpage.ui:494
msgctxt "dimensionlinestabpage|extended_tip|LB_UNIT"
msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list."
-msgstr ""
+msgstr "Vidigas aŭ kaŝas la dimensiajn mezurunuojn. Vi povas ankaŭ elekti mezurunuon kiun vi volas vidigi el la listo."
#. gX83d
#: cui/uiconfig/ui/dimensionlinestabpage.ui:512
@@ -8372,7 +8372,7 @@ msgstr "Majuskletoj"
#: cui/uiconfig/ui/effectspage.ui:122
msgctxt "effectspage|extended_tip|effectslb"
msgid "Select the font effects that you want to apply."
-msgstr ""
+msgstr "Elektu la tiprajn efektojn aplikotajn."
#. GJExJ
#: cui/uiconfig/ui/effectspage.ui:136
@@ -8396,7 +8396,7 @@ msgstr "Gravurita"
#: cui/uiconfig/ui/effectspage.ui:142
msgctxt "effectspage|extended_tip|relieflb"
msgid "Select a relief effect to apply to the selected text. The embossed relief makes the characters appear as if they are raised above the page. The engraved relief makes the characters appear as if they are pressed into the page."
-msgstr ""
+msgstr "Elektu reliefan efekton aplikotan al la elektita teksto. La reliefigo igas la signojn ŝajni esti super la paĝo. La sinkigita reliefo igas la signojn ŝajni premitaj en la paĝon."
#. G8SPK
#: cui/uiconfig/ui/effectspage.ui:156
@@ -8432,7 +8432,7 @@ msgstr "Akcento"
#: cui/uiconfig/ui/effectspage.ui:164
msgctxt "effectspage|extended_tip|emphasislb"
msgid "Select a character to display over or below the entire length of the selected text."
-msgstr ""
+msgstr "Elektu signon vidigi super aŭ sub la tuta longo de la elektita teksto."
#. Z6WHC
#: cui/uiconfig/ui/effectspage.ui:178
@@ -8450,7 +8450,7 @@ msgstr "Suba teksto"
#: cui/uiconfig/ui/effectspage.ui:183
msgctxt "effectspage|extended_tip|positionlb"
msgid "Specify where to display the emphasis marks."
-msgstr ""
+msgstr "Agordi kie vidigi la emfazajn markojn."
#. D848F
#: cui/uiconfig/ui/effectspage.ui:196
@@ -8474,7 +8474,7 @@ msgstr "Konturo"
#: cui/uiconfig/ui/effectspage.ui:232
msgctxt "effectspage|extended_tip|outlinecb"
msgid "Displays the outline of the selected characters. This effect does not work with every font."
-msgstr ""
+msgstr "Vidigas la konturon de la elektitaj signoj. Ĉi tiu efekto ne funkcias kun ĉiuj tiparoj."
#. umH7r
#: cui/uiconfig/ui/effectspage.ui:243
@@ -8486,7 +8486,7 @@ msgstr "Ombro"
#: cui/uiconfig/ui/effectspage.ui:253
msgctxt "effectspage|extended_tip|shadowcb"
msgid "Adds a shadow that casts below and to the right of the selected characters."
-msgstr ""
+msgstr "Aldonas ombron kiu falas sube kaj dekstre de la elektitaj signoj."
#. KraW7
#: cui/uiconfig/ui/effectspage.ui:264
@@ -8498,7 +8498,7 @@ msgstr "Kaŝita"
#: cui/uiconfig/ui/effectspage.ui:274
msgctxt "effectspage|extended_tip|hiddencb"
msgid "Hides the selected characters."
-msgstr ""
+msgstr "Kaŝas la elektitajn signojn."
#. GZX6U
#: cui/uiconfig/ui/effectspage.ui:306
@@ -8630,13 +8630,13 @@ msgstr "Duopa ondo"
#: cui/uiconfig/ui/effectspage.ui:407
msgctxt "effectspage|extended_tip|overlinelb"
msgid "Select the overlining style that you want to apply. To apply the overlining to words only, select the Individual Words box."
-msgstr ""
+msgstr "Elektu la superstrekan stilon aplikotan. Por apliki la superstrekon al nur la vortoj, elektu la kadron Unuopaj vortoj."
#. jbrhD
#: cui/uiconfig/ui/effectspage.ui:441
msgctxt "effectspage|extended_tip|underlinelb"
msgid "Select the underlining style that you want to apply. To apply the underlining to words only, select the Individual Words box."
-msgstr ""
+msgstr "Elektu la substrekan stilon aplikotan. Por apliki la substrekon al nur la vortoj, elektu la kadron Unuopaj vortoj."
#. FgNij
#: cui/uiconfig/ui/effectspage.ui:455
@@ -8696,7 +8696,7 @@ msgstr ""
#: cui/uiconfig/ui/effectspage.ui:519
msgctxt "effectspage|individualwordscb"
msgid "Individual words"
-msgstr "Apartaj vortoj"
+msgstr "Unuopaj vortoj"
#. AP5Gy
#: cui/uiconfig/ui/effectspage.ui:528
@@ -10455,7 +10455,7 @@ msgstr "_Formularo:"
#: cui/uiconfig/ui/hyperlinkdocpage.ui:370
msgctxt "hyperlinkdocpage|extended_tip|form"
msgid "Specifies whether the hyperlink is inserted as text or as a button."
-msgstr ""
+msgstr "Agordas ĉu la hiperligilo enmetiĝu kiel teksto aŭ kiel butono."
#. sAAC7
#: cui/uiconfig/ui/hyperlinkdocpage.ui:384
@@ -10467,13 +10467,13 @@ msgstr "Eventoj"
#: cui/uiconfig/ui/hyperlinkdocpage.ui:388
msgctxt "hyperlinkdocpage|extended_tip|script"
msgid "Opens the Assign Macro dialog, in which you can give events such as \"mouse over object\" or \"trigger hyperlink\" their own program codes."
-msgstr ""
+msgstr "Malfermas la dialogon Atribui makroon, en kiu vi povas doni al eventoj kiel \"musumi super objekto\" aŭ \"ekagigi hiperligilon\" ilian specifan programkodon."
#. TXrCH
#: cui/uiconfig/ui/hyperlinkdocpage.ui:411
msgctxt "hyperlinkdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
-msgstr ""
+msgstr "Enigu la nomon de la kadro en kiu la ligita dosiero malfermiĝu, aŭ elektu antaŭe agorditan kadron el la listo. Se vi lasas vaka ĉi tiun kampon, la ligita dosiero malfermiĝas en la aktuala foliumila fenestro."
#. frjow
#: cui/uiconfig/ui/hyperlinkdocpage.ui:434
@@ -10485,7 +10485,7 @@ msgstr "Pliaj Agordoj"
#: cui/uiconfig/ui/hyperlinkdocpage.ui:449
msgctxt "hyperlinkdocpage|extended_tip|HyperlinkDocPage"
msgid "Hyperlinks to any document or targets in documents can be edited using the Document tab from the Hyperlink dialog."
-msgstr ""
+msgstr "Eblas redakti hiperligilojn al ajna dokumento aŭ celojn en dokumentoj, per la langeto Dokumento el la dialogo Hiperligilo."
#. BpE9F
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:43
@@ -10497,7 +10497,7 @@ msgstr "_Reto"
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:53
msgctxt "hyperlinkinternetpage|extended_tip|linktyp_internet"
msgid "Creates an \"http://\" hyperlink."
-msgstr ""
+msgstr "Kreas \"http://\"-hiperligilon."
#. HybDr
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:64
@@ -10509,7 +10509,7 @@ msgstr "_FTP"
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:75
msgctxt "hyperlinkinternetpage|extended_tip|linktyp_ftp"
msgid "Creates an \"FTP://\" hyperlink."
-msgstr ""
+msgstr "Kreas \"FTP://\"-hiperligilon."
#. qgyrE
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:95
@@ -10533,13 +10533,13 @@ msgstr "_Pasvorto:"
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:143
msgctxt "hyperlinkinternetpage|extended_tip|login"
msgid "Specifies your login name, if you are working with FTP addresses."
-msgstr ""
+msgstr "Agordas vian salutnomon, se vi prilaboras FTP-adresojn."
#. cgWAc
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:160
msgctxt "hyperlinkinternetpage|extended_tip|password"
msgid "Specifies your password, if you are working with FTP addresses."
-msgstr ""
+msgstr "Agordas vian salutnomon, se vi prilaboras FTP-adresojn."
#. HHhGY
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:171
@@ -10551,13 +10551,13 @@ msgstr "Anonima _uzanto"
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:180
msgctxt "hyperlinkinternetpage|extended_tip|anonymous"
msgid "Allows you to log in to the FTP address as an anonymous user."
-msgstr ""
+msgstr "Ebligas al vi ensaluti al la FTP-adreso kiel sennoma uzanto."
#. JwfAC
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:203
msgctxt "hyperlinkinternetpage|extended_tip|target"
msgid "Enter a URL for the file that you want to open when you click the hyperlink. If you do not specify a target frame, the file opens in the current document or frame."
-msgstr ""
+msgstr "Enigu je URL por la dosiero kiun vi volas malfermi kiam vi alklakas la hiperligilon. Se vi ne agordas celan kadron, la dosiero malfermiĝas en la aktuala dokumento aŭ kadro."
#. XhMm4
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:216
@@ -10569,7 +10569,7 @@ msgstr "Teksto:"
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:233
msgctxt "hyperlinkinternetpage|extended_tip|indication"
msgid "Specifies the visible text or button caption for the hyperlink."
-msgstr ""
+msgstr "Agordas la videblan tekston aŭ butonan titolon por la hiperligilo."
#. ABK2n
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:247
@@ -10611,7 +10611,7 @@ msgstr "_Formularo:"
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:378
msgctxt "hyperlinkinternetpage|extended_tip|form"
msgid "Specifies whether the hyperlink is inserted as text or as a button."
-msgstr ""
+msgstr "Agordas ĉu la hiperligilo enmetiĝu kiel teksto aŭ kiel butono."
#. MyGFB
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:392
@@ -10623,13 +10623,13 @@ msgstr "Eventoj"
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:396
msgctxt "hyperlinkinternetpage|extended_tip|script"
msgid "Opens the Assign Macro dialog, in which you can give events such as \"mouse over object\" or \"trigger hyperlink\" their own program codes."
-msgstr ""
+msgstr "Malfermas la dialogon Atribui makroon, en kiu vi povas doni al eventoj kiel \"musumi super objekto\" aŭ \"ekagigi hiperligilon\" ilian specifan programkodon."
#. C5Hqs
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:419
msgctxt "hyperlinkinternetpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
-msgstr ""
+msgstr "Enigu la nomon de la kadro en kiu la ligita dosiero malfermiĝu, aŭ elektu antaŭe agorditan kadron el la listo. Se vi lasas vaka ĉi tiun kampon, la ligita dosiero malfermiĝas en la aktuala foliumila fenestro."
#. UKQMX
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:442
@@ -10641,7 +10641,7 @@ msgstr "Pliaj Agordoj"
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:457
msgctxt "hyperlinkinternetpage|extended_tip|HyperlinkInternetPage"
msgid "Use the Internet page of the Hyperlink dialog to edit hyperlinks with WWW or FTP addresses."
-msgstr ""
+msgstr "Uzu la interretan paĝon de la dialogo Hiperligilo, por redakti hiperligilojn kun WWW-adresoj aŭ FTP-adresoj."
#. GKAsu
#: cui/uiconfig/ui/hyperlinkmailpage.ui:44
@@ -10653,13 +10653,13 @@ msgstr "Poŝtri_cevulo:"
#: cui/uiconfig/ui/hyperlinkmailpage.ui:59
msgctxt "hyperlinkmailpage|addressbook|tooltip_text"
msgid "Data Sources..."
-msgstr ""
+msgstr "Datumaj fontoj..."
#. mZ8Wv
#: cui/uiconfig/ui/hyperlinkmailpage.ui:64
msgctxt "hyperlinkmailpage|extended_tip|addressbook"
msgid "Hides or shows the data source browser."
-msgstr ""
+msgstr "Kaŝas aŭ vidigas la datumfontan foliumilon."
#. NJi4c
#: cui/uiconfig/ui/hyperlinkmailpage.ui:79
@@ -10671,13 +10671,13 @@ msgstr "_Temo:"
#: cui/uiconfig/ui/hyperlinkmailpage.ui:97
msgctxt "hyperlinkmailpage|extended_tip|subject"
msgid "Specifies the subject that is inserted in the subject line of the new message document."
-msgstr ""
+msgstr "Agordas la temon enmetotan en la temlinion de la nova mesaĝa dokumento."
#. 8gCor
#: cui/uiconfig/ui/hyperlinkmailpage.ui:120
msgctxt "hyperlinkmailpage|extended_tip|receiver"
msgid "Assigns the specified email address to the hyperlink."
-msgstr ""
+msgstr "Agordas la donitan retadreson al la hiperligilo."
#. eCvXD
#: cui/uiconfig/ui/hyperlinkmailpage.ui:149
@@ -10707,7 +10707,7 @@ msgstr "_Nomo:"
#: cui/uiconfig/ui/hyperlinkmailpage.ui:236
msgctxt "hyperlinkmailpage|extended_tip|indication"
msgid "Specifies the visible text or button caption for the hyperlink."
-msgstr ""
+msgstr "Agordas la videblan tekston aŭ butonan titolon por la hiperligilo."
#. pJbde
#: cui/uiconfig/ui/hyperlinkmailpage.ui:252
@@ -10725,7 +10725,7 @@ msgstr "Formularo:"
#: cui/uiconfig/ui/hyperlinkmailpage.ui:290
msgctxt "hyperlinkmailpage|extended_tip|form"
msgid "Specifies whether the hyperlink is inserted as text or as a button."
-msgstr ""
+msgstr "Agordas ĉu la hiperligilo enmetiĝu kiel teksto aŭ kiel butono."
#. 7wzYs
#: cui/uiconfig/ui/hyperlinkmailpage.ui:304
@@ -10737,13 +10737,13 @@ msgstr "Eventoj"
#: cui/uiconfig/ui/hyperlinkmailpage.ui:308
msgctxt "hyperlinkmailpage|extended_tip|script"
msgid "Opens the Assign Macro dialog, in which you can give events such as \"mouse over object\" or \"trigger hyperlink\" their own program codes."
-msgstr ""
+msgstr "Malfermas la dialogon Atribui makroon, en kiu vi povas doni al eventoj kiel \"musumi super objekto\" aŭ \"ekagigi hiperligilon\" ilian specifan programkodon."
#. CwHdi
#: cui/uiconfig/ui/hyperlinkmailpage.ui:331
msgctxt "hyperlinkmailpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
-msgstr ""
+msgstr "Enigu la nomon de la kadro en kiu la ligita dosiero malfermiĝu, aŭ elektu antaŭe agorditan kadron el la listo. Se vi lasas vaka ĉi tiun kampon, la ligita dosiero malfermiĝas en la aktuala foliumila fenestro."
#. BmHDh
#: cui/uiconfig/ui/hyperlinkmailpage.ui:354
@@ -10755,7 +10755,7 @@ msgstr "Pliaj Agordoj"
#: cui/uiconfig/ui/hyperlinkmailpage.ui:369
msgctxt "hyperlinkmailpage|extended_tip|HyperlinkMailPage"
msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses."
-msgstr ""
+msgstr "En la paĝo Retpoŝto en la dialogo Hiperligilo, vi povas redakti hiperligilojn por retpoŝtaj adresoj."
#. FiqBU
#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:18
@@ -10779,7 +10779,7 @@ msgstr "_Fermi"
#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:56
msgctxt "hyperlinkmarkdialog|extended_tip|close"
msgid "Once the hyperlink has been completely entered, click on Close to set the link and leave the dialog."
-msgstr ""
+msgstr "Kiam la hiperligilo estas komplete enigita, alklaku al Fermi, por agordi la ligilon kaj fermi la dialogon."
#. P5DCe
#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:122
@@ -10791,7 +10791,7 @@ msgstr "Marki arbon"
#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:123
msgctxt "hyperlinkmarkdialog|extended_tip|TreeListBox"
msgid "Specifies the position in the target document where you wish to jump to."
-msgstr ""
+msgstr "Agordas la pozicion en la cela dokumento, al kie vi volas salti."
#. tHygQ
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:59
@@ -10803,7 +10803,7 @@ msgstr "Redakti nun"
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:69
msgctxt "hyperlinknewdocpage|extended_tip|editnow"
msgid "Specifies that the new document is created and immediately opened for editing."
-msgstr ""
+msgstr "Agordas ke la nova dokumento kreiĝŭ kaj tuj malfermiĝu por redaktiĝi."
#. YAeDk
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:80
@@ -10815,7 +10815,7 @@ msgstr "Redakti poste"
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:91
msgctxt "hyperlinknewdocpage|extended_tip|editlater"
msgid "Specifies that the document is created but it is not immediately opened."
-msgstr ""
+msgstr "Agordas ke la dokumento kreiĝu sed ne tuj malfermiĝu."
#. DqCc6
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:111
@@ -10833,7 +10833,7 @@ msgstr "Elekti vojprefikson"
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:131
msgctxt "hyperlinknewdocpage|extended_tip|create"
msgid "Opens the Select Path dialog, where you can select a path."
-msgstr ""
+msgstr "Malfermas la dialogon Elekti vojprefikson, kie vi povas elekti vojprefikson."
#. NKd9R
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:146
@@ -10845,13 +10845,13 @@ msgstr "Tipo de dosiero:"
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:171
msgctxt "hyperlinknewdocpage|extended_tip|path"
msgid "Enter a URL for the file that you want to open when you click the hyperlink."
-msgstr ""
+msgstr "Enigu je URL por la dosiero kiu malfermiĝu kiam vi alklakas la hiperligilon."
#. Ee4g2
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:211
msgctxt "hyperlinknewdocpage|extended_tip|types"
msgid "Specifies the file type for the new document."
-msgstr ""
+msgstr "Agordas la tipon por la nova dosiero."
#. 9TYuE
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:239
@@ -10881,7 +10881,7 @@ msgstr "_Nomo:"
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:326
msgctxt "hyperlinknewdocpage|extended_tip|indication"
msgid "Specifies the visible text or button caption for the hyperlink."
-msgstr ""
+msgstr "Agordas la videblan tekston aŭ butonan titolon por la hiperligilo."
#. FExJ9
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:342
@@ -10899,7 +10899,7 @@ msgstr "_Formularo:"
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:379
msgctxt "hyperlinknewdocpage|extended_tip|form"
msgid "Specifies whether the hyperlink is inserted as text or as a button."
-msgstr ""
+msgstr "Agordas ĉu la hiperligilo enmetiĝu kiel teksto aŭ kiel butono."
#. 5xVHb
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:393
@@ -10911,13 +10911,13 @@ msgstr "Eventoj"
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:397
msgctxt "hyperlinknewdocpage|extended_tip|script"
msgid "Opens the Assign Macro dialog, in which you can give events such as \"mouse over object\" or \"trigger hyperlink\" their own program codes."
-msgstr ""
+msgstr "Malfermas la dialogon Atribui makroon, en kiu vi povas doni al eventoj kiel \"musumi super objekto\" aŭ \"ekagigi hiperligilon\" ilian specifan programkodon."
#. rXaNm
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:420
msgctxt "hyperlinknewdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
-msgstr ""
+msgstr "Enigu la nomon de la kadro en kiu la ligita dosiero malfermiĝu, aŭ elektu antaŭe agorditan kadron el la listo. Se vi lasas vaka ĉi tiun kampon, la ligita dosiero malfermiĝas en la aktuala foliumila fenestro."
#. MS2Cn
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:443
@@ -10929,7 +10929,7 @@ msgstr "Pliaj agordoj"
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:458
msgctxt "hyperlinknewdocpage|extended_tip|HyperlinkNewDocPage"
msgid "Use the New Document tab from the Hyperlink dialog to set up a hyperlink to a new document and create the new document simultaneously."
-msgstr ""
+msgstr "Uzu la langeton Nova dokumento, el la dialogo Hiperligilo, por krei hiperligilon al nova dokumento kaj samtempe krei la novan dokumenton."
#. XkDqc
#: cui/uiconfig/ui/hyphenate.ui:18
@@ -11035,7 +11035,7 @@ msgstr "I_mportado..."
#: cui/uiconfig/ui/iconselectordialog.ui:175
msgctxt "iconselectordialog|extended_tip|importButton"
msgid "Adds new icons to the list of icons. You see a file open dialog that imports the selected icon or icons into the internal icon directory of %PRODUCTNAME."
-msgstr ""
+msgstr "Aldonas novajn bildsimbolojn al la listo de bildsimboloj. Vi vidas dosiermalferman dialogon kiu importas la elektitan bildsimbolo(j)n en la internan bildsimbolan dosierujon de %PRODUCTNAME."
#. 46d7Z
#: cui/uiconfig/ui/iconselectordialog.ui:187
@@ -11047,7 +11047,7 @@ msgstr "Forigi..."
#: cui/uiconfig/ui/iconselectordialog.ui:194
msgctxt "iconselectordialog|extended_tip|deleteButton"
msgid "Click to remove the selected icon from the list. Only user-defined icons can be removed."
-msgstr ""
+msgstr "Alklaku por forigi la elektitan bildsimbolon el la listo. Eblas forigi nur propre agorditajn bildsimbolojn."
#. C4HU9
#: cui/uiconfig/ui/iconselectordialog.ui:223
@@ -11071,13 +11071,13 @@ msgstr "Atributoj de glita kadro"
#: cui/uiconfig/ui/insertfloatingframe.ui:106
msgctxt "insertfloatingframe|extended_tip|edname"
msgid "Enter a name for the floating frame. The name cannot contain spaces, special characters, or begin with an underscore (_)."
-msgstr ""
+msgstr "Enigu nomon por la glita kadro. La nomo ne povas enhavi spacetojn, specialajn signojn, aŭ komencu per subskribo (_)."
#. dxeqd
#: cui/uiconfig/ui/insertfloatingframe.ui:126
msgctxt "insertfloatingframe|extended_tip|edurl"
msgid "Enter the path and the name of the file that you want to display in the floating frame. You can also click the Browse button and locate the file that you want to display."
-msgstr ""
+msgstr "Enigu la vojprefikson kaj la nomon de la dosiero vidigota en la glisa kadro. Vi povas ankaŭ alklaki la butonon Foliumi, kaj trovi la dosieron vidigotan."
#. 6Zg6E
#: cui/uiconfig/ui/insertfloatingframe.ui:141
@@ -11101,7 +11101,7 @@ msgstr "Foliumi..."
#: cui/uiconfig/ui/insertfloatingframe.ui:170
msgctxt "insertfloatingframe|extended_tip|buttonbrowse"
msgid "Locate the file that you want to display in the selected floating frame, and then click Open."
-msgstr ""
+msgstr "Trovu la dosieron vidigotan en la elektita glisa kadro, kaj klaku al Malfermi."
#. CFNgz
#: cui/uiconfig/ui/insertfloatingframe.ui:211
@@ -11113,7 +11113,7 @@ msgstr "Ŝaltita"
#: cui/uiconfig/ui/insertfloatingframe.ui:221
msgctxt "insertfloatingframe|extended_tip|scrollbaron"
msgid "Displays the scrollbar for the floating frame."
-msgstr ""
+msgstr "Vidigas la rulumilon por la glisa kadro."
#. RTCXH
#: cui/uiconfig/ui/insertfloatingframe.ui:233
@@ -11125,7 +11125,7 @@ msgstr "For"
#: cui/uiconfig/ui/insertfloatingframe.ui:243
msgctxt "insertfloatingframe|extended_tip|scrollbaroff"
msgid "Hides the scrollbar for the floating frame."
-msgstr ""
+msgstr "Kaŝas la rulumilon por la glisa kadro."
#. iucHE
#: cui/uiconfig/ui/insertfloatingframe.ui:255
@@ -11137,7 +11137,7 @@ msgstr "Aŭtomata"
#: cui/uiconfig/ui/insertfloatingframe.ui:265
msgctxt "insertfloatingframe|extended_tip|scrollbarauto"
msgid "Mark this option if the currently active floating frame can have a scrollbar when needed."
-msgstr ""
+msgstr "Marku ĉi tiun eblon se la aktuale aktiva glisa kadro povas havi rulumilon kiam bezonatan."
#. NTDhm
#: cui/uiconfig/ui/insertfloatingframe.ui:283
@@ -11155,7 +11155,7 @@ msgstr "Ŝaltita"
#: cui/uiconfig/ui/insertfloatingframe.ui:326
msgctxt "insertfloatingframe|extended_tip|borderon"
msgid "Displays the border of the floating frame."
-msgstr ""
+msgstr "Vidigas la borderon de la glisa kadro."
#. P9vwv
#: cui/uiconfig/ui/insertfloatingframe.ui:338
@@ -11167,7 +11167,7 @@ msgstr "For"
#: cui/uiconfig/ui/insertfloatingframe.ui:348
msgctxt "insertfloatingframe|extended_tip|borderoff"
msgid "Hides the border of the floating frame."
-msgstr ""
+msgstr "Kaŝas la borderon de la glisa kadro."
#. xBDSb
#: cui/uiconfig/ui/insertfloatingframe.ui:369
@@ -11191,13 +11191,13 @@ msgstr "Alto:"
#: cui/uiconfig/ui/insertfloatingframe.ui:436
msgctxt "insertfloatingframe|extended_tip|width"
msgid "Enter the amount of horizontal space that you want to leave between the right and the left edges of the floating frame and the contents of the frame. Both documents inside and outside the floating frame must be HTML documents."
-msgstr ""
+msgstr "Enigu la kvanton da horizontala spaco lasota inter la dekstra kaj maldekstra eĝoj de la glisa kadro kaj la enhavo de la kadro. Ambaŭ dokumentoj en kaj ekster la glisa kadro devas esti HTML-dokumentoj."
#. R35J9
#: cui/uiconfig/ui/insertfloatingframe.ui:454
msgctxt "insertfloatingframe|extended_tip|height"
msgid "Enter the amount of vertical space that you want to leave between the top and bottom edges of the floating frame and the contents of the frame. Both documents inside and outside the floating frame must be HTML documents."
-msgstr ""
+msgstr "Enigu la kvanton da vertikala spaco lasota inter la supra kaj malsupra eĝoj de la glisa kadro kaj la enhavo de la kadro. Ambaŭ dokumentoj en kaj ekster la glisa kadro devas esti HTML-dokumentoj."
#. EEPAq
#: cui/uiconfig/ui/insertfloatingframe.ui:465
@@ -11209,7 +11209,7 @@ msgstr "Apriora"
#: cui/uiconfig/ui/insertfloatingframe.ui:474
msgctxt "insertfloatingframe|extended_tip|defaultwidth"
msgid "Applies the default horizontal spacing."
-msgstr ""
+msgstr "Aplikas la aprioran horizontalan interspacon."
#. dQ8BY
#: cui/uiconfig/ui/insertfloatingframe.ui:485
@@ -11221,7 +11221,7 @@ msgstr "Apriora"
#: cui/uiconfig/ui/insertfloatingframe.ui:494
msgctxt "insertfloatingframe|extended_tip|defaultheight"
msgid "Applies the default vertical spacing."
-msgstr ""
+msgstr "Aplikas la aprioran vertikalan interspacon."
#. YqkF7
#: cui/uiconfig/ui/insertfloatingframe.ui:511
@@ -11233,7 +11233,7 @@ msgstr "Ŝtopado"
#: cui/uiconfig/ui/insertfloatingframe.ui:551
msgctxt "insertfloatingframe|extended_tip|InsertFloatingFrameDialog"
msgid "Changes the properties of the selected floating frame. Floating frames work best when they contain an html document, and when they are inserted in another html document."
-msgstr ""
+msgstr "Ŝanĝas la atributojn de la elektita glisa kadro. Glisaj kadroj plej bone funkcias kiam ili enhavas HTML-dokumenton, kaj kiam ili enmetiĝas en alian HTML-dokumenton."
#. DHyVM
#: cui/uiconfig/ui/insertoleobject.ui:16
@@ -11275,7 +11275,7 @@ msgstr "Ligi al dosiero"
#: cui/uiconfig/ui/insertoleobject.ui:266
msgctxt "insertoleobject|extended_tip|linktofile"
msgid "Enable this checkbox to insert the OLE object as a link to the original file. If this checkbox is not enabled, the OLE object will be embedded into your document."
-msgstr ""
+msgstr "Ŝaltu ĉi tiun markobutonon por enmeti la OLE-objekton kiel ligilon al la origina dosiero. Se ĉi tiu markobutono ne estas ŝaltita, la OLE-objekto enkorpiĝos en vian dokumenton."
#. G8yfb
#: cui/uiconfig/ui/insertoleobject.ui:277
@@ -11293,7 +11293,7 @@ msgstr "Dosiero"
#: cui/uiconfig/ui/insertoleobject.ui:332
msgctxt "insertoleobject|extended_tip|InsertOLEObjectDialog"
msgid "Inserts an OLE object into the current document. The OLE object is inserted as a link or an embedded object."
-msgstr ""
+msgstr "Enmetas OLE-objekton en la aktualan dokumenton. La OLE-objekto enmetiĝas kiel ligilo aŭ kiel enkorpigita objekto."
#. BCgnf
#: cui/uiconfig/ui/insertrowcolumn.ui:15
@@ -11365,7 +11365,7 @@ msgstr "Atribuitaj dosierujoj kaj arĥivoj"
#: cui/uiconfig/ui/javaclasspathdialog.ui:158
msgctxt "extended_tip|paths"
msgid "Specifies the location of Java classes or Java class libraries."
-msgstr ""
+msgstr "Agordas la lokon de Ĝava-klasoj aŭ Ĝavaklasaj bibliotekoj."
#. 5cgAY
#: cui/uiconfig/ui/javaclasspathdialog.ui:185
@@ -11377,7 +11377,7 @@ msgstr "Enmeti arĥivon..."
#: cui/uiconfig/ui/javaclasspathdialog.ui:192
msgctxt "extended_tip|archive"
msgid "Select an archive file in jar or zip format and add the file to the class path."
-msgstr ""
+msgstr "Elektu arkivan dosieron en formato .jar aŭ .zip, kaj aldonu la dosieron al la klasa vojprefikso."
#. LBBVG
#: cui/uiconfig/ui/javaclasspathdialog.ui:204
@@ -11389,7 +11389,7 @@ msgstr "Enmeti dosierujon"
#: cui/uiconfig/ui/javaclasspathdialog.ui:211
msgctxt "extended_tip|folder"
msgid "Select a folder and add the folder to the class path."
-msgstr ""
+msgstr "Elektu dosierujon kaj aldonu ĝin al la klasa vojprefikso."
#. YNHm3
#: cui/uiconfig/ui/javaclasspathdialog.ui:223
@@ -11401,13 +11401,13 @@ msgstr "Forigi"
#: cui/uiconfig/ui/javaclasspathdialog.ui:230
msgctxt "extended_tip|remove"
msgid "Select an archive or a folder in the list and click Remove to remove the object from the class path."
-msgstr ""
+msgstr "Elektu arkivon aŭ dosierujon en la listo kaj alklaku al Forigi por forigi ĝin el la klasa vojprefikso."
#. De7GF
#: cui/uiconfig/ui/javaclasspathdialog.ui:266
msgctxt "extended_tip|JavaClassPath"
msgid "Specifies the location of Java classes or Java class libraries."
-msgstr ""
+msgstr "Agordas la lokon de Ĝava-klasoj aŭ Ĝavaklasaj bibliotekoj."
#. LU9ad
#: cui/uiconfig/ui/javastartparametersdialog.ui:16
@@ -11425,7 +11425,7 @@ msgstr "Ĝava komenca parametro"
#: cui/uiconfig/ui/javastartparametersdialog.ui:123
msgctxt "extended_tip|parameterfield"
msgid "Enter a start parameter for a JRE as you would on a command line. Click Assign to add the parameter to the list of available start parameters."
-msgstr ""
+msgstr "Enigu komencan parametron por JRE, kiel oni farus ĉe la komanda linio. Klaku al Atribui por aldoni la parametron al la listo de disponeblaj komencaj parametroj."
#. bbrtf
#: cui/uiconfig/ui/javastartparametersdialog.ui:136
@@ -11437,7 +11437,7 @@ msgstr "Atribuitaj komencaj parametroj"
#: cui/uiconfig/ui/javastartparametersdialog.ui:178
msgctxt "extended_tip|assignlist"
msgid "Lists the assigned JRE start parameters. To remove a start parameter, select the parameter, and then click Remove."
-msgstr ""
+msgstr "Listigas la atribuitajn JRE-parametrojn. Por forigi komencan parametron, elektu la parametron, kaj klaku al Forigi."
#. 87Ysi
#: cui/uiconfig/ui/javastartparametersdialog.ui:193
@@ -11455,7 +11455,7 @@ msgstr "Aldoni"
#: cui/uiconfig/ui/javastartparametersdialog.ui:212
msgctxt "extended_tip|assignbtn"
msgid "Adds the current JRE start parameter to the list."
-msgstr ""
+msgstr "Aldonas la aktualan JRE-parametron al la listo."
#. sNSWD
#: cui/uiconfig/ui/javastartparametersdialog.ui:229
@@ -11467,7 +11467,7 @@ msgstr "Redakti"
#: cui/uiconfig/ui/javastartparametersdialog.ui:237
msgctxt "extended_tip|editbtn"
msgid "Opens a dialog where the selected JRE start parameter can be edited."
-msgstr ""
+msgstr "Malfermas dialogon kie redakti la elektitan komencan JRE-parametron."
#. fUGmG
#: cui/uiconfig/ui/javastartparametersdialog.ui:249
@@ -11479,7 +11479,7 @@ msgstr "Forigi"
#: cui/uiconfig/ui/javastartparametersdialog.ui:257
msgctxt "extended_tip|removebtn"
msgid "Deletes the selected JRE start parameter."
-msgstr ""
+msgstr "Forigas la elektitan komencan JRE-parametron."
#. RdoKs
#: cui/uiconfig/ui/linedialog.ui:8
@@ -11871,7 +11871,7 @@ msgstr "Agordita ago"
#: cui/uiconfig/ui/macroassignpage.ui:100
msgctxt "macroassignpage|extended_tip|assignments"
msgid "The big list box lists the events and the assigned macros. After you selected the location in the Save In list box, select an event in the big list box. Then click Assign Macro."
-msgstr ""
+msgstr "La granda listujo listigas la eventojn kaj la atribuitajn makroojn. Elektinte la lokon en la listujo Konservi, elektu eventon en la granda listujo. Klaku al Atribui makroon."
#. jfate
#: cui/uiconfig/ui/macroassignpage.ui:113
@@ -11889,7 +11889,7 @@ msgstr "Makroo..."
#: cui/uiconfig/ui/macroassignpage.ui:153
msgctxt "macroassignpage|extended_tip|assign"
msgid "Opens the Macro Selector to assign a macro to the selected event."
-msgstr ""
+msgstr "Malfermas je Elekti makroon por atribui makroon al la elektita evento."
#. nhxq7
#: cui/uiconfig/ui/macroassignpage.ui:165
@@ -11907,7 +11907,7 @@ msgstr "Forigi"
#: cui/uiconfig/ui/macroassignpage.ui:186
msgctxt "macroassignpage|extended_tip|delete"
msgid "Deletes the macro or component assignment for the selected event."
-msgstr ""
+msgstr "Forigas la makroon aŭ elementan atribuon por la elektita evento."
#. CqT9E
#: cui/uiconfig/ui/macroassignpage.ui:204
@@ -12069,7 +12069,7 @@ msgstr "Priskribo de la aktuale elektita funkcio."
#: cui/uiconfig/ui/menuassignpage.ui:291
msgctxt "menuassignpage|extended_tip|desc"
msgid "The text box contains a short description of the selected command."
-msgstr ""
+msgstr "La teksta kadro enhavas mallongan priskribon de la elektita komando."
#. qiiBX
#: cui/uiconfig/ui/menuassignpage.ui:308
@@ -12081,7 +12081,7 @@ msgstr "Priskribo"
#: cui/uiconfig/ui/menuassignpage.ui:361
msgctxt "menuassignpage|extended_tip|functions"
msgid "Displays the results of the combination of the search string and category of the desired function."
-msgstr ""
+msgstr "Vidigas la rezultojn de la kombinaĵo de la serĉata teksto kaj la kategorio de la dezirata funkcio."
#. wYjEi
#: cui/uiconfig/ui/menuassignpage.ui:378
@@ -12093,7 +12093,7 @@ msgstr "Disponeblaj komandoj"
#: cui/uiconfig/ui/menuassignpage.ui:394
msgctxt "menuassignpage|extended_tip|commandcategorylist"
msgid "Select the menu command category in the drop-down list to restrict the search of commands or scroll the list below. Macros and styles commands are in the bottom of the list."
-msgstr ""
+msgstr "Elektu la kategorion de la menua komando en la fallisto por limigi la serĉon de komandoj aŭ rulumu la suban liston."
#. ZrMmi
#: cui/uiconfig/ui/menuassignpage.ui:409
@@ -12111,13 +12111,13 @@ msgstr "Entajpu por serĉi"
#: cui/uiconfig/ui/menuassignpage.ui:426
msgctxt "menuassignpage|extended_tip|searchEntry"
msgid "Enter a string in the text box to narrow the search of commands."
-msgstr ""
+msgstr "Enigu ĉenon en la tekstujo por limigi la serĉon de komandoj,"
#. 7gtLC
#: cui/uiconfig/ui/menuassignpage.ui:450
msgctxt "menuassignpage|extended_tip|savein"
msgid "Select the location where the menu is to be attached. If attached to a %PRODUCTNAME module, the menu is available for all files opened in that module. If attached to the file, the menu will be available only when that file is opened and active."
-msgstr ""
+msgstr "Eleku la lokon kie alligi la menuon. Se alligita al %PRODUCTNAME-modulo, la menuo disponeblas por ĉiuj dosieroj malfermitaj en tiu modulo. Se alligita al la dosiero, la menuo disponeblos nur kiam tiu dosiero estas malfermita kaj aktiva."
#. D35vJ
#: cui/uiconfig/ui/menuassignpage.ui:461
@@ -12129,7 +12129,7 @@ msgstr "Funkcio"
#: cui/uiconfig/ui/menuassignpage.ui:493
msgctxt "menuassignpage|extended_tip|toplevellist"
msgid "Select the menu where the customization is to be applied. The current set of functions is displayed in the box below."
-msgstr ""
+msgstr "Elektu la menuon kie apliki la adapton. La aktuala funkciaro vidiĝas en la suba kadro."
#. QN5Bd
#: cui/uiconfig/ui/menuassignpage.ui:514
@@ -12189,7 +12189,7 @@ msgstr "Aldoni eron"
#: cui/uiconfig/ui/menuassignpage.ui:796
msgctxt "menuassignpage|extended_tip|add"
msgid "Click on the right arrow button to select a function on the left display box and copy to the right display box. This will add the function to the selected menu."
-msgstr ""
+msgstr "Klaku al la dekstrena sagobutono por elekti funkcion en la maldekstra vidiga kadro kaj kopiu al la dekstra vidiga kadro. Tio aldonos la funkcion al la elektita menuo."
#. iree8
#: cui/uiconfig/ui/menuassignpage.ui:822
@@ -12201,7 +12201,7 @@ msgstr "Forigi eron"
#: cui/uiconfig/ui/menuassignpage.ui:832
msgctxt "menuassignpage|extended_tip|remove"
msgid "Click on the left arrow button to remove the selected command from the current menu."
-msgstr ""
+msgstr "Klaku al la maldekstrena sagobutono por forigi la elektitan komandon el la aktuala menuo."
#. t7BYP
#: cui/uiconfig/ui/menuassignpage.ui:865
@@ -12213,7 +12213,7 @@ msgstr "Movi supren"
#: cui/uiconfig/ui/menuassignpage.ui:869
msgctxt "menuassignpage|extended_tip|up"
msgid "Click on the Up or Down arrows on the right to move the selected command upward or downward in the list of displayed menu commands."
-msgstr ""
+msgstr "Klaku al la suprena aŭ malsuprena sagoj dekstre por movi la elektitan komandon supren aŭ malsupren en la listo de vidigitaj menuaj komandoj."
#. S6K2N
#: cui/uiconfig/ui/menuassignpage.ui:883
@@ -12225,7 +12225,7 @@ msgstr "Movi malsupren"
#: cui/uiconfig/ui/menuassignpage.ui:887
msgctxt "menuassignpage|extended_tip|down"
msgid "Click on the Up or Down arrows on the right to move the selected command upward or downward in the list of displayed menu commands."
-msgstr ""
+msgstr "Klaku al la suprena aŭ malsuprena sagoj dekstre por movi la elektitan komandon supren aŭ malsupren en la listo de vidigitaj menuaj komandoj."
#. fto8m
#: cui/uiconfig/ui/menuassignpage.ui:907
@@ -12255,7 +12255,7 @@ msgstr "Adapti"
#: cui/uiconfig/ui/menuassignpage.ui:1005
msgctxt "menuassignpage|extended_tip|MenuAssignPage"
msgid "Lets you customize %PRODUCTNAME menus for all modules."
-msgstr ""
+msgstr "Ebligas al vi adapti %PRODUCTNAME-menuojn por ĉiuj moduloj."
#. Mcir5
#: cui/uiconfig/ui/mosaicdialog.ui:21
@@ -12267,7 +12267,7 @@ msgstr "Mozaiko"
#: cui/uiconfig/ui/mosaicdialog.ui:163
msgctxt "mosaicdialog|extended_tip|width"
msgid "Defines the width of the individual tiles."
-msgstr ""
+msgstr "Agordas la larĝon de la unuopaj kaheloj."
#. yVvs9
#: cui/uiconfig/ui/mosaicdialog.ui:176
@@ -12285,7 +12285,7 @@ msgstr "2"
#: cui/uiconfig/ui/mosaicdialog.ui:207
msgctxt "mosaicdialog|extended_tip|height"
msgid "Defines the height of the individual tiles."
-msgstr ""
+msgstr "Agordas la alton de la unuopaj kaheloj."
#. Ca8nA
#: cui/uiconfig/ui/mosaicdialog.ui:220
@@ -12303,7 +12303,7 @@ msgstr "Plibonigi eĝojn"
#: cui/uiconfig/ui/mosaicdialog.ui:247
msgctxt "mosaicdialog|extended_tip|edges"
msgid "Enhances, or sharpens, the edges of the object."
-msgstr ""
+msgstr "Plibonigas, aŭ pliakrigas, la eĝojn de la objekto."
#. LKQEa
#: cui/uiconfig/ui/mosaicdialog.ui:270
@@ -12315,7 +12315,7 @@ msgstr "Parametroj"
#: cui/uiconfig/ui/mosaicdialog.ui:295
msgctxt "mosaicdialog|extended_tip|MosaicDialog"
msgid "Joins small groups of pixels into rectangular areas of the same color."
-msgstr ""
+msgstr "Unuigas malgrandajn grupojn de bilderoj en ortangulajn zonojn de la sama koloro."
#. NcNCG
#: cui/uiconfig/ui/movemenu.ui:26
@@ -12333,7 +12333,7 @@ msgstr "Nomo de menuo:"
#: cui/uiconfig/ui/movemenu.ui:129
msgctxt "movemenu|extended_tip|menuname"
msgid "Enter a name for the menu. To specify a letter in the name as an accelerator key, enter a tilde (~) before the letter."
-msgstr ""
+msgstr "Enigu nomon por la menuo. Por agordi literon en la nomo kiel fulmoklavo, enigu tildon (~) antaŭ la litero."
#. YV2LE
#: cui/uiconfig/ui/movemenu.ui:158
@@ -12357,7 +12357,7 @@ msgstr "Malsupren"
#: cui/uiconfig/ui/movemenu.ui:300
msgctxt "movemenu|extended_tip|MoveMenuDialog"
msgid "Moves the selected menu entry up one position or down one position in the menu when you click an arrow button."
-msgstr ""
+msgstr "Movas la elektitan menueron supre je unu pozicio, aŭ malsupre je unu pozicio, en la menuo, kiam vi klakas sagoklavon."
#. qoE4K
#: cui/uiconfig/ui/multipathdialog.ui:22
@@ -12495,7 +12495,7 @@ msgstr "Konservi _en:"
#: cui/uiconfig/ui/numberingformatpage.ui:90
msgctxt "numberingformatpage|extended_tip|formatted"
msgid "Displays the number format code for the selected format. You can also enter a custom format."
-msgstr ""
+msgstr "Vidigas la numeran formatokodon por la elektita formato. Vi ankaŭ povas enigi propran formaton."
#. 5ATKM
#: cui/uiconfig/ui/numberingformatpage.ui:104
@@ -12507,7 +12507,7 @@ msgstr "Aldoni"
#: cui/uiconfig/ui/numberingformatpage.ui:109
msgctxt "numberingformatpage|extended_tip|add"
msgid "Adds the number format code that you entered to the user-defined category."
-msgstr ""
+msgstr "Aldonas la numeran formatokodon kiun vi enigis por la propre agordita kategorio."
#. Sjx7f
#: cui/uiconfig/ui/numberingformatpage.ui:123
@@ -12519,7 +12519,7 @@ msgstr "Redakti Komenton"
#: cui/uiconfig/ui/numberingformatpage.ui:128
msgctxt "numberingformatpage|extended_tip|edit"
msgid "Enter a comment for the selected number format, and then click outside this box."
-msgstr ""
+msgstr "Enigu komenton por la elektita numera formato, kaj klaku ekster ĉi tiu kadro."
#. YidmA
#: cui/uiconfig/ui/numberingformatpage.ui:142
@@ -12531,7 +12531,7 @@ msgstr "Forigi"
#: cui/uiconfig/ui/numberingformatpage.ui:147
msgctxt "numberingformatpage|extended_tip|delete"
msgid "Deletes the selected number format."
-msgstr ""
+msgstr "Forigas la elektitan numeran formaton."
#. BFF82
#: cui/uiconfig/ui/numberingformatpage.ui:172
@@ -12543,31 +12543,31 @@ msgstr "Komento"
#: cui/uiconfig/ui/numberingformatpage.ui:175
msgctxt "numberingformatpage|extended_tip|commented"
msgid "Adds a comment to the selected number format."
-msgstr ""
+msgstr "Aldonas komenton al la elektita numera formato."
#. XNdu6
#: cui/uiconfig/ui/numberingformatpage.ui:193
msgctxt "numberingformatpage|formatf"
msgid "_Format Code"
-msgstr ""
+msgstr "Formatkodo"
#. 5GA9p
#: cui/uiconfig/ui/numberingformatpage.ui:240
msgctxt "numberingformatpage|extended_tip|decimalsed"
msgid "Enter the number of decimal places that you want to display."
-msgstr ""
+msgstr "Enigu la nombron da dekumaj pozicioj vidigotaj."
#. VnduH
#: cui/uiconfig/ui/numberingformatpage.ui:257
msgctxt "numberingformatpage|extended_tip|denominatored"
msgid "With fraction format, enter the number of places for the denominator that you want to display."
-msgstr ""
+msgstr "Kun la frakcia formato, enigu la nombron da lokoj vidigotaj por la denominatoro."
#. zG6sE
#: cui/uiconfig/ui/numberingformatpage.ui:280
msgctxt "numberingformatpage|extended_tip|leadzerosed"
msgid "Enter the maximum number of zeroes to display in front of the decimal point."
-msgstr ""
+msgstr "Enigu la maksimuman nombron da nuloj vidigotaj antaŭ la dekuma disigilo."
#. ZiPyf
#: cui/uiconfig/ui/numberingformatpage.ui:301
@@ -12597,7 +12597,7 @@ msgstr "Negativaj nombroj ruĝigitaj"
#: cui/uiconfig/ui/numberingformatpage.ui:357
msgctxt "numberingformatpage|extended_tip|negnumred"
msgid "Changes the font color of negative numbers to red."
-msgstr ""
+msgstr "Ŝanĝas la tiparan koloron por negativaj numeroj al ruĝa."
#. 9DhkC
#: cui/uiconfig/ui/numberingformatpage.ui:375
@@ -12609,7 +12609,7 @@ msgstr "Inĝeniera natacio"
#: cui/uiconfig/ui/numberingformatpage.ui:383
msgctxt "numberingformatpage|extended_tip|engineering"
msgid "With scientific format, Engineering notation ensures that exponent is a multiple of 3."
-msgstr ""
+msgstr "Ĉe scienca formato, Inĝeniera notacio certigas ke la eksponento estas oblo de 3."
#. rrDFo
#: cui/uiconfig/ui/numberingformatpage.ui:395
diff --git a/source/eo/filter/messages.po b/source/eo/filter/messages.po
index f777246cac8..397276f6e1c 100644
--- a/source/eo/filter/messages.po
+++ b/source/eo/filter/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-15 23:35+0000\n"
+"PO-Revision-Date: 2020-11-17 20:35+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_ui-master/filtermessages/eo/>\n"
"Language: eo\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1558237894.000000\n"
#. 5AQgJ
@@ -1563,7 +1563,7 @@ msgstr "Foliumi ..."
#: filter/uiconfig/ui/testxmlfilter.ui:245
msgctxt "testxmlfilter|extended_tip|importbrowse"
msgid "Opens a file selection dialog. The selected file is opened using the current XML import filter."
-msgstr ""
+msgstr "Malfermas dosierelektan dialogon. La elektita dosiero malfermiĝas per la aktuala XML-importa filtrilo."
#. RGb9P
#: filter/uiconfig/ui/testxmlfilter.ui:256
@@ -1575,7 +1575,7 @@ msgstr "Lastatempa dosiero"
#: filter/uiconfig/ui/testxmlfilter.ui:262
msgctxt "testxmlfilter|extended_tip|recentfile"
msgid "Re-opens the document that was last opened with this dialog."
-msgstr ""
+msgstr "Remalfermas la dokumenton lastfoje malfermita per ĉi tiu dialogo."
#. WRoGk
#: filter/uiconfig/ui/testxmlfilter.ui:276
@@ -1587,7 +1587,7 @@ msgstr "Ŝablono por importo"
#: filter/uiconfig/ui/testxmlfilter.ui:291
msgctxt "testxmlfilter|extended_tip|importxsltfile"
msgid "Displays the file name of the XSLT filter that you entered on the Transformation tab page."
-msgstr ""
+msgstr "Vidigas la dosiernomon de la XSLT-filtrilo kiun vi enigis en la langeto Transformo."
#. UAfyw
#: filter/uiconfig/ui/testxmlfilter.ui:302
@@ -1599,7 +1599,7 @@ msgstr "Vidigi fonton"
#: filter/uiconfig/ui/testxmlfilter.ui:311
msgctxt "testxmlfilter|extended_tip|displaysource"
msgid "Opens the XML source of the selected document in your default XML editor after importing."
-msgstr ""
+msgstr "Malfermas la XML-fonton de la elektita dokumento en via apriora redaktilo post importo."
#. AKfAy
#: filter/uiconfig/ui/testxmlfilter.ui:325
@@ -1611,13 +1611,13 @@ msgstr "Transforma dokumento"
#: filter/uiconfig/ui/testxmlfilter.ui:340
msgctxt "testxmlfilter|extended_tip|importxslttemplate"
msgid "Displays the file name of the template that you entered on the Transformation tab page."
-msgstr ""
+msgstr "Vidigas la dosiernomon de la XSLT-filtrilo kiun vi enigis en la langeto Transformo."
#. RHRHL
#: filter/uiconfig/ui/testxmlfilter.ui:357
msgctxt "testxmlfilter|extended_tip|recentfilename"
msgid "Re-opens the document that was last opened with this dialog."
-msgstr ""
+msgstr "Remalfermas la dokumenton lastfoje malfermita per ĉi tiu dialogo."
#. 4MaaP
#: filter/uiconfig/ui/testxmlfilter.ui:381
@@ -1629,7 +1629,7 @@ msgstr "Importi"
#: filter/uiconfig/ui/testxmlfilter.ui:412
msgctxt "testxmlfilter|extended_tip|TestXMLFilterDialog"
msgid "Tests the XSLT stylesheets used by the selected XML filter."
-msgstr ""
+msgstr "Testas la XSLT-stilfoliojn uzitajn de la elektita XML-filtrilo."
#. DEJXN
#: filter/uiconfig/ui/warnpdfdialog.ui:19
@@ -1653,7 +1653,7 @@ msgstr "XML-filtrilaj agordoj"
#: filter/uiconfig/ui/xmlfiltersettings.ui:41
msgctxt "xmlfiltersettings|extended_tip|help"
msgid "Displays the help page for this dialog."
-msgstr ""
+msgstr "Vidigas la helpan paĝon por ĉi tiu dialogo."
#. CmVSC
#: filter/uiconfig/ui/xmlfiltersettings.ui:63
@@ -1677,7 +1677,7 @@ msgstr "Tipo"
#: filter/uiconfig/ui/xmlfiltersettings.ui:134
msgctxt "xmlfiltersettings|extended_tip|filterlist"
msgid "Select one or more filters, then click one of the buttons."
-msgstr ""
+msgstr "Elektu filtrilo(j)n, kaj klaku al unu el la butonoj."
#. VcMQo
#: filter/uiconfig/ui/xmlfiltersettings.ui:156
@@ -1689,7 +1689,7 @@ msgstr "_Nova..."
#: filter/uiconfig/ui/xmlfiltersettings.ui:163
msgctxt "xmlfiltersettings|extended_tip|new"
msgid "Opens a dialog with the name of a new filter."
-msgstr ""
+msgstr "Malfermas dialogon kun la nomo de nova filtrilo."
#. W6Ju3
#: filter/uiconfig/ui/xmlfiltersettings.ui:175
@@ -1701,7 +1701,7 @@ msgstr "Redakti..."
#: filter/uiconfig/ui/xmlfiltersettings.ui:182
msgctxt "xmlfiltersettings|extended_tip|edit"
msgid "Opens a dialog with the name of the selected file."
-msgstr ""
+msgstr "Malfermas dialogon kun la nomo de la elektita dosiero."
#. DAoSK
#: filter/uiconfig/ui/xmlfiltersettings.ui:194
@@ -1713,7 +1713,7 @@ msgstr "Testi XSLT-ojn..."
#: filter/uiconfig/ui/xmlfiltersettings.ui:201
msgctxt "xmlfiltersettings|extended_tip|test"
msgid "Opens a dialog with the name of the selected file."
-msgstr ""
+msgstr "Malfermas dialogon kun la nomo de la elektita dosiero."
#. FE7Za
#: filter/uiconfig/ui/xmlfiltersettings.ui:213
@@ -1725,7 +1725,7 @@ msgstr "Forigi..."
#: filter/uiconfig/ui/xmlfiltersettings.ui:220
msgctxt "xmlfiltersettings|extended_tip|delete"
msgid "Deletes the selected file after you confirm the dialog that follows."
-msgstr ""
+msgstr "Forigas la elektitan dosieron kiam vi konfirmas la dialogon sekvantan."
#. DmuTA
#: filter/uiconfig/ui/xmlfiltersettings.ui:232
@@ -1737,7 +1737,7 @@ msgstr "Konservi kiel pakaĵon..."
#: filter/uiconfig/ui/xmlfiltersettings.ui:239
msgctxt "xmlfiltersettings|extended_tip|save"
msgid "Displays a Save as dialog to save the selected file as an XSLT filter package (*.jar)."
-msgstr ""
+msgstr "Vidigas dialogon Konservi kiel, por konservi la elektitan dosieron kiel XSLT-filtrilan pakaĵon (*.jar)."
#. CuahL
#: filter/uiconfig/ui/xmlfiltersettings.ui:251
@@ -1749,13 +1749,13 @@ msgstr "Malfermi pakaĵon..."
#: filter/uiconfig/ui/xmlfiltersettings.ui:258
msgctxt "xmlfiltersettings|extended_tip|open"
msgid "Displays an Open dialog to open a filter from an XSLT filter package (*.jar)."
-msgstr ""
+msgstr "Malfermas dialogon Malfermi, por malfermi filtrilon el XSLT-filtrilan pakaĵon (*.jar)."
#. bC6ha
#: filter/uiconfig/ui/xmlfiltersettings.ui:293
msgctxt "xmlfiltersettings|extended_tip|XMLFilterSettingsDialog"
msgid "Opens the XML Filter Settings dialog, where you can create, edit, delete, and test filters to import and to export XML files."
-msgstr ""
+msgstr "Malfermas la dialogon XML-filtrilaj agordoj, kie vi povas krei, redakti, forigi, kaj testi filtrilojn por importi kaj eksporti XML-dosierojn."
#. rLZ5z
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:23
@@ -1791,37 +1791,37 @@ msgstr "Komentoj:"
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:99
msgctxt "xmlfiltertabpagegeneral|extended_tip|filtername"
msgid "Enter the name that you want to display in the list box of the XML Filter Settings dialog."
-msgstr ""
+msgstr "Enigu la nomon vidigotan en la listilo de la dialogo XML-filtrilaj agordoj."
#. yTwyU
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:117
msgctxt "xmlfiltertabpagegeneral|extended_tip|extension"
msgid "Enter the file extension to use when you open a file without specifying a filter. %PRODUCTNAME uses the file extension to determine which filter to use."
-msgstr ""
+msgstr "Enigu la dosiersufikson uzotan kiam vi malfermas dosieron sen agordi filtrilon. %PRODUCTNAME uzas la dosiersufikson por kalkuli kiun filtrilon uzi."
#. fZvBA
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:135
msgctxt "xmlfiltertabpagegeneral|extended_tip|interfacename"
msgid "Enter the name that you want to display in the File type box in file dialogs."
-msgstr ""
+msgstr "Enigu la nomon vidigotan en la kampo Tipo de dosiero, en dosieraj dialogoj."
#. BFUsA
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:158
msgctxt "xmlfiltertabpagegeneral|extended_tip|application"
msgid "Select the application that you want to use with the filter."
-msgstr ""
+msgstr "Elektu la aplikaĵon uzotan kun la fitrilo."
#. Gfrm2
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:182
msgctxt "xmlfiltertabpagegeneral|extended_tip|description"
msgid "Enter a comment (optional)."
-msgstr ""
+msgstr "Enigu komenton (malnepre)."
#. G632R
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:202
msgctxt "xmlfiltertabpagegeneral|extended_tip|XmlFilterTabPageGeneral"
msgid "Enter or edit general information for an XML filter."
-msgstr ""
+msgstr "Enigu aŭ redaktu ĝeneralan informon por XML-filtrilo."
#. FhD2n
#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:24
@@ -1833,7 +1833,7 @@ msgstr "DokTipo:"
#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:43
msgctxt "xmlfiltertabpagetransformation|extended_tip|doc"
msgid "Enter the DOCTYPE of the XML file."
-msgstr ""
+msgstr "Enigu je DOCTYPE de la XML-dosiero."
#. J5c8A
#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:56
@@ -1851,7 +1851,7 @@ msgstr "Foliumi ..."
#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:75
msgctxt "xmlfiltertabpagetransformation|extended_tip|browseexport"
msgid "Opens a file selection dialog."
-msgstr ""
+msgstr "Malfermas la dialogon por elekti dosieron."
#. oZGZS
#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:88
@@ -1869,7 +1869,7 @@ msgstr "Foliumi ..."
#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:107
msgctxt "xmlfiltertabpagetransformation|extended_tip|browseimport"
msgid "Opens a file selection dialog."
-msgstr ""
+msgstr "Malfermas la dialogon por elekti dosieron."
#. 9nV9R
#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:120
@@ -1887,25 +1887,25 @@ msgstr "Foliumi..."
#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:138
msgctxt "xmlfiltertabpagetransformation|extended_tip|browsetemp"
msgid "Opens a file selection dialog."
-msgstr ""
+msgstr "Malfermas la dialogon por elekti dosieron."
#. sjWgJ
#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:160
msgctxt "xmlfiltertabpagetransformation|extended_tip|xsltexport"
msgid "If this is an export filter, enter the file name of the XSLT stylesheet that you want to use for exporting."
-msgstr ""
+msgstr "Se tiu estas eksporta filtrilo, enigu la dosiernomon de la XSLT-stilfolion kiun vi uzos por eksporti."
#. Xgroa
#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:182
msgctxt "xmlfiltertabpagetransformation|extended_tip|xsltimport"
msgid "If this is an import filter, enter the file name of the XSLT stylesheet that you want to use for importing."
-msgstr ""
+msgstr "Se tiu estas eksporta filtrilo, enigu la dosiernomon de la XSLT-stilfolion kiun vi uzos por importi."
#. wRFNU
#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:204
msgctxt "xmlfiltertabpagetransformation|extended_tip|tempimport"
msgid "Enter the name of the template that you want to use for importing. In the template, styles are defined to display XML tags."
-msgstr ""
+msgstr "Enigu la nomon de la ŝablono uzota por importi. En la ŝablono, stiloj agordiĝas por vidigi XML-etikedojn."
#. XTDex
#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:225
@@ -1917,7 +1917,7 @@ msgstr "La filtrilo bezonas XSLT-2.0-procesoron"
#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:241
msgctxt "xmlfiltertabpagetransformation|extended_tip|XmlFilterTabPageTransformation"
msgid "Enter or edit file information for an XML filter."
-msgstr ""
+msgstr "Enigu aŭ redaktu dosieran informon por XML-filtrilo."
#. MCfGg
#: filter/uiconfig/ui/xsltfilterdialog.ui:8
@@ -1929,7 +1929,7 @@ msgstr "XML-filtrilo: %s"
#: filter/uiconfig/ui/xsltfilterdialog.ui:62
msgctxt "xsltfilterdialog|extended_tip|help"
msgid "Displays the help page for this dialog."
-msgstr ""
+msgstr "Vidigas la helpan paĝon por ĉi tiu dialogo."
#. Cvy2d
#: filter/uiconfig/ui/xsltfilterdialog.ui:127
@@ -1947,4 +1947,4 @@ msgstr "Transformo"
#: filter/uiconfig/ui/xsltfilterdialog.ui:200
msgctxt "xsltfilterdialog|extended_tip|XSLTFilterDialog"
msgid "Opens a dialog with the name of a new filter."
-msgstr ""
+msgstr "Malfermas dialogon kun la nomo de nova filtrilo."
diff --git a/source/eo/helpcontent2/source/text/scalc/01.po b/source/eo/helpcontent2/source/text/scalc/01.po
index 97ab12b463c..598b9bec68e 100644
--- a/source/eo/helpcontent2/source/text/scalc/01.po
+++ b/source/eo/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2020-08-13 17:35+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/eo/>\n"
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr ""
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/sdraw.po b/source/eo/helpcontent2/source/text/sdraw.po
index c1d6ffecae1..0a958583184 100644
--- a/source/eo/helpcontent2/source/text/sdraw.po
+++ b/source/eo/helpcontent2/source/text/sdraw.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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-01-24 14:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/eo/>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/shared/00.po b/source/eo/helpcontent2/source/text/shared/00.po
index 55781f9791a..ea6ef22c602 100644
--- a/source/eo/helpcontent2/source/text/shared/00.po
+++ b/source/eo/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-08-18 15:35+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/eo/>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "Bona ekzemplo de rilata datumbazo estas datumbazo enhavanta tabelojn por klientoj, aĉetoj, kaj fakturoj. En la tabelo Fakturo, ne troviĝas datumoj pri klientoj aŭ aĉetoj; tamen, la tabelo enhavas referencojn tra rilata ligo, aŭ rilato, al la respektivaj klientaj kaj aĉetaj tabelaj kampoj (ekzemple, la kliento-ID el la tabelo Kliento."
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>lokoregado; agordi</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "Reĝistra vero"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/eo/helpcontent2/source/text/shared/01.po b/source/eo/helpcontent2/source/text/shared/01.po
index ce01cbea598..1e8b0c64dd7 100644
--- a/source/eo/helpcontent2/source/text/shared/01.po
+++ b/source/eo/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-05 05:34+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/eo/>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr ""
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr ""
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr ""
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,13 +9376,13 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr ""
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
msgstr ""
#. 3Lq2G
@@ -9430,13 +9412,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr ""
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
msgstr ""
#. nRB3E
@@ -9466,13 +9448,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr ""
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
msgstr ""
#. F4J5u
@@ -9601,13 +9583,13 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr ""
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
msgstr ""
#. ijR7M
@@ -9709,13 +9691,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr ""
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
msgstr ""
#. ADEyJ
@@ -9745,13 +9727,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
msgstr ""
#. GqEUL
@@ -9781,13 +9763,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
msgstr ""
#. DLEGF
diff --git a/source/eo/helpcontent2/source/text/shared/02.po b/source/eo/helpcontent2/source/text/shared/02.po
index bb8174efb89..47a9c94c1bc 100644
--- a/source/eo/helpcontent2/source/text/shared/02.po
+++ b/source/eo/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-05-20 11:28+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/eo/>\n"
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Malpligrandigi krommarĝenon</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11059,13 +11059,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
msgstr ""
#. 9iqpg
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr ""
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Pligrandigi krommarĝenon</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11131,13 +11131,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
msgstr ""
#. bAyat
diff --git a/source/eo/helpcontent2/source/text/shared/optionen.po b/source/eo/helpcontent2/source/text/shared/optionen.po
index 2cc8efa9da6..a008e5dac17 100644
--- a/source/eo/helpcontent2/source/text/shared/optionen.po
+++ b/source/eo/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-02-10 17:42+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/eo/>\n"
@@ -11860,31 +11860,31 @@ msgctxt ""
msgid "Snap"
msgstr "Kapti"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "Al kaptlinioj"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
msgstr ""
#. eUCCJ
diff --git a/source/eo/helpcontent2/source/text/simpress/02.po b/source/eo/helpcontent2/source/text/simpress/02.po
index 546a3d2c42b..2b1b7434891 100644
--- a/source/eo/helpcontent2/source/text/simpress/02.po
+++ b/source/eo/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 10:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5695,40 +5695,40 @@ msgctxt ""
msgid "Exit all groups"
msgstr "Eliri ĉiujn grupojn"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Guides\">Kapti per gvidlinioj</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Bildsimbolo</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
#. oXWsX
diff --git a/source/eo/helpcontent2/source/text/swriter.po b/source/eo/helpcontent2/source/text/swriter.po
index e8e78dbf288..d01047d5674 100644
--- a/source/eo/helpcontent2/source/text/swriter.po
+++ b/source/eo/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-08-12 11:35+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/eo/>\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "De maldekstro dekstren"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">bildsimbolo de maldekstro dekstren</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "De dekstro maldekstren"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">bildsimbolo de dekstro maldekstren</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/eo/helpcontent2/source/text/swriter/01.po b/source/eo/helpcontent2/source/text/swriter/01.po
index 68e6da8c484..906c893e749 100644
--- a/source/eo/helpcontent2/source/text/swriter/01.po
+++ b/source/eo/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-08-12 11:35+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/eo/>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "Navigilo"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Malfermas la dialogon <emph>Porpoŝtaj kunfandaj ricevontoj</emph>.</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/swriter/guide.po b/source/eo/helpcontent2/source/text/swriter/guide.po
index 33451cbeae1..52d23b5d789 100644
--- a/source/eo/helpcontent2/source/text/swriter/guide.po
+++ b/source/eo/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-08-12 11:35+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/eo/>\n"
@@ -7792,50 +7792,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Alineaj krommarĝenoj</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr "Por ŝanĝi la mezurunuojn, elektu je <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferoj</item></caseinline><defaultinline><item type=\"menuitem\">Iloj - Agordaro</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME-Verkilo - Ĝenerale</item>, kaj elektu novan mezurunuon en la kampo Agordoj."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "Eblas ŝanĝi la krommarĝenojn por la aktuala alineo, aŭ por ĉiuj elektitaj alineoj, aŭ por alinea stilo."
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "Eblas ŝanĝi la krommarĝenojn por la aktuala alineo, aŭ por ĉiuj elektitaj alineoj, aŭ por alinea stilo."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "Elektu menuerojn <item type=\"menuitem\">Formato - Alineo - Krommarĝenoj kaj interspacoj</item>, por ŝanĝi la krommarĝenojn por la aktuala alineo aŭ por ĉiuj elektitaj alineoj. Oni ankaŭ povas <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">agordi krommarĝenojn per la mezurilo</link>."
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "Oni ankaŭ povas <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">agordi krommarĝenojn per la mezurilo</link>. Por vidigi la mezurilon, elektu menuerojn <item type=\"menuitem\">Vidigi - Mezurilo</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "Elektu menuerojn <item type=\"menuitem\">Formato - Alineo - Krommarĝenoj kaj interspacoj</item>, por ŝanĝi la krommarĝenojn por la aktuala alineo aŭ por ĉiuj elektitaj alineoj. Oni ankaŭ povas <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">agordi krommarĝenojn per la mezurilo</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "Oni ankaŭ povas <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">agordi krommarĝenojn per la mezurilo</link>. Por vidigi la mezurilon, elektu menuerojn <item type=\"menuitem\">Vidigi - Mezurilo</item>."
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "Dekstre alklaku alineon kaj elektu menuerojn <item type=\"menuitem\">Redakti alinean stilon - Krommarĝenoj kaj interspacoj</item> por ŝanĝi la krommarĝenojn por ĉiuj alineoj kiuj havas la saman alinean stilon."
+msgid "Positioning indents"
+msgstr ""
#. qUxKq
#: indenting.xhp
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "Krommarĝenoj kalkuliĝas rilate al la maldekstra kaj dekstra paĝaj marĝenoj. Se vi volas etendigu la alineojn en la paĝan marĝenon, entajpu negativan numeron."
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr "Por ŝanĝi la mezurunuojn, elektu je <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferoj</item></caseinline><defaultinline><item type=\"menuitem\">Iloj - Agordaro</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME-Verkilo - Ĝenerale</item>, kaj elektu novan mezurunuon en la kampo Agordoj."
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "La krommarĝenoj estas diferencaj pri al skriba direkto. Ekzemple, rigardu la valoron de krommarĝeno <item type=\"menuitem\">Antaŭteksta</item> en dekstrenaj lingvoj. La maldekstra eĝo de la alineo havas krommarĝenon rilate al la maldekstra marĝeno de la paĝo. En maldekstrenaj lingvoj, la dekstra eĝo de la alineo havas krommarĝenon rilate al la dekstra marĝeno de la paĝo."
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "Por pendanta krommarĝeno, enigu pozitivan valoron por <item type=\"menuitem\">Antaŭ teksto</item> kaj negativan valoron por <item type=\"menuitem\">Unua linio</item>."
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10233,14 +10296,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "Ŝalti/malŝalti rekonon de numeroj en tabeloj"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>numeroj; aŭtomata rekono en tekstaj tabeloj</bookmark_value> <bookmark_value>tabeloj; rekoni numerojn</bookmark_value> <bookmark_value>datoj;formati aŭtomate en tabeloj</bookmark_value> <bookmark_value>rekoni;numerojn</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10269,14 +10332,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Faru iun el la jenaj:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "Dekstre alklaku en tabela ĉelo kaj elektu je <item type=\"menuitem\">Rekono de numeroj</item>. Dum tiu funkcio estas aktiva, butonmarko vidiĝas antaŭ la komando <item type=\"menuitem\">Rekono de numeroj</item>."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10287,6 +10359,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr "Elektu menuerojn <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferoj</caseinline><defaultinline>Iloj - Agordoj</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Verkilo - Tabelo</item>, kaj marku aŭ malmarku la butonon <item type=\"menuitem\">Rekono de numeroj</item>."
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12213,6 +12294,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "Kiam oni kreas dokumenton kiu estas presota kiel broŝuro, uzu vertikalan orientiĝon por la paĝoj. Verkilo aplikas la broŝuran aranĝon kiam oni presas la dokumenton."
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12258,50 +12357,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "Se la presilo kapablas presi duflanke, kaj ĉar broŝuroj ĉiam presiĝas laŭ horizontala reĝimo, taŭgas la agordo \"duflanka - mallonga eĝo\" en la dialogo por agordi la presilon."
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
-msgstr "Reiru al la dialogo <emph>Presi</emph>, kaj alklaku je <emph>Agordaro</emph>."
+msgid "Return to <emph>Print</emph> dialog."
+msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
-msgstr "Elektu je <emph>Broŝuro</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
+msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "Por presilo kiu aŭtomate presas duflanke, specifu presi dekstrajn kaj maldekstrajn paĝojn."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Alklaku je <emph>Akcepti</emph>."
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "Se %PRODUCTNAME presas la paĝojn laŭ malĝusta sinsekvo, malfermu la dialogon <emph>Presilaj agordoj</emph>, elektu <emph>Inversigitan</emph>, kaj represu la dokumenton."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12375,6 +12474,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">Dosiero - Aspekto de paĝo</link>"
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12402,32 +12726,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Presi plurajn paĝojn sur unu folio</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
-msgstr "En la langeto <emph>Aranĝo de paĝo</emph> de la dialogo <item type=\"menuitem\">Dosiero - Presi</item>, vi povas elekti presi plurajn paĝojn en unu folio."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
+msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
-msgstr "Elektu je <emph>Dosiero - Presi</emph> kaj alklaku la langeton <emph>Aranĝo de paĝo</emph>."
+msgid "Choose <menuitem>File - Print</menuitem>"
+msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Faru iun el la jenaj:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13392,13 +13716,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/eo/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/eo/instsetoo_native/inc_openoffice/windows/msi_languages.po
index aa984f09f55..4d3953a18f8 100644
--- a/source/eo/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/eo/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-03-31 10:35+0200\n"
-"PO-Revision-Date: 2020-05-08 18:16+0000\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_ui-master/instsetoo_nativeinc_openofficewindowsmsi_languages/eo/>\n"
"Language: eo\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.10.3\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1563489833.000000\n"
#. tBfTE
@@ -284,7 +284,7 @@ msgctxt ""
"OOO_ACTIONTEXT_30\n"
"LngText.text"
msgid "Installing ODBC components"
-msgstr "Instalado de ODBC-komponaĵoj"
+msgstr "Instali ODBC-elementojn"
#. WW3QQ
#: ActionTe.ulf
diff --git a/source/eo/sc/messages.po b/source/eo/sc/messages.po
index c44f0c29a51..e99760650e1 100644
--- a/source/eo/sc/messages.po
+++ b/source/eo/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-14 19:35+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/eo/>\n"
@@ -28626,38 +28626,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Uzi presilan metrikon por formati dokumentojn"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Emfazi elektaĵon en kolumnaj/vicaj titoloj"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Ĝisdatigi referencojn dum ordigo de ĉelaro"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Eniga agordaro"
diff --git a/source/eo/sfx2/messages.po b/source/eo/sfx2/messages.po
index 9b81a239f27..a3e6a37c3b4 100644
--- a/source/eo/sfx2/messages.po
+++ b/source/eo/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-11-14 08:35+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/eo/>\n"
@@ -1652,286 +1652,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Fermi la panelon"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Doki"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Maldoki"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Pliaj agordoj"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Fermi la flankbretan dekon"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Agordaro de flanka breto"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Adapti"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Restaŭri aprioran"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Fermi la flankan breton"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarino"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Abelujo"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blua kurbo"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blukopiaj planoj"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Helblua"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Ŝike ruĝa"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokuso"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Arbarbirdo"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Prezentilo"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiro"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lumoj"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Vibra verdo"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolo"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Noktomezblua"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natura ilustraĵo"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Krajono"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Teko"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progreso"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Sunsubiro"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Aĝo"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Brilega"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Resumo"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Apriora"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderna"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderna komerca letero senserifa"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderna komerca letero serifa"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Vizitkarto kun bildo"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Simpla"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Forigi"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Vakigi ĉion"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Longo de pasvorto"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "La enigita de vi pasvorto kaŭzas problemojn pri kunfunkcipovo. Bonvolu enigi pasvorton malpli longan ol 52 bajtoj, aŭ pli longan ol 55 bajtoj."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-alklaki por malfermi hiperligilon: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Alklaki por malfermi hiperligilon: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(uzita de: %STYLELIST)"
@@ -4162,6 +4126,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Forigi..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/eo/starmath/messages.po b/source/eo/starmath/messages.po
index e34993ba44b..9f1b4d75009 100644
--- a/source/eo/starmath/messages.po
+++ b/source/eo/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-10-14 19:35+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/eo/>\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "aŭ"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "signo +"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Signo -"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "signo +-"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Signo -+"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Bulea NE"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "adicio +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Subtraho -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Multipliko (punkto)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Multipliko (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Multipliko (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Divido (oblikvo)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Divido (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Divido (frakcio)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Encirkligita streketo"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Encirkligita punkto"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Encirkligita minuso"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Encirkligita pluso"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Tensora produto"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Bulea KAJ"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Bulea AŬ"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Egalas"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Ne egalas"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Estas malpli ol"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Estas pli granda ol"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Estas malpli ol aŭ egala al"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Estas pli ol aŭ egala al"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Estas malpli ol aŭ egala al"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Estas pli ol aŭ egala al"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Estas multe malpli ol"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Estas multe pli granda ol"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Estas difinita kiel"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Kongruas kun"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Egalas proksimume"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Similas al"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Estas simila aŭ egala al"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Estas proporcia al"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Estas orta al"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Estas paralela al"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Al"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Kongruas al (maldekstra)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Kongruas al (dekstra)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Estas en"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Ne estas en"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Posedas"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Kunaĵo"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Interkovro"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Diferenco"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Subaro"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Subaro aŭ egala al"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Superaro"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Superaro aŭ egala al"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Ne subaro"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Ne subaro aŭ egala al"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Ne superaro"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Ne superaro aŭ egala al"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr "Ĝenerala funkcio"
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Absoluta valoro"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Faktorialo"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Kvadrata radiko"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N-a radiko"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Eksponenciala funkcio"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Eksponenciala funkcio"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Natura logaritmo"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logaritmo"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sinuso"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Kosinuso"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangento"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Kotangento"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arksinuso"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "arkkosinuso"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arktangento"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arkkotangento"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Hiperbola sinuso"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Hiperbola kosinuso"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Hiperbola tangento"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Hiperbola kotangento"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Inversa hiperbola sinuso"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Inversa hiperbola kosinuso"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Inversa hiperbola tangento"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Inversa hiperbola kotangento"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr "Ĝenerala operatoro"
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr "Malsupro de ĝenerala operacia malalta skribo"
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr "Supro de ĝenerala operacia alta skribo"
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr "Ĝenerala operacia (mal)alta skribo"
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Sumo"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Suma malalta skribo sube"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Suma alta skribo supre"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Suma (mal)alta skribo"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Produto"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Produta malalta skribo sube"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Produta alta skribo supre"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Produta (mal)alta skribo"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Koproduto"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Koproduta malalta skribo sube"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Koproduta alta skribo supre"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Koproduta (mal)alta skribo"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Limesoj"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Limesa malalta skribo sube"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Limesa alta skribo supre"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Limesa (mal)alta skribo"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Suba limo"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Suba limo malalta skribo sube"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Suba limo alta skribo supre"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Suba limo (mal)alta skribo"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Supra limo"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Supra limo malalta skribo sube"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Supra limo alta skribo supre"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Supra limo (mal)alta skribo"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Ekzistas"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Ne ekzistas"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Por ĉiuj"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integralo"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Integrala malalta skribo sube"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Integrala alta skribo supre"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integrala (mal)alta skribo"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Duobla integralo"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Duobla integrala malalta skribo sube"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Duobla integrala alta skribo supre"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Duobla integrala (mal)alta skribo"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Triobla integralo"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Triobla integrala malalta skribo sube"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Triobla integrala alta skribo supre"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Triobla integrala (mal)alta skribo"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Kurba integralo"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Kurba integrala malalta skribo sube"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Kurba integrala alta skribo supre"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Kurba integrala (mal)alta skribo"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Duobla kurba integralo"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Duobla kurba integrala malalta skribo sube"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Duobla kurba integrala alta skribo supre"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Duobla kurba integrala (mal)alta skribo"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Triobla kurba integralo"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Triobla kurba integrala malalta skribo sube"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Triobla kurba integrala alta skribo supre"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Triobla kurba integrala (mal)alta skribo"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Dekstrakorna supersigno"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Linio supre"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Brevo"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Inversa cirkumflekso"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Cirklo"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Punkto"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Duopa Punkto"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Triobla punkto"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Maldekstrakorna supersigno"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Cirkumflekso"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tildo"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Vektora sago"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Harpuno"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Linio malsupre"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Linio supre"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Trastreko"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Travidebla"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Grasa tiparo"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Kursiva tiparo"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Aligrandigi"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Ŝanĝi tiparon"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Koloro nigra"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Koloro blua"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Koloro verda"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Koloro ruĝa"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Koloro griza"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Koloro limekolora"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Koloro brunkarmezina"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Koloro malhelblua"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Koloro olivkolora"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Koloro purpura"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Koloro arĝenta"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Koloro bluverda"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Koloro flava"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "Koloro RVB"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Grupaj krampoj"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Rondaj Krampoj"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Rektaj krampoj"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Duoblaj rektaj krampoj"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Kurbaj krampoj"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Angulaj krampoj"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Supra plafona"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Planka"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Unuopaj linioj"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Duopaj linioj"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Operacisimbolaj krampoj"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Kurbaj krampoj (skaligeblaj)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Rektaj krampoj (skaligeblaj)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Duoblaj rektaj krampoj (skaligeblaj)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Kurbaj krampoj (skaligeblaj)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Angulaj krampoj (skaligeblaj)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Plafono (skaligebla)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Plafono (skaligebla)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Unuopaj linioj (skaligeblaj)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Duopaj linioj (skaligeblaj)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Operacisimbolaj krampoj (skaligeblaj)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Komputita ĉe"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Kurbaj krampoj supre (skaligeblaj)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Kurbaj krampoj sube (skaligeblaj)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Malalta skribo dekstre"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Potenco"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Malalta skribo maldekstre"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Alta skribo maldekstre"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Malalta skribo sube"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Alta skribo supre"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Eta breĉo"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Malplena"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Nova linio"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Vertikala stako (2 elementoj)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Vertikala stako"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Matrica stako"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Ĝisrandigi maldekstren"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Centrigi"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Ĝisrandigi dekstren"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Alef"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Malplena aro"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Reela parto"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Imaginara parto"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Infinito"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Parta"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr "Laplace-transformo"
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr "Fourier-transformo"
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Punktoj meze"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Punktoj ĝis la supro"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Punktoj ĝis la malsupro"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Punktoj malsupre"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Punktoj vertikale"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Kroĉi"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Divido (larĝa oblikvo)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Divido (larĝa deklivo)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Estas divizoro de"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Ne estas divizoro de"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Duobla sago maldekstren"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Duobla sago maldekstren kaj dekstren"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Duobla sago dekstren"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Aro de naturaj nombroj"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Aro de entjeroj"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Aro de racionalaj numeroj"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Aro de Reeloj"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Aro de kompleksaj numeroj"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Granda cirkumflekso"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Granda tildo"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Granda vektora sago"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Granda harpuno"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h-superstrekita"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambdo superstrekita"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Sago maldekstren"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Sago dekstren"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Sago supren"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Sago malsupren"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Sen spaco"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Antaŭas"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Antaŭas aŭ egalas"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Antaŭas aŭ ekvivalentas"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Sekvas"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Sekvas aŭ egalas al"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Sekvas aŭ ekvivalentas"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Ne antaŭas"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Ne sekvas"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Unuloka/Duloka operacioj"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Rilatoj"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Agordi operaciojn"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funkcioj"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operacisimboloj"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Atributoj"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Rondaj krampoj"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formatoj"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Aliaj"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Ekzemploj"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Perimetro"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Masa-energia ekvivalento"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Pitagora teoremo"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Gaŭsa distribuo"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Normala"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kursiva"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Grasa"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "nigra"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blua"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "verda"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "ruĝa"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "griza"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "limekolora"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "brunkarmezina"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "malhelblua"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olivkolora"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "purpura"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "arĝenta"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "bluverda"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "flava"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rvb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "kaŝi"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "grando"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "tiparo"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "maldekstre"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centre"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "dekstre"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Komandoj"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formulo"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Konservado de dokumento..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION formulo"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERARO: "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Neatendita signo"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Neatendita ĵetono"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' atendita"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' atendita"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' atendita"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' atendita"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Dekstra kaj maldekstra simboloj miskongruas"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fiksita', 'sanserifa', aŭ 'serifa' atenditaj"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'grando' sekvita de neatendita ĵetono"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Duobla ĝisrandigo ne permesitas"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Duopaj (mal)altaj skriboj ne permesitas"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' atendita"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Koloro bezonata"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'DEKSTRA' atendita"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Enhavo"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Titolo"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Formula teksto"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Borderoj"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Grando"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Origina grando"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Adapti al paĝo"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "Skaligi"
diff --git a/source/eo/svtools/messages.po b/source/eo/svtools/messages.po
index cba51f2cc3f..42c08ba9aa4 100644
--- a/source/eo/svtools/messages.po
+++ b/source/eo/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-04 20:47+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/eo/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Malfari: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Refari: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Ripeti: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Neformatita teksto"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Neformatita teksto [TSV-Calc]"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bitbildo (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Metadosiero de grafikila interfaco (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Riĉa Teksto-Formo (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Riĉa Teksto-Formo (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Formato de %PRODUCTNAME-Desegnilo"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Bitbildo/animacio de Starview (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Stata informo de Svx-interna ligilo"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME-ligilo (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape legosigno"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star servila formato"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star objekta formato"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Apleta objekto"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Kromaĵa objekto"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objekto de StarWriter 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objekto StarWriter 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objekto StarWriter 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objekto StarWriter/Web 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objekto de StarWriter/Web 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Objekto de StarWriter/Master 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Objekto StarWriter/Master 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objekto StarDraw"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objekto StarDraw 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objekto StarImpress 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objekto StarDraw 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objekto de StarCalc"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objekto de StarCalc 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objekto StarCalc 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objekto de StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objekto de StarChart 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objekto StarChart 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objekto StarImage"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objekto de StarImage 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objekto StarImage 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objekto de StarMath"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objekto de StarMath 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objekto StarMath 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objekto de StarPaint"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HiperTeksta MarkoLingvo (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Simpla HiperTeksta MarkoLingvo (Simple HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Interŝanĝa formato de Microsoft Excel Binary 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Interŝanĝa formato de Microsoft Excel Binary 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dinamika datuminterŝanĝo (DDE-ligilo)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Datum-interŝanĝa formato (*.DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objekto Microsoft Word"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objekto StarFrameSet"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office-dokumenta objekto"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Nota dokumenta informo"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx-dokumento"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objekto StarChart 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Grafika objekto"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "objekto de OpenOffice.org Verkilo"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "objekto de OpenOffice.org 1.0 Verkilo/TTT"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "objekto de OpenOffice.org 1.0 Verkilo/ĉefa"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "objekto de OpenOffice.org Desegnilo"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "objekto de OpenOffice.org Prezentilo"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "objekto de OpenOffice.org Tabelilo"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "objekto de OpenOffice.org Diagramilo"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "objekto de OpenOffice.org Matematiko"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Metadosiero de Vindozo"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Datumfonta objekto"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Datumfonta tabelo"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Informpeto SQL"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "dialogo de OpenOffice.org"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Ligilo"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-a formato sen komentoj"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portebla reta grafiko (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objekto % ne enmeteblas."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objekto el dosiero % ne estas enmetebla."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Pliaj objektoj"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Nekonata fonto"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bajtoj"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1234 +501,1234 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Litercifera"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normala"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Signaro"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Vortaro"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinjina"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Streko"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radiko"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unikodo"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zujina"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonlibro"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetike (litercifere unue)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetike (litercifere laste)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Litercifera"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Vortaro"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinjina"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radiko"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Streko"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zujina"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetike (litercifere unue, arigite laŭ silaboj)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetike (litercifere unue, arigite laŭ konsonantoj)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetike (litercifere laste, arigite laŭ silaboj)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetike (litercifere laste arigite laŭ konsonantoj)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Malgrasa"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Malgrasa kursiva"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Regule"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kursiva"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Grasa"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Grasa kursiva"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Nigra"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Nigra kursiva"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Libro"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Grasa oblikva"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Densa"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Densa grasa"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Densa grasa kursiva"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Densa grasa oblikva"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Densa kursiva"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Densa oblikva"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Tre malpeza"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Tre malpeza kursiva"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Oblikva"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Duongrasa"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Duongrasa kursiva"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "La sama tiparo uzatos kaj en via presilo kaj sur via ekrano."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Tio ĉi estas presila tiparo. La ekrana bildo povas diferenci."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Tiu ĉi tipara stilo estos simulata aŭ la plej proksime responda stilo estos uzata."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Tiu ĉi tiparo ne estas instalita. La plej proksima tiparo uzatos."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Movi hejmen"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Movi Maldekstren"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Movi Dekstren"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Movi al fino"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Aldoni"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Horizontala mezurilo"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Vertikala mezurilo"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1-bita sojlo"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1-bita punktismo"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4-bita grizoskalo"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4-bita koloro"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8-bita grizoskalo"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8-bita koloro"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24-bitaj veraj koloroj"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "La bildo bezonas ĉirkaŭ %1 KB da memoro."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "La bildo bezonas ĉirkaŭ %1 KB da memoro. La dosiera grando estas %2 KB."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "La dosiera grando estas %1 KB."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "servilo"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "pordo"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Alia CMS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Preta"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Dumpaŭze"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Forigo okazonta"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Okupata"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Pravalorizado"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Atendado"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Varmiĝado"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Traktado"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Presado"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Senkonekte"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Eraro"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Nekonata servilo"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Paperŝtopiĝo"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Ne sufiĉe da papero"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Mana nutrado"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Paperproblemo"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "En/Eligo aktiva"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Presaĵujo estas plena"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Malmulta inko"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Neniu farbopulvoro"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Forigi Paĝon"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Interveno de uzanto necesas"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Nesufiĉa memoro"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Kovrilo malfermita"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Energiŝpara reĝimo"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Apriora presilo"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d-dokumentoj"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<neniu>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Entrepreno"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Sekcio"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Persona nomo"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Familia nomo"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Strato"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Lando"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Poŝtkodo"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Urbo"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titolo"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Pozicio"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Adresa formularo"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Inicialoj"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Krome fermi"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel: hejma"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel: laboreja"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fakso"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Retpoŝto"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Noto"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Propra 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Propra 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Propra 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Propra 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Identigilo"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Ŝtato"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel: oficeja"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Vokilo"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Poŝtelefono"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel: alia"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalendaro"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Inviti"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ de $user$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME bezonas Ĝavointerpretilon (JRE) por plenumi ĉi tiun taskon. Bonvolu instali Ĝavointerpretilon kaj restartigi je %PRODUCTNAME-%FAQLINK."
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME bezonas %BITNESS-bit-Ĝavointerpretilon (JRE) por fari tiun taskon. Bonvolu instali je Ĝavointerpretilon kaj restartigi je %PRODUCTNAME-%FAQLINK."
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME bezonas la Ĝavan programistan ilaron (JDK) de Oracle en MacOS 10.10 aŭ posta por plenumi ĉi tiun taskon. Bonvolu instali ĝin kaj restartigi je %PRODUCTNAME-%FAQLINK."
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "La %PRODUCTNAME-agordaro estas ŝanĝita. Ĉe menueroj %PRODUCTNAME - Preferoj - %PRODUCTNAME - Specialaj, elektu la Ĝavointerpretilon uzotan de %PRODUCTNAME."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "La agordaro de %PRODUCTNAME estas ŝanĝita. Sub Iloj - Agordaĵoj - %PRODUCTNAME - Specialaj, elektu la Ĝavointerpretilon uzotan de %PRODUCTNAME."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME bezonas Ĝavointerpretilon (JRE) por plenumi la taskon. La elektita JRE estas difekta. Bonvolu elekti alian version aŭ instali novan JRE kaj elektu ĝin ĉe %PRODUCTNAME - Preferoj - %PRODUCTNAME - Specialaj."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME bezonas Ĝavointerpretilon (JRE) por plenumi ĉi tiun taskon. La elektita JRE estas difektita. Bonvolu elekti alian version aŭ instali novan JRE kaj elekti ĝin sub Iloj - Agordaĵoj - %PRODUCTNAME - Specialaj."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE bezonata"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Elekti je JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE estas difektita"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Fontkodo"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Legosigna dosiero"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafikaĵoj"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfigura dosiero"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplikaĵo"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Datumbaza tabelo"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Sistemdosiero"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word-dokumento"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Helpa dosiero"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-a dokumento"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Arkiva dosiero"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Protokolo"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Datumbazo de StarOffice"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Ĉefa dokumento de StarWriter 4.0 / 5.0"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Bildo de StarOffice"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Teksta dosiero"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Ligo"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Ŝablono de StarOffice 3.0 - 5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel -dokumento"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel -ŝablono"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Skripto"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Dosiero"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Dosierujo"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Teksta dokumento"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Kalkultabelo"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Prezentaĵo"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Desegnaĵo"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-a dokumento"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Ĉefa dokumento"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formulo"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Datumbazo"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "ŝablono de OpenOffice.org 1.0 Tabelilo"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "ŝablono de OpenOffice.org 1.0 Desegnilo"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "ŝablono de OpenOffice.org 1.0 Prezentilo"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "ŝablono de OpenOffice.org teksta dokumento"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Loka diskingo"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Diskingo"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "KD-legilo"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Reta konekto"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint-dokumento"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint-ŝablono"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint-prezentaĵo"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "formulo de OpenOffice.org 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "diagramo de OpenOffice.org 1.0"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "desegnaĵo de OpenOffice.org 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "kalkultabelo de OpenOffice.org 1.0"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "prezentaĵo de OpenOffice.org 1.0"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "teksta dokumento de OpenOffice.org 1.0"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "ĉefa dokumento de OpenOffice.org 1.0"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML-dokumento"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Datumbazo de OpenDocument"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Desegnaĵo de OpenDocument"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Formulo de OpenDocument"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Ĉefa dokumento de OpenDocument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Prezentaĵo de OpenDocument"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Kalkultabelo de OpenDocument"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Teksto de OpenDocument"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Kalkultabela ŝablono de OpenDocument"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Desegnaĵa ŝablono de OpenDocument"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Prezentaĵa ŝablono de OpenDocument"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Teksta ŝablono de OpenDocument"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Aldonaĵo de %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Literumada Kontrolo Hunspell"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Vortdividi per Libhyphen"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Tezaŭro Mythes"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Listo de malatentitaj vortoj"
diff --git a/source/eo/svx/messages.po b/source/eo/svx/messages.po
index 5ceddacba6c..99e67fa0a6e 100644
--- a/source/eo/svx/messages.po
+++ b/source/eo/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-15 09:48+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/eo/>\n"
"Language: eo\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1558243928.000000\n"
#. 3GkZj
@@ -9906,7 +9906,7 @@ msgstr "Ombrigita"
#: include/svx/svxitems.hrc:41
msgctxt "RID_ATTR_NAMES"
msgid "Individual words"
-msgstr "Nur vortoj"
+msgstr "Unuopaj vortoj"
#. V2fmG
#: include/svx/svxitems.hrc:42
@@ -16332,11 +16332,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Ĵokeroj"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "Komentoj"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/eo/sw/messages.po b/source/eo/sw/messages.po
index ea7294791ba..2a2e25718c1 100644
--- a/source/eo/sw/messages.po
+++ b/source/eo/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-04 20:47+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-17 20:36+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/eo/>\n"
"Language: eo\n"
@@ -98,13 +98,13 @@ msgstr "Tabeloj devas ne enhavi titolojn."
#: sw/inc/AccessibilityCheckStrings.hrc:29
msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
-msgstr ""
+msgstr "Tenu orditaj nivelojn de titoloj. Titola nivelo %LEVEL_CURRENT% devas ne sekvi je %LEVEL_PREV%."
#. gkDzg
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr ""
+msgstr "Evitu je Fontworks en viaj dokumentoj. Certigu ke vi uzas ĝin por vidigi specimenon aŭ alian sensignifan tekston."
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -614,13 +614,13 @@ msgstr "Numeritaj alineoj:"
#: sw/inc/inspectorproperties.hrc:31
msgctxt "RID_CHAR_DIRECTFORMAT"
msgid "Character Direct Formatting"
-msgstr ""
+msgstr "Signa rekta formatado"
#. fYAUc
#: sw/inc/inspectorproperties.hrc:32
msgctxt "RID_PARA_DIRECTFORMAT"
msgid "Paragraph Direct Formatting"
-msgstr ""
+msgstr "Alinea rekta formatado"
#. YUbUQ
#. Format names
@@ -5750,19 +5750,19 @@ msgstr "For"
#: sw/inc/strings.hrc:646
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Klaku por baskuligi vidigon de enhavo."
#. 44jEc
#: sw/inc/strings.hrc:647
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
-msgstr ""
+msgstr "dekstre klaku por inkludi subnivelojn"
#. kDbnu
#: sw/inc/strings.hrc:648
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Klaku por baskuligi vidigon de enhavo."
#. rkD8H
#: sw/inc/strings.hrc:649
@@ -17438,86 +17438,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr "Enigu la nombron da vicoj bezonataj en la tabelo."
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Ĝenerale"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "Titolo"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr "Inkluzivas titolan vicon en la tabelo."
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Ripeti titolajn vicojn en novaj paĝoj"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr "Ripetas la titolon de la tabelo ĉe la supro de sekva paĝo se la tabelo kovras pli ol unu paĝon."
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Ne distranĉi tabelon preter paĝon"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr "Preventas ke la tabelo kovru pli ol unu paĝon."
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr "Elektu la nombron da vicoj uzotaj por la titolo."
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Titolaj vicoj:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Agordaro"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr "Vidigas antaŭvidon de la aktuala elektaĵo."
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr "Elektu antaŭe agorditan stilon por la nova tabelo."
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Stiloj"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr "Enmetas tabelon en la dokumenton. Oni ankaŭ povas alklaki la sagon, ŝovi por elekti la nombron da vicoj kaj kolumnoj por enmeti en la tabelon, kaj alklaki en la lasta ĉelo."
@@ -20031,289 +20037,289 @@ msgid "Text"
msgstr "Teksto"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Baskuligi ĉefan vidon"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Ŝaltas inter modela vido kaj ordinara vido, se modela dokumento estas malfermita."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr "Iri al paĝo"
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr "Enigu paĝnumeron kaj premu je Enigi. Uzu sagojn por movi al sekva paĝo antaŭe aŭ retro."
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Enhava naviga vido"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr "Baskulas inter la vidigo de ĉiuj kategorioj en la Navilgilo kaj la elektita kategorio."
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Paĝokapo"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr "Movas la kursoron al la titolo, aŭ de la titolo al la dokumenta teksta areo."
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Paĝopiedo"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr "Movas la kursoron al la piednoto, aŭ de la piednoto al la tekstareo de la dokumento."
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Ankro<->teksto"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr "Saltas inter la piednota teksto kaj la piednota ankro."
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Agordi memorigon"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Alklaku ĉi tie por agordi memorigon ĉe la aktuala kursora loko. Oni povas difini ĝis kvin memorigojn. Por salti al memorigo, alklaku la bildsimbolon Navigado, en la fenestro Navigado alklaku la bildsimbolon Memorigo, kaj alklaku la butonon Antaŭa aŭ Sekva."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Titolaj niveloj vidigataj"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr "Alklaku ĉi tiun bildsimbolon, kaj elektu la nombron da titolaj skizaj niveloj vidigotaj per la fenestro Navigilo."
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Listujo ek/for"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr "Vidigas aŭ kaŝas la listonNavigilo."
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Unu nivelon supren"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Pliigas je unu la skizan nivelon de la elektita titolo, kaj la titoloj kiuj troviĝas sub tiu titolo. Por pliigi nur la skizan nivelon de la elektita titolo, tenu Stir, kaj alklaku ĉi tiun bildsimbolon."
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Unu nivelon malsupren"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Malpliigas je unu la skizan nivelon de la elektita titolo, kaj la titoloj kiuj troviĝas sub tiu titolo. Por malpliigi nur la skizan nivelon de la elektita titolo, tenu Stir, kaj alklaku ĉi tiun bildsimbolon."
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Movi ĉapitron supren"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Movas la elektitan titolon, kaj la tekston sub la titolo, supren je unu titola pozicio en la Navigilo kaj en la dokumento. Por movi nur la elektitan titolon, kaj ne la tekston kun la titolo, tenu je Stir, kaj alklaku ĉi tiun bildsimbolon."
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Movi ĉapitron malsupren"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Movas la elektitan titolon, kaj la tekston sub la titolo, supren je unu titola pozicio en la Navigilo kaj en la dokumento. Por movi nur la elektitan titolon, kaj ne la tekston kun la titolo, tenu je Stir, kaj alklaku ĉi tiun bildsimbolon."
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Ŝovreĝimo"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr "Agordas la ŝovajn kaj demetajn eblojn por enmeti erojn el la Navigilo en dokumenton, ekzemple, hiperligilon. Alklaku ĉi tiun bildsimbolon, kaj elektu la funkcion uzotan."
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Dokumento"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Aktiva fenestro"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Baskuligi ĉefan vidon"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Ŝaltas inter modela vido kaj ordinara vido, se modela dokumento estas malfermita."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Redakti"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr "Redaktu la enhavon de la komponanto elektita en la Navigilo-listo. Se la elektaĵo estas dosiero, tiu malfermiĝos por redaktado. Se la elektaĵo estas indekso, malferiĝos la dialogo Indekso."
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Ĝisdatigi"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Alklaku kaj elektu la enhavon ĝisdatigotan."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Enmeti"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Enmetas dosieron, indekson, aŭ novan dokumenton en la ĉefan dokumenton."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Ankaŭ konservi enhavon"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr "Konservas kopion de la enhavo de la ligitaj dosieroj en la ĉefa dokumento. Tio certigas, ke la aktuala enhavo estas alirebla kiam la ligitaj dosieroj ne estas alireblaj."
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Movi supren"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr "Movas la elektaĵon supre unu pozicion en la listo de Navigilo."
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Movi malsupren"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr "Movas la elektaĵon malsupre unu pozicion en la listo de Navigilo."
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Elektaĵo"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Indeksoj"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Ligiloj"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Ĉiuj"
@@ -23683,7 +23689,7 @@ msgstr "Sama enhavo:"
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:95
msgctxt "pagefooterpanel|footertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Marĝenoj:"
#. xepvQ
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:107
@@ -23773,7 +23779,7 @@ msgstr "Sama enhavo:"
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:95
msgctxt "pageheaderpanel|headertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Marĝenoj:"
#. PAGRJ
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:107
diff --git a/source/es/cui/messages.po b/source/es/cui/messages.po
index 61bb7bc2549..21763db24bd 100644
--- a/source/es/cui/messages.po
+++ b/source/es/cui/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-15 09:48+0000\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1566235515.000000\n"
#. GyY9M
@@ -2062,7 +2062,7 @@ msgstr "Instalar"
#: cui/inc/strings.hrc:395
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
-msgstr ""
+msgstr "Instalado"
#. TmK5f
#: cui/inc/strings.hrc:396
@@ -2092,7 +2092,7 @@ msgstr "Extensiones"
#: cui/inc/strings.hrc:401
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
-msgstr ""
+msgstr "Aplicar a %MODULE"
#. mpS3V
#: cui/inc/tipoftheday.hrc:48
@@ -3474,7 +3474,7 @@ msgstr "¿Quiere desarrollar filtros XSLT y XML nuevos?"
#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General."
-msgstr ""
+msgstr "Presione Mayús + F1 para ver las descripciones emergentes ampliadas en los cuadros de diálogo si no se ha activado la opción «Descripciones emergentes» en Herramientas ▸ Opciones ▸ %PRODUCTNAME ▸ General."
#. hsZPg
#: cui/inc/tipoftheday.hrc:274
@@ -3492,13 +3492,13 @@ msgstr "Más información"
#: cui/inc/tipoftheday.hrc:276
msgctxt "STR_UNO_LINK"
msgid "Run this action now..."
-msgstr ""
+msgstr "Ejecutar esta acción ahora…"
#. P6JME
#: cui/inc/tipoftheday.hrc:277
msgctxt "STR_TITLE"
msgid "Tip of the Day: %CURRENT/%TOTAL"
-msgstr ""
+msgstr "Consejo del día: %CURRENT/%TOTAL"
#. C6Dsn
#: cui/inc/tipoftheday.hrc:278
@@ -5632,7 +5632,7 @@ msgstr "Definido por el _usuario:"
#: cui/uiconfig/ui/borderpage.ui:98
msgctxt "borderpage|userdefft"
msgid "Click edge or corner to cycle through three states: set, unchanged, remove."
-msgstr ""
+msgstr "Pulse en el borde o la esquina para pasar de un estado a otro: definido, inalterado, eliminado."
#. sRXeg
#: cui/uiconfig/ui/borderpage.ui:111
@@ -5734,7 +5734,7 @@ msgstr "Distan_cia:"
#: cui/uiconfig/ui/borderpage.ui:547
msgctxt "borderpage|distanceft"
msgid "Width of shadow"
-msgstr ""
+msgstr "Anchura de sombra"
#. gEF6E
#: cui/uiconfig/ui/borderpage.ui:572
@@ -16946,7 +16946,7 @@ msgstr "_desde:"
#: cui/uiconfig/ui/optviewpage.ui:787
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing."
-msgstr "Especifique el tamaño de tipo de letra más pequeño para aplicar el suavizado."
+msgstr "Especifique el tamaño de tipo de letra más pequeño para aplicar el antidentado."
#. uZALs
#: cui/uiconfig/ui/optviewpage.ui:849
diff --git a/source/es/helpcontent2/source/text/scalc/01.po b/source/es/helpcontent2/source/text/scalc/01.po
index 9b63ab59bf7..0ce0f9bb65f 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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2020-11-02 14:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/es/>\n"
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr "Uso de expresiones regulares y funciones anidadas"
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/scalc/guide.po b/source/es/helpcontent2/source/text/scalc/guide.po
index 83d514abb47..e0265195347 100644
--- a/source/es/helpcontent2/source/text/scalc/guide.po
+++ b/source/es/helpcontent2/source/text/scalc/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-03 12:42+0100\n"
-"PO-Revision-Date: 2020-11-05 10:35+0000\n"
+"PO-Revision-Date: 2020-11-17 16:43+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/es/>\n"
"Language: es\n"
@@ -5990,7 +5990,7 @@ msgctxt ""
"par_id3147394\n"
"help.text"
msgid "Set the cursor at the number and choose <emph>Format - Cells</emph> to start the <emph>Format Cells</emph> dialog."
-msgstr "Coloque el cursor junto al número y seleccione <emph>Formato - Celda</emph> para abrir el diálogo <emph>Formateado de celdas</emph>."
+msgstr "Coloque el cursor junto al número y seleccione <emph>Formato ▸ Celdas</emph> para abrir el cuadro de diálogo <emph>Formato de celdas</emph>."
#. 6rPBs
#: format_value.xhp
diff --git a/source/es/helpcontent2/source/text/sdraw.po b/source/es/helpcontent2/source/text/sdraw.po
index 03a0283037a..8343962e315 100644
--- a/source/es/helpcontent2/source/text/sdraw.po
+++ b/source/es/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-04 05:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/es/>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/00.po b/source/es/helpcontent2/source/text/shared/00.po
index 85fdb3c1e5d..0b37382a3ef 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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-11-03 11:58+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/es/>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "Un buen ejemplo de base de datos relacional es una base de datos de compras con tablas de Cliente, Compra y Factura. La tabla Factura no contiene realmente datos de clientes ni de compras; no obstante, sí contiene, a través de un vínculo relacional o relación, referencias a los campos correspondiente de las tablas de clientes y de compras (por ejemplo, el campo ID cliente de la tabla de clientes)."
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>Conformidad de registro;definir</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "Conformidad de registro"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/es/helpcontent2/source/text/shared/01.po b/source/es/helpcontent2/source/text/shared/01.po
index 5e5c74c5ed0..5da7d52d952 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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-13 12:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/es/>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr "Para determinados tipos de documentos puede elegir imprimir un prospecto."
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr "Más opciones"
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr "<ahelp hid=\".\">En el cuadro de diálogo <emph>Más opciones</emph> puede establecer determinadas opciones adicionales para la tarea de impresión actual.</ahelp>"
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,14 +9376,14 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "Alterna entre la vista patrón y la normal."
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icono</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgstr ""
#. 3Lq2G
#: 02110000.xhp
@@ -9430,14 +9412,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_EDIT\">Le permite modificar el contenido del componente seleccionado en la lista del <emph>Navegador</emph>. Si la selección es un archivo, este se abre para su edición. Si la selección es un índice, se abre el cuadro de diálogo <emph>Índice</emph>.</ahelp>"
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icono</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgstr ""
#. nRB3E
#: 02110000.xhp
@@ -9466,14 +9448,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Pulse y seleccione el contenido que desee actualizar.</ahelp>"
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icono</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgstr ""
#. F4J5u
#: 02110000.xhp
@@ -9601,14 +9583,14 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "También se pueden insertar archivos en el patrón de documento; para hacerlo, arrastre un archivo del escritorio y colóquelo en la vista de patrón del Navegador."
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icono</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgstr ""
#. ijR7M
#: 02110000.xhp
@@ -9709,14 +9691,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Guarda una copia del contenido de los archivos enlazados en el patrón de documento. De esta forma, se garantiza la disponibilidad del contenido si no se pudiera acceder a los archivos enlazados.</ahelp>"
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icono</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgstr ""
#. ADEyJ
#: 02110000.xhp
@@ -9745,14 +9727,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Mueve la selección una posición hacia arriba en la lista del Navegador.</ahelp> Es posible también desplazar entradas arrastrándolas y colocándolas en la lista. Si desplaza una sección de texto junto a otra, ambas se combinan."
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icono</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgstr ""
#. GqEUL
#: 02110000.xhp
@@ -9781,14 +9763,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Mueve la selección una posición hacia abajo en la lista del Navegador.</ahelp> Es posible también desplazar entradas arrastrándolas y colocándolas en la lista. Si desplaza una sección de texto junto a otra, ambas se combinan."
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
-msgstr "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icono</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgstr ""
#. DLEGF
#: 02110000.xhp
diff --git a/source/es/helpcontent2/source/text/shared/02.po b/source/es/helpcontent2/source/text/shared/02.po
index 662c09ce91d..17a714571a9 100644
--- a/source/es/helpcontent2/source/text/shared/02.po
+++ b/source/es/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-02 14:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/es/>\n"
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Reducir sangría</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11059,14 +11059,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icono</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr ""
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Aumentar sangría</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11131,14 +11131,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icono</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/es/helpcontent2/source/text/shared/optionen.po b/source/es/helpcontent2/source/text/shared/optionen.po
index 177e981beda..829427907f7 100644
--- a/source/es/helpcontent2/source/text/shared/optionen.po
+++ b/source/es/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-02 14:56+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-20 14:49+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/es/>\n"
"Language: es\n"
@@ -3560,7 +3560,7 @@ msgctxt ""
"par_id4743797\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Especifique el tamaño de tipo de letra más pequeño para aplicar el suavizado.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Especifique el tamaño de tipo de letra más pequeño para aplicar el antidentado.</ahelp>"
#. QWZyh
#: 01010800.xhp
@@ -9149,7 +9149,7 @@ msgctxt ""
"par_id3151114\n"
"help.text"
msgid "<ahelp hid=\".\">Click a color. Click the <emph>None</emph> button to remove a background color.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Pulse en un color. Pulse en el botón <emph>Ninguno</emph> para quitar el color de fondo.</ahelp>"
#. YvDPU
#: 01060000.xhp
@@ -10769,7 +10769,7 @@ msgctxt ""
"par_id3155097\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulaliteral\">Specifies that only literal strings are used when searching and also for character string comparisons.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> This relates to the <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">database functions</link>, and to LOOKUP, VLOOKUP, HLOOKUP, MATCH, AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, SUMIF, SUMIFS and SEARCH.</caseinline></switchinline>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulaliteral\">Especifica que se utilicen solo cadenas literales en las búsquedas y al comparar cadenas de caracteres.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> Esta opción es relevante para las <link href=\"text/scalc/01/04060101.xhp\" name=\"funciones de base de datos\">funciones de base de datos</link>, así como para BUSCAR, BUSCARV, BUSCARH, COINCIDIR, PROMEDIO.SI, PROMEDIO.SI.CONJUNTO, SUMAR.SI, SUMAR.SI.CONJUNTO y HALLAR.</caseinline></switchinline>"
#. xpfmF
#: 01060500.xhp
@@ -10805,7 +10805,7 @@ msgctxt ""
"par_id3151242\n"
"help.text"
msgid "<emph>Example</emph>: Cell E5 contains the text \"Europe\". Below, in cell E6, is the value 100 and in cell E7 the value 200. If the <emph>Automatically find column and row labels</emph> box is marked, you can write the following formula in cell A1: =SUM(Europe)."
-msgstr "<emph>Ejemplo</emph>: La celda E5 contiene el texto \"Europa\". Debajo, en la celda E6, se encuentra el valor 100 y en la celda E7 el valor 200. Si la opción <emph>Buscar automáticamente las etiquetas de filas y columnas</emph> está seleccionada, puede escribir la fórmula siguiente en la celda A1: =SUMA(Europa)."
+msgstr "<emph>Ejemplo</emph>: la celda E5 contiene el texto «Europa». Debajo, en la celda E6, se encuentra el valor 100 y en la celda E7 el valor 200. Si la opción <emph>Buscar automáticamente etiquetas de columna y fila</emph> está seleccionada, puede escribir la fórmula siguiente en la celda A1: =SUMA(Europa)."
#. zDS7k
#: 01060500.xhp
@@ -11860,32 +11860,32 @@ msgctxt ""
msgid "Snap"
msgstr "Acoplar"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "A las guías"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "Esta configuración se puede establecer también mediante el icono <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Ajustar a las guías\"><emph>Ajustar a las guías</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Ajustar a las guías\"><emph>Ajustar a las guías</emph></link></caseinline><defaultinline><emph>Ajustar a las guías</emph></defaultinline></switchinline>, disponible en la <emph>barra de opciones</emph> de una presentación o documento de dibujo."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr ""
#. eUCCJ
#: 01070300.xhp
@@ -17456,7 +17456,7 @@ msgctxt ""
"par_idN10557\n"
"help.text"
msgid "When you enter settings on the <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME Writer - Mail Merge Email</link> tab page, you can click the <emph>Test Settings</emph> button to test your settings."
-msgstr ""
+msgstr "A medida que introduce configuraciones en la pestaña <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferencias</caseinline><defaultinline>Herramientas ▸ Opciones</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME Writer ▸ Correo para combinar correspondencia</link>, puede utilizar el botón <emph>Probar configuración</emph> para poner a prueba sus elecciones."
#. 4AK5G
#: testaccount.xhp
diff --git a/source/es/helpcontent2/source/text/simpress/02.po b/source/es/helpcontent2/source/text/simpress/02.po
index 3ab4e0c817e..b56ddf1d8ad 100644
--- a/source/es/helpcontent2/source/text/simpress/02.po
+++ b/source/es/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-04 05:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress02/es/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1534121568.000000\n"
#. AiACn
@@ -5695,41 +5695,41 @@ msgctxt ""
msgid "Exit all groups"
msgstr "Salir de todos los grupos"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Ajustar a las guías"
+msgid "Snap to Snap Guides"
+msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Ajustar a las guías\">Ajustar a las guías</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icono</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Ajustar a las guías"
+msgid "Snap to Snap Guides"
+msgstr ""
#. oXWsX
#: 13150000.xhp
diff --git a/source/es/helpcontent2/source/text/swriter.po b/source/es/helpcontent2/source/text/swriter.po
index 9e7725c6d44..88d3ede0056 100644
--- a/source/es/helpcontent2/source/text/swriter.po
+++ b/source/es/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-02 14:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/es/>\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "De izquierda a derecha"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">icono de izquierda a derecha</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "De derecha a izquierda"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">icono de derecha a izquierda</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/es/helpcontent2/source/text/swriter/01.po b/source/es/helpcontent2/source/text/swriter/01.po
index dd6a9c4f706..29f4d6bea6e 100644
--- a/source/es/helpcontent2/source/text/swriter/01.po
+++ b/source/es/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-04 00:16+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/es/>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "Navegador"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30105,6 +30105,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Abre el diálogo <emph>Destinatarios de combinar correspondencia</emph>.</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/swriter/guide.po b/source/es/helpcontent2/source/text/swriter/guide.po
index e988e97ee1b..b1c7186262b 100644
--- a/source/es/helpcontent2/source/text/swriter/guide.po
+++ b/source/es/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-11-04 00:16+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/es/>\n"
@@ -7792,50 +7792,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Sangría de párrafos</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr "Para cambiar las unidades de medición vaya a <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME ▸ Preferencias</item></caseinline><defaultinline><item type=\"menuitem\">Herramientas ▸ Opciones</item></defaultinline></switchinline><item type=\"menuitem\"> ▸ %PRODUCTNAME Writer ▸ General</item> y, a continuación, elija una unidad nueva en el área de configuración."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "Puede cambiar las sangrías para el párrafo actual, para todos los párrafos seleccionados, o para un estilo de párrafo."
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "Puede cambiar las sangrías para el párrafo actual, para todos los párrafos seleccionados, o para un estilo de párrafo."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "Elija <item type=\"menuitem\">Formato ▸ Párrafo ▸ Sangría y espaciado</item> para cambiar la sangría para el párrafo actual o para todos los párrafos seleccionados. También puede <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">fijar la sangría mediante la regla</link>."
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "También puede <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">fijar la sangría mediante la regla</link>. Para mostrar la regla, elija <item type=\"menuitem\">Ver ▸ Regla</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "Elija <item type=\"menuitem\">Formato ▸ Párrafo ▸ Sangría y espaciado</item> para cambiar la sangría para el párrafo actual o para todos los párrafos seleccionados. También puede <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">fijar la sangría mediante la regla</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "También puede <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">fijar la sangría mediante la regla</link>. Para mostrar la regla, elija <item type=\"menuitem\">Ver ▸ Regla</item>."
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "Pulse con el botón derecho del ratón sobre un párrafo y elija <item type=\"menuitem\">Editar ▸ Estilo de párrafo ▸ Sangría y espaciado</item> para cambiar las sangrías para todos los párrafos que tengan el mismo estilo de párrafo."
+msgid "Positioning indents"
+msgstr ""
#. qUxKq
#: indenting.xhp
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "Las sangrías se calculan en relación con los márgenes de página izquierdo y derecho. Introduzca un valor negativo si quiere que el párrafo ocupe el margen de la página."
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr "Para cambiar las unidades de medición vaya a <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME ▸ Preferencias</item></caseinline><defaultinline><item type=\"menuitem\">Herramientas ▸ Opciones</item></defaultinline></switchinline><item type=\"menuitem\"> ▸ %PRODUCTNAME Writer ▸ General</item> y, a continuación, elija una unidad nueva en el área de configuración."
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "Las sangrías difieren según la dirección de la escritura. Por ejemplo, compare el valor de <item type=\"menuitem\">Antes del texto</item> en los idiomas que se escriben de izquierda a derecha. El borde izquierdo del párrafo se sangra respecto al margen izquierdo de la página. En los idiomas que se escriben de derecha a izquierda, se aplica sangría en el extremo derecho del párrafo respecto al margen derecho de la página."
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "Para una sangría francesa, escriba un valor positivo para <item type=\"menuitem\">Antes del texto</item> y un valor negativo para <item type=\"menuitem\">Primera línea</item>."
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,14 +10294,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "Activar o desactivar el reconocimiento de números en tablas"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>números; reconocimiento automático en tablas de texto</bookmark_value> <bookmark_value>tablas; reconocimiento de números</bookmark_value> <bookmark_value>fechas;formato automático en tablas</bookmark_value> <bookmark_value>reconocimiento;números</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10267,14 +10330,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Siga uno de estos procedimientos:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "Pulse con el botón secundario del ratón sobre una celda de la tabla y elija <item type=\"menuitem\">Reconocimiento de números</item>. Cuando esta función está activada, se muestra una marca de comprobación delante de la orden <item type=\"menuitem\">Reconocimiento de números</item>."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr "Vaya a <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferencias</caseinline><defaultinline>Herramientas ▸ Opciones</defaultinline></switchinline> ▸ <item type=\"menuitem\">%PRODUCTNAME Writer ▸ Tabla</item> y seleccione o desmarque la casilla <item type=\"menuitem\">Reconocimiento de números</item>."
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12211,6 +12292,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "Cuando cree un documento que se deba imprimir como prospecto, asigne a las páginas orientación vertical. Writer aplica el diseño de prospecto al imprimir el documento."
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12256,50 +12355,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "Si su impresora admite la función dúplex, y debido a que los prospectos suelen imprimirse horizontalmente, utilice la opción «Dúplex, margen corto» del cuadro de diálogo de configuración de la impresora."
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
-msgstr "Regrese al diálogo <emph>Imprimir</emph> y pulse en la pestaña <emph>Disposición de página</emph>."
+msgid "Return to <emph>Print</emph> dialog."
+msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
-msgstr "Seleccione <emph>Prospecto</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
+msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "Si su impresora imprime de forma automática en ambas caras de las hojas, indique que quiere imprimir «Todas las páginas»."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Pulse en <emph>Aceptar</emph>."
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "Si %PRODUCTNAME imprime las páginas en un orden incorrecto, abra la pestaña <emph>Opciones</emph> y marque <emph>Imprimir en orden inverso</emph>, e imprima nuevamente el documento."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">Archivo ▸ Previsualización de impresión</link>."
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,32 +12724,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Imprimir varias páginas por hoja de papel\">Imprimir varias páginas por hoja de papel</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
-msgstr "En la pestaña <emph>Disposición de página</emph> del cuadro de diálogo <item type=\"menuitem\">Archivo ▸ Imprimir</item> encontrará la opción para imprimir varias páginas por hoja de papel."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
+msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
-msgstr "Elija <emph>Archivo ▸ Imprimir</emph> y pulse en la pestaña <emph>Diseño de página</emph>."
+msgid "Choose <menuitem>File - Print</menuitem>"
+msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Siga uno de estos procedimientos:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/es/sc/messages.po b/source/es/sc/messages.po
index 1b229f00093..754fbe962c1 100644
--- a/source/es/sc/messages.po
+++ b/source/es/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-09 15:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-18 15:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/es/>\n"
"Language: es\n"
@@ -1468,7 +1468,7 @@ msgstr "Importar Dif"
#: sc/inc/globstr.hrc:272
msgctxt "STR_STYLENAME_STANDARD"
msgid "Default"
-msgstr ""
+msgstr "Predeterminado"
#. TG9pD
#: sc/inc/globstr.hrc:273
@@ -28629,38 +28629,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr "Especifica que, al pegar celdas desde el portapapeles a un intervalo de celdas que no esté vacío, aparezca una advertencia."
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Usar métricas de la impresora para formatear textos"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "Especifica que los parámetros de la impresora se apliquen para imprimir, así como para formatear la visualización en pantalla."
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Resaltar la sele_cción en cabeceras de filas y columnas"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr "Especifica si se debe resaltar las cabeceras de columna y fila en las columnas o filas seleccionadas."
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Actualizar referencias al ordenar un intervalo de celdas"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Configuración de entrada de datos"
diff --git a/source/es/sd/messages.po b/source/es/sd/messages.po
index 397f943b614..bce7cacb0f9 100644
--- a/source/es/sd/messages.po
+++ b/source/es/sd/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-04 20:47+0000\n"
+"PO-Revision-Date: 2020-11-17 20:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1563809077.000000\n"
#. WDjkB
@@ -8782,7 +8782,7 @@ msgstr "HTML estándar con _marcos"
#: sd/uiconfig/simpress/ui/publishingdialog.ui:947
msgctxt "publishingdialog|extended_tip|framesRadiobutton"
msgid "Creates standard HTML pages with frames. The exported page will be placed in the main frame, and the frame to the left will display a table of contents in the form of hyperlinks."
-msgstr "Crea páginas HTML estándar con marcos. La página exportada se sitúa en el marco principal y en el marco de la izquierda se muestra un índice con hipervínculos."
+msgstr "Crea páginas HTML estándar con marcos. La página exportada se sitúa en el marco principal y en el marco de la izquierda se muestra un sumario con hiperenlaces."
#. CA35b
#: sd/uiconfig/simpress/ui/publishingdialog.ui:958
diff --git a/source/es/sfx2/messages.po b/source/es/sfx2/messages.po
index 554f364a3c0..edf181b61c2 100644
--- a/source/es/sfx2/messages.po
+++ b/source/es/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-11-14 08:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/es/>\n"
@@ -1655,286 +1655,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Cerrar panel"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Anclar"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Desanclar"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Más opciones"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Minimizar barra lateral"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Configuración de barra lateral"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Personalización"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Restablecer predeterminados"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Cerrar barra lateral"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarina"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Colmena"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Curva de azul"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Cianotipo"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Azul brillante"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Bermellón sofisticado"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ADN"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Foco"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Ave forestal"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impresión"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiración"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Luces"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Verde frondoso"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metrópolis"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Azul medianoche"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Naturaleza"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Lápiz"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portafolio"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progreso"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Atardecer"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Retro"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Vívido"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Currículo"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Predeterminada"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderno"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Carta comercial moderna, tipografía sin gracias"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Carta comercial moderna, tipografía con gracias"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Tarjeta de presentación con emblema"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Simple"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Quitar"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Vaciar todo"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Longitud de contraseña"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "La contraseña que ha proporcionado causa problemas de interoperatividad. Escriba una que sea menor que 52 bytes o mayor que 55 bytes."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "Mantenga oprimida %{key} y pulse en el hiperenlace para abrirlo: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Pulse en el hiperenlace para abrirlo: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(utilizado por: %STYLELIST)"
@@ -4165,6 +4129,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Eliminar…"
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/es/starmath/messages.po b/source/es/starmath/messages.po
index c48ecb4757b..5128a6e9599 100644
--- a/source/es/starmath/messages.po
+++ b/source/es/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-12 06:54+0000\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"PO-Revision-Date: 2020-11-20 07:13+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/es/>\n"
"Language: es\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "o"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Signo +"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Signo −"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Signo ±"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Signo ∓"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "NO lógico"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "+ de suma"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "− de resta"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Multiplicación (punto)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Multiplicación (cruz)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Multiplicación (asterisco)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "División (barra oblicua)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "División (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "División (fracción)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
-msgstr ""
+msgstr "Fracción"
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Barra circuida"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Punto circuido"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Signo de resta circuido"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Signo de suma circuido"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Producto tensorial"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Y lógico"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "O lógico"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Es igual"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "No es igual"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Es menor que"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Es mayor que"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Es menor que o igual a"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Es mayor que o igual a"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Es menor que o igual a"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Es mayor que o igual a"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Es mucho menor que"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Es mucho mayor que"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Se define como"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Es congruente con"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Es aproximadamente igual"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Es parecido a"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Es parecido o igual"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Es proporcional a"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Es ortogonal a"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Es paralelo a"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Tiende a"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
-msgstr "Corresponde con (izquierda)"
+msgstr "Se corresponde con (izquierda)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
-msgstr "Corresponde con (derecha)"
+msgstr "Se corresponde con (derecha)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Está contenido en"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "No está contenido en"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Contiene a"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Unión"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Intersección"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Diferencia"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
-msgstr ""
+msgstr "Conjunto cociente"
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Subconjunto"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Subconjunto de o igual que"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Superconjunto"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Superconjunto de o igual que"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "No es subconjunto"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "No es subconjunto o igual"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "No es superconjunto"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "No es superconjunto o igual"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr "Función general"
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Valor absoluto"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Factorial"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Raíz cuadrada"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "Raíz enésima"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Función exponencial"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Función exponencial"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Logaritmo natural"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logaritmo"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Seno"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Coseno"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangente"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Cotangente"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arcoseno"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arcocoseno"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arcotangente"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arcocotangente"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Seno hiperbólico"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Coseno hiperbólico"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Tangente hiperbólica"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Cotangente hiperbólica"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Seno hiperbólico de área"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Coseno hiperbólico de área"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Tangente hiperbólica de área"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Cotangente hiperbólica de área"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr "Operador genérico"
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr "Subíndice inferior de operador genérico"
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr "Superíndice superior de operador genérico"
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr "Super-/subíndice de operador genérico"
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Suma"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Suma con subíndice inferior"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Suma con superíndice superior"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Suma con subíndice y superíndice"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Producto"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Producto con subíndice inferior"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Producto con superíndice superior"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Producto con subíndice y superíndice"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Coproducto"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Coproducto con subíndice inferior"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Coproducto con superíndice superior"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Coproducto con subíndice y superíndice"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Límites"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Límite con subíndice inferior"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Límite con superíndice superior"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Límite con subíndice y superíndice"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Límite inferior"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Límite inferior con variable debajo"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Límite inferior con variable encima"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Límite inferior con variables encima y debajo"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Límite superior"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Límite superior con variable debajo"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Límite superior con variable encima"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Límite superior con variables encima y debajo"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Existe"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "No existe"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Para todos"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integral"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Integral con subíndice inferior"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Integral con superíndice arriba"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integral con subíndice y superíndice"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Integral doble"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Integral doble con subíndice abajo"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Integral doble con superíndice arriba"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Integral doble con subíndice y superíndice"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Integral triple"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Integral triple con subíndice abajo"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Integral triple con superíndice arriba"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Integral triple con subíndice y superíndice"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Integral curvilínea"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Integral curvilínea con subíndice abajo"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Integral curvilínea con superíndice arriba"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Integral curvilínea con subíndice y superíndice"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Integral curvilínea doble"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Integral curvilínea doble con subíndice inferior"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Integral curvilínea doble con superíndice superior"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Integral curvilínea doble con subíndice/superíndice"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Integral curvilínea triple"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Integral curvilínea triple con subíndice inferior"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Integral curvilínea triple con superíndice superior"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Integral curvilínea triple con subíndice/superíndice"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Acento agudo"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Línea superior"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Breve"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Circunflejo inverso"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Círculo"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Punto"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Punto doble"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Punto triple"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Acento grave"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Circunflejo"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Virgulilla"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Flecha vectorial"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Arpón"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Línea debajo"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Línea encima"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Línea a través"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Transparente"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Negrita"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Itálica"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Redimensionar"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Cambiar tipo de letra"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Negro"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Azul"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Verde"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Rojo"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
-msgstr ""
+msgstr "Aguamarina"
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
-msgstr ""
+msgstr "Fucsia"
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Gris"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Lima"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Granate"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Azul marino"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Aceituna"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Púrpura"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Plata"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Azul petróleo"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Amarillo"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "Color RGB"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
-msgstr ""
+msgstr "Color RGBA"
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
+msgstr "Color hexadecimal"
+
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
msgstr ""
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Paréntesis de agrupamiento"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Paréntesis"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Corchetes"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Corchetes dobles"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Llaves"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Paréntesis angulares"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Techo"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Suelo"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Líneas sencillas"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Líneas dobles"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Paréntesis de operador"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Paréntesis (ampliables)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Corchetes (ampliables)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Corchetes dobles (ampliables)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Llaves (ampliables)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Paréntesis angulares (ampliables)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Techo (escalable)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Suelo (escalable)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Líneas sencillas (ampliables)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Líneas dobles (ampliables)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Paréntesis de operador (ampliables)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Valor calculado como"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Llaves arriba (ampliables)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Llaves abajo (ampliables)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Subíndice a la derecha"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Potencia"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Subíndice a la izquierda"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Superíndice a la izquierda"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Subíndice abajo"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Superíndice arriba"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Separación pequeña"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Vacío"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Renglón nuevo"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Apilado vertical (2 elementos)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Apilado vertical"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Disposición matriz"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Alinear a la izquierda"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Alinear al centro"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Alinear a la derecha"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Alef"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Conjunto vacío"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Parte real"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Parte imaginaria"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Infinito"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Parcial"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr "Transformada de Laplace"
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr "Transformada de Fourier"
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "p de Weierstrass"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Puntos en el medio"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Puntos hacia arriba"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Puntos hacia abajo"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Puntos abajo"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Puntos verticalmente"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Concatenar"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "División (barra grande)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "División (barra inversa grande)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Divide a"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "No divide a"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Flecha doble hacia la izquierda"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Flecha doble hacia izquierda y derecha"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Flecha doble hacia la derecha"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Conjunto de números naturales"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Conjunto de números enteros"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Conjunto de números racionales"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Conjunto de números reales"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Conjunto de números complejos"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Circunflejo ancho"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Virgulilla ancha"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Flecha vectorial ancha"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Arpón grande"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h barrada"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda con barra"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Flecha hacia la izquierda"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Flecha hacia la derecha"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Flecha hacia arriba"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Flecha hacia abajo"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Sin espacio"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Precede a"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Precede a o es igual que"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Precede o es equivalente a"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Sucede a"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Sucede a o es igual que"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Sucede o es equivalente a"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "No precede a"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "No sucede a"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Operadores unarios/binarios"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Relaciones"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Operaciones de conjunto"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funciones"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operadores"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Atributos"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Paréntesis"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formatos"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Otros"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Ejemplos"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Circunferencia"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Equivalencia masa-energía"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Teorema de Pitágoras"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
-msgstr ""
+msgstr "Serie de Taylor"
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Distribución de Gauss"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
-msgstr ""
+msgstr "Ecuación de Euler-Lagrange"
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
-msgstr ""
+msgstr "Teorema fundamental del cálculo"
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
-msgstr ""
+msgstr "Ecuación del caos"
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
-msgstr ""
+msgstr "Identidad de Euler"
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
-msgstr ""
+msgstr "Segunda ley de Newton"
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
-msgstr ""
+msgstr "Relatividad general"
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
-msgstr ""
+msgstr "Relatividad especial"
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Estándar"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Itálica"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Negrita"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "negro"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "azul"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "verde"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "rojo"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
-msgstr ""
+msgstr "aguamarina"
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
-msgstr ""
+msgstr "fucsia"
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "gris"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "lima"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "granate"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "azul marino"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "aceituna"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "púrpura"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "plata"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "verde azulado"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "amarillo"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
-msgstr ""
+msgstr "rgba"
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
-msgstr ""
+msgstr "hex"
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "ocultar"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "tamaño"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "tipo de letra"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "izquierda"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centro"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "derecha"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Órdenes"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Fórmula"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Guardando el documento..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Fórmula de %PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR: "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Carácter inesperado"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Señal inesperada"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Se esperaba «{»"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Se esperaba «}»"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Se esperaba «(»"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Se esperaba «)»"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Los símbolos izquierdo y derecho son desiguales"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Se esperaba «fixed», «sans» o «serif»"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "«size» seguido de una señal inesperada"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "No se permite la alineación duplicada"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "No se permiten dobles sub- y superíndices"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
-msgstr ""
+msgstr "Se esperaba un número"
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Se esperaba «#»"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Se requiere un color"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Se esperaba «RIGHT»"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Contenido"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Título"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Texto de ~fórmula"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "B~ordes"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Tamaño"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Tamaño o~riginal"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Ajustar a la ~página"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "E~scala"
diff --git a/source/es/svtools/messages.po b/source/es/svtools/messages.po
index e1a787b60d4..297822cc31c 100644
--- a/source/es/svtools/messages.po
+++ b/source/es/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-09 15:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/es/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Deshacer: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Rehacer: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Repetir: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Texto sin formato"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Texto sin formato (TSV/Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Imagen de mapa de bits (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Metarchivo de interfaz de dispositivo gráfico (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Formato de texto enriquecido (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Formato de texto enriquecido (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Formato de dibujo de %PRODUCTNAME"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Mapa de bits/animación de StarView (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Información de estado de enlace interno de SVX"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Enlace de %PRODUCTNAME (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Marcador de Netscape"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Formato de servidor Star"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Formato de objeto Star"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Objeto de miniaplicación"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Objeto de complemento"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objeto de StarWriter 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objeto de StarWriter 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objeto de StarWriter 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objeto de StarWriter/Web 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objeto de StarWriter/Web 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Objeto de StarWriter/Global 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Objeto de StarWriter/Global 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objeto de StarDraw"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objeto de StarDraw 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objeto de StarImpress 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objeto de StarDraw 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objeto de StarCalc"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objeto de StarCalc 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objeto de StarCalc 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objeto de StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objeto de StarChart 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objeto de StarChart 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objeto de StarImage"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objeto de StarImage 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objeto de StarImage 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objeto de StarMath"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objeto de StarMath 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objeto de StarMath 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objeto de StarObject Paint"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Lenguaje de marcación de hipertexto (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Lenguaje de marcación de hipertexto simplificado (Simple HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Formato binario de intercambio de Microsoft Excel 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Formato binario de intercambio de Microsoft Excel 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Intercambio dinámico de datos (enlace DDE)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Formato de intercambio de datos (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objeto de Microsoft Word"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objeto StarFrameSet"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Objeto de documento de Office"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Información de documento de Notes"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Documento Sfx"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objeto de StarChart 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Objeto gráfico"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Objeto de OpenOffice.org Writer 1.0"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Objeto de OpenOffice.org Writer/Web 1.0"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Objeto de OpenOffice.org Writer/Web 1.0"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Objeto de OpenOffice.org Draw 1.0"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Objeto de OpenOffice.org Impress 1.0"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Objeto de OpenOffice.org Calc 1.0"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Objeto de OpenOffice.org Chart 1.0"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Objeto de OpenOffice.org Math 1.0"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Metarchivo de Windows"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Objeto de origen de datos"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabla de origen de datos"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Consulta SQL"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Diálogo de OpenOffice.org 1.0"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Enlace"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Formato HTML sin comentarios"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Gráfico de red portátil (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "No se pudo insertar el objeto %."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "No se pudo insertar el objeto del archivo %."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Otros objetos"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Origen desconocido"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "kB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1234 +501,1234 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumérico"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Conjunto de caracteres"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Diccionario"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Trazo"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Listín telefónico"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonético (alfanumérico primero)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonético (alfanumérico por último)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumérico"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Diccionario"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Trazo"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonético (alfanumérico primero, agrupado por sílabas)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonético (alfanumérico primero, agrupado por consonantes)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonético (alfanumérico por último, agrupado por sílabas)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonético (alfanumérico por último, agrupado por consonantes)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Clara"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Clara itálica"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normal"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Itálica"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Negrita"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Negrita itálica"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Negra"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Negra itálica"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Libro"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Negrita oblicua"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensada"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Condensada negrita"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Condensada negrita itálica"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Condensada negrita oblicua"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Condensada itálica"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Condensada oblicua"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Extraclara"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Extraclara itálica"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Oblicua"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Seminegrita"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Seminegrita itálica"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Se usará el mismo tipo de letra en la impresora y en la pantalla."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Tipo de letra de la impresora. La imagen en pantalla podría ser distinta."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Se imitará este estilo de letra o se usará el más adecuado."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Este tipo de letra no está instalado. Se usará el tipo disponible más parecido."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Mover al inicio"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Mover a la izquierda"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Mover a la derecha"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Mover al final"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Añadir"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Regla horizontal"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Regla vertical"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Umbral de 1 bit"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Interpolación de 1 bit"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Escala de grises de 4 bits"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Color de 4 bits"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Escala de grises de 8 bits"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Color de 8 bits"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Color real de 24 bits"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "La imagen necesita aproximadamente %1 kB de memoria."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "La imagen necesita aproximadamente %1 kB de memoria; el tamaño del archivo es de %2 kB."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "El tamaño del archivo es %1 kB."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "servidor"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "puerto"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Otro servicio CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Preparado"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Detenido"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Eliminación pendiente"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Ocupado"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Inicializando"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "En espera"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Arrancando"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Procesando"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Imprimiendo"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Desconectado"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Error"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Servidor desconocido"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Atasco de papel"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Falta de papel"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Alimentación manual"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problema de papel"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "E/S activos"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "La papelera de salida está llena"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Tóner bajo"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "No hay tóner"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Eliminar página"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Se necesita que intervenga"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Memoria insuficiente"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Abrir cubierta"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Modo de ahorro energético"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Impresora predeterminada"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documentos"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ninguno>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Empresa"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Departamento"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Nombre(s)"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Apellido(s)"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Calle"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "País"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Código postal"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Ciudad"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Título"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posición"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Tratamiento"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Iniciales"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Tratamiento"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Teléfono privado"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Teléfono trabajo"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Correo electrónico"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Usuario 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Usuario 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Usuario 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Usuario 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Id."
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Provincia"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Teléfono trabajo"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Buscapersonas"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Móvil"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Teléfono (otros)"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendario"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Invitar"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ de $user$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME necesita un entorno de ejecución de Java (JRE) para realizar esta tarea. Instale un JRE y reinicie %PRODUCTNAME. %FAQLINK"
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME necesita un entorno de ejecución de Java (JRE) de %BITNESS bits para realizar esta tarea. Instale un JRE y reinicie %PRODUCTNAME. %FAQLINK"
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr "Para realizar esta tarea, %PRODUCTNAME necesita el Kit de Desarrollo de Java de Oracle (JDK) y macOS 10.10 o una versión más reciente. Instálelos y reinicie %PRODUCTNAME. %FAQLINK"
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Se modificó la configuración de %PRODUCTNAME. En %PRODUCTNAME ▸ Preferencias ▸ %PRODUCTNAME ▸ Avanzado, seleccione el entorno de ejecución de Java que quiera utilizar."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Se modificó la configuración de %PRODUCTNAME. En Herramientas ▸ Opciones ▸ %PRODUCTNAME ▸ Avanzado, seleccione el entorno de ejecución de Java que quiera utilizar."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME necesita un entorno de ejecución de Java (JRE) para realizar esta tarea. El JRE seleccionado es defectuoso. Seleccione otra versión o instale un JRE nuevo y selecciónelo en %PRODUCTNAME ▸ Preferencias ▸ %PRODUCTNAME ▸ Avanzado."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME necesita un entorno de ejecución de Java (JRE) para realizar esta tarea. El JRE seleccionado es defectuoso. Seleccione otra versión o instale un JRE nuevo y selecciónelo en Herramientas ▸ Opciones ▸ %PRODUCTNAME ▸ Avanzado."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Se necesita un JRE"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Seleccionar JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "El JRE es defectuoso"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Código fuente"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Archivo de marcadores"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Imágenes"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Archivo de configuración"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplicación"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tabla de base de datos"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Archivo del sistema"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Documento de MS Word"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Archivo de ayuda"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Documento HTML"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Archivador"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Archivo de registro"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Base de datos de StarOffice"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Patrón de documento de StarWriter 4.0/5.0"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Imagen de StarOffice"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Archivo de texto"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Enlace"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Plantillas de StarOffice 3.0-5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Documento de MS Excel"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Plantilla de MS Excel"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Archivo de lotes"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Archivo"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Carpeta"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Documento de texto"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Hoja de cálculo"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentación"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Dibujo"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Documento HTML"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Patrón de documento"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Fórmula"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Base de datos"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Plantilla de hoja de cálculo de OpenOffice.org 1.0"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Plantilla de dibujo de OpenOffice.org 1.0"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Plantilla de presentación de OpenOffice.org 1.0"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Plantilla de documento de texto de OpenOffice.org 1.0"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unidad local"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Unidad de disco"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Unidad de CD-ROM"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Conexión de red"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Documento de MS PowerPoint"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Plantilla de MS PowerPoint"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Presentación autoejecutable de MS PowerPoint"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Fórmula de OpenOffice.org 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Gráfico de OpenOffice.org 1.0"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Dibujo de OpenOffice.org 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Hoja de cálculo de OpenOffice.org 1.0"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Presentación de OpenOffice.org 1.0"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Documento de texto de OpenOffice.org 1.0"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Patrón de documento de OpenOffice.org 1.0"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Documento de MathML"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Base de datos de OpenDocument"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Dibujo de OpenDocument"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Fórmula de OpenDocument"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Patrón de documento de OpenDocument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Presentación de OpenDocument"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Hoja de cálculo de OpenDocument"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Texto de OpenDocument"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Plantilla de hoja de cálculo de OpenDocument"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Plantilla de dibujo de OpenDocument"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Plantilla de presentación de OpenDocument"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Plantilla de texto de OpenDocument"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Extensión de %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Revisor ortográfico Hunspell"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Divisor de palabras Libhyphen"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Diccionario de sinónimos MyThes"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Lista de palabras ignoradas"
diff --git a/source/es/svx/messages.po b/source/es/svx/messages.po
index 35e124caaf3..00e96707392 100644
--- a/source/es/svx/messages.po
+++ b/source/es/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-09 15:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/es/>\n"
@@ -16331,11 +16331,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Como_dines"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_Comentarios"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/es/sw/messages.po b/source/es/sw/messages.po
index 36a6eb9bbe4..744dfcd0f7a 100644
--- a/source/es/sw/messages.po
+++ b/source/es/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-09 15:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-17 20:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/es/>\n"
"Language: es\n"
@@ -12868,7 +12868,7 @@ msgstr "Sección"
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:271
msgctxt "editsectiondialog|link"
msgid "_Link"
-msgstr "_Vínculo"
+msgstr "En_lace"
#. hDHGK
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:282
@@ -17444,86 +17444,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr "Escriba el número de filas que quiera en la tabla."
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "General"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "_Título"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr "Incluye una fila de título en la tabla."
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Repetir filas de título en _páginas nuevas"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr "Repite el título de la tabla en la parte superior de la página siguiente si la tabla abarca más de una página."
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "No _dividir la tabla en varias páginas"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr "Evita que la tabla se extienda más de una página."
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr "Seleccione el número de filas que quiere usar para el título."
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "_Filas de título:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Opciones"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr "Muestra una previsualización de la selección actual."
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr "Seleccione un estilo predefinido para la tabla nueva."
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Estilos"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr "Inserta una tabla en el documento. También puede pulsar en la flecha, arrastrar para seleccionar la cantidad de filas y columnas que incluir en la tabla y luego pulsar en la última celda."
@@ -20037,289 +20043,289 @@ msgid "Text"
msgstr "Texto"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Conmutar vista de patrón"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Alterna entre las vistas de patrón y normal si se abre un patrón de documento."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Vista de navegación de contenido"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr "Conmuta entre la visualización de todas las categorías del Navegador y la categoría seleccionada."
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Cabecera"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr "Desplaza el cursor a la cabecera, o de esta al área de texto del documento."
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Pie"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr "Desplaza el cursor al pie, o de este al área de texto del documento."
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Ancla ↔ texto"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr "Alterna entre el texto y el ancla de la nota al pie."
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Definir recordatorio"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Pulse aquí para dejar un recordatorio en la posición del cursor. Puede definir hasta cinco recordatorios. Para saltar a un recordatorio, pulse en el icono Navegación, en la ventana Navegación, pulse en el icono Recordatorio y, a continuación, pulse en el botón Recordatorio anterior o Recordatorio siguiente."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Niveles de título mostrados"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr "Pulse en este icono y elija el número de niveles de esquema de títulos que desee ver en la ventana del Navegador."
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Activar/desactivar cuadro de lista"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr "Muestra u oculta la lista del Navegador."
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Subir un nivel"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Aumenta un punto el nivel de esquema del título seleccionado y los títulos que aparecen debajo. Para aumentar solo el nivel de esquema del título seleccionado, mantenga oprimida la tecla Ctrl y, a continuación, pulse en este icono."
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Bajar un nivel"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Reduce un punto el nivel de esquema del título seleccionado y los títulos que aparecen debajo. Para reducir solo el nivel de esquema del título seleccionado, mantenga oprimida la tecla Ctrl y, a continuación, pulse en este icono."
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Subir capítulo un nivel"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Desplaza el título seleccionado, así como el texto que hay debajo de este, una posición hacia arriba en el Navegador y en el documento. Para desplazar únicamente el título seleccionado, sin el texto asociado a este, mantenga oprimida la tecla Ctrl y, a continuación, pulse en este icono."
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Bajar capítulo un nivel"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Desplaza el título seleccionado, así como el texto que hay debajo de este, una posición hacia abajo en el Navegador y en el documento. Para desplazar únicamente el título seleccionado, sin el texto asociado a este, mantenga oprimida la tecla Ctrl y, a continuación, pulse en este icono."
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Modo de arrastre"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr "Configura las opciones de arrastrar y colocar para insertar elementos desde el Navegador al documento, por ejemplo, como hiperenlace. Pulse en este icono y seleccione la opción que desee utilizar."
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Documento"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Ventana activa"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Conmutar vista de patrón"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Alterna entre las vistas de patrón y normal si se abre un patrón de documento."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Editar"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr "Le permite modificar el contenido del componente seleccionado en la lista del Navegador. Si la selección es un archivo, este se abre para su edición. Si la selección es un índice, se abre el cuadro de diálogo Índice."
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Actualizar"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Pulse y seleccione el contenido que desee actualizar."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Insertar"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Inserta un archivo, un índice o un documento nuevo en el patrón de documento."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Guardar contenido también"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr "Guarda una copia del contenido de los archivos enlazados en el patrón de documento. De esta forma, se garantiza la disponibilidad del contenido si no se pudiera acceder a los archivos enlazados."
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Subir"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr "Mueve la selección una posición hacia arriba en la lista del Navegador."
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Bajar"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr "Mueve la selección una posición hacia abajo en la lista del Navegador."
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Selección"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Índices"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Enlaces"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Todo"
diff --git a/source/et/helpcontent2/source/text/scalc/01.po b/source/et/helpcontent2/source/text/scalc/01.po
index fc4ad0c42b0..a43b16e3b6e 100644
--- a/source/et/helpcontent2/source/text/scalc/01.po
+++ b/source/et/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2020-07-09 16:34+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/et/>\n"
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr ""
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/sdraw.po b/source/et/helpcontent2/source/text/sdraw.po
index 3cbd3f78dec..52c0a2365d9 100644
--- a/source/et/helpcontent2/source/text/sdraw.po
+++ b/source/et/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-02 14:07+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/et/>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/shared/00.po b/source/et/helpcontent2/source/text/shared/00.po
index 6ae5465f287..d039681a6b1 100644
--- a/source/et/helpcontent2/source/text/shared/00.po
+++ b/source/et/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-07-28 14:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/et/>\n"
@@ -2675,76 +2675,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "Relatsioonilise andmebaasi näiteks võib tuua andmebaasi, mis sisaldab kliendi, ostude ja arvete tabeleid. Arvete tabelis pole tegelikult andmeid ei klientide ega ostude kohta, vaid hoopis viited relatsioonilise lingi ehk relatsiooni abil klientide ja ostude tabeli vastavatele väljadele (näiteks kliendi ID väljale klientide tabelis)."
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>range paigutus; mõiste</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "Range paigutus"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/et/helpcontent2/source/text/shared/01.po b/source/et/helpcontent2/source/text/shared/01.po
index 84148e21710..53a55e0fcac 100644
--- a/source/et/helpcontent2/source/text/shared/01.po
+++ b/source/et/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-09 16:34+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/et/>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr "Mõne dokumenditüübi jaoks saad valida brošüürina printimise."
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr "Rohkem sätteid"
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr ""
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,13 +9376,13 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "Lülitab sisse ja välja Navigaatori tavalise vaate."
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
msgstr ""
#. 3Lq2G
@@ -9430,13 +9412,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr ""
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
msgstr ""
#. nRB3E
@@ -9466,13 +9448,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Klõpsa ikoonil ja vali sisu, mida soovid uuendada.</ahelp>"
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
msgstr ""
#. F4J5u
@@ -9601,13 +9583,13 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "Faile saab põhidokumenti lisada ka neid hiirega töölaualt Navigaatori põhidokumendi vaatesse lohistades."
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
msgstr ""
#. ijR7M
@@ -9709,13 +9691,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr ""
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
msgstr ""
#. ADEyJ
@@ -9745,13 +9727,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
msgstr ""
#. GqEUL
@@ -9781,13 +9763,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
msgstr ""
#. DLEGF
diff --git a/source/et/helpcontent2/source/text/shared/02.po b/source/et/helpcontent2/source/text/shared/02.po
index 943ef8ee1d8..055fe1a814f 100644
--- a/source/et/helpcontent2/source/text/shared/02.po
+++ b/source/et/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-14 18:34+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/et/>\n"
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Vähenda taanet\">Vähenda taanet</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11059,14 +11059,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Ikoon</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr ""
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Suurenda taanet\">Suurenda taanet</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11131,14 +11131,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Ikoon</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/et/helpcontent2/source/text/shared/optionen.po b/source/et/helpcontent2/source/text/shared/optionen.po
index 52265904a4c..d049ab801c7 100644
--- a/source/et/helpcontent2/source/text/shared/optionen.po
+++ b/source/et/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-06-23 11:14+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/et/>\n"
@@ -11860,32 +11860,32 @@ msgctxt ""
msgid "Snap"
msgstr "Tõmme"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "Tõmbejoontele"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
-msgstr "<variable id=\"anlinie\"><ahelp hid=\".\">Lohistatav objekt haakub hiirenupu vabastamisel lähima tõmbejoone külge.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
+msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "Seda sätet saab joonistuses või esitluses määrata ka <emph>säteteriba</emph> ikooni <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Tõmme tõmbejoontele\"><emph>Tõmme tõmbejoontele</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Tõmme tõmbejoontele\"><emph>Tõmme tõmbejoontele</emph></link></caseinline><defaultinline><emph>Tõmme tõmbejoontele</emph></defaultinline></switchinline> abil."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr ""
#. eUCCJ
#: 01070300.xhp
diff --git a/source/et/helpcontent2/source/text/simpress/02.po b/source/et/helpcontent2/source/text/simpress/02.po
index 74410da2025..f58a5e7ee8a 100644
--- a/source/et/helpcontent2/source/text/simpress/02.po
+++ b/source/et/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-03-08 23:16+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress02/et/>\n"
@@ -5695,41 +5695,41 @@ msgctxt ""
msgid "Exit all groups"
msgstr "Välju kõigist rühmadest"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Tõmme tõmbejoontele"
+msgid "Snap to Snap Guides"
+msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Tõmme tõmbejoontele\">Tõmme tõmbejoontele</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Ikoon</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Tõmme tõmbejoontele"
+msgid "Snap to Snap Guides"
+msgstr ""
#. oXWsX
#: 13150000.xhp
diff --git a/source/et/helpcontent2/source/text/swriter.po b/source/et/helpcontent2/source/text/swriter.po
index 6b39a3f7dde..e2830b4c61c 100644
--- a/source/et/helpcontent2/source/text/swriter.po
+++ b/source/et/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-06-23 11:15+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/et/>\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "Vasakult paremale"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">vasakult paremale ikoon</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "Paremalt vasakule"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">paremalt vasakule ikoon</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/et/helpcontent2/source/text/swriter/01.po b/source/et/helpcontent2/source/text/swriter/01.po
index 1ec3e72eb4d..73181140e99 100644
--- a/source/et/helpcontent2/source/text/swriter/01.po
+++ b/source/et/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-14 18:34+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/et/>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "Navigaator"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Avab dialoogi <emph>Kirjakooste saajad</emph>.</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/swriter/guide.po b/source/et/helpcontent2/source/text/swriter/guide.po
index 674abece6ad..ff35da1cbdd 100644
--- a/source/et/helpcontent2/source/text/swriter/guide.po
+++ b/source/et/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-07-09 16:34+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/et/>\n"
@@ -7792,50 +7792,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Lõikude taane</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr ""
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "Võimalik on muuta aktiivse lõigu, kõikide valitud lõikude ja lõigustiili taandeid."
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "Võimalik on muuta aktiivse lõigu, kõikide valitud lõikude ja lõigustiili taandeid."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "Aktiivse lõigu või kõikide valitud lõikude taande muutmiseks vali <item type=\"menuitem\">Vormindus - Lõik - Taanded ja vahed</item>. Võimalik on ka <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">määrata taandeid joonlaua abil</link>."
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "Võimalik on ka <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">määrata taandeid joonlaua abil</link>. Joonlaua kuvamiseks vali <item type=\"menuitem\">Vaade - Joonlaud</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "Aktiivse lõigu või kõikide valitud lõikude taande muutmiseks vali <item type=\"menuitem\">Vormindus - Lõik - Taanded ja vahed</item>. Võimalik on ka <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">määrata taandeid joonlaua abil</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "Võimalik on ka <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">määrata taandeid joonlaua abil</link>. Joonlaua kuvamiseks vali <item type=\"menuitem\">Vaade - Joonlaud</item>."
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "Kõikide sama lõigustiiliga lõikude taande muutmiseks klõpsa lõigul parempoolse klahviga ja vali <item type=\"menuitem\">Redigeeri lõigu stiili - Taanded ja vahed</item>."
+msgid "Positioning indents"
+msgstr ""
#. qUxKq
#: indenting.xhp
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "Taandeid arvutatakse lehekülje vask- ja parempoolse veerise suhtes. Kui soovid, et lõik ületaks veerisepiiri, sisesta negatiivne väärtus."
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr ""
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "Taanded on sõltuvalt kirjutussuunast erinevad. Näiteks vaata taandeväärtust <item type=\"menuitem\">Enne teksti </item>vasakult-paremalt keeltes. Lõigu vasakserv on taandatud lehekülje vasakveerise suhtes. Paremalt-vasakule keeltes on lõigu paremserv taandatud lehekülje paremveerise suhtes."
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "Taandega lõigu jaoks sisesta väljale <item type=\"menuitem\">Teksti ees</item> positiivne ja väljale <item type=\"menuitem\">Esimese rea ees</item> negatiivne väärtus."
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,14 +10294,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "Arvude tuvastamise sisse- ja väljalülitamine tabelites"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>arvud; automaatne tuvastamine tekstitabelites</bookmark_value> <bookmark_value>tabelid; arvude tuvastamine</bookmark_value> <bookmark_value>kuupäevad; automaatne vormindamine tabelites</bookmark_value> <bookmark_value>tuvastamine; arvud</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10267,14 +10330,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Tee üht järgmistest:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "Klõpsa tabelilahtris ja vali <item type=\"menuitem\">Tabel - Arvude tuvastamine</item>. Kui see funktsioon on sisselülitatud, kuvatakse käsu <item type=\"menuitem\">Arvude tuvastamine</item> ees linnuke."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr "Vali <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Eelistused</caseinline><defaultinline>Tööriistad - Sätted</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Tabelid</item>, ja märgi või tühjenda ruut <item type=\"menuitem\">Arvude tuvastamine</item>."
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12211,6 +12292,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "Dokumendi loomisel, mida soovid printida brošüürina, kasuta lehekülgedel püstpaigutust. Writer rakendab dokumendi printimisel brošüüripaigutust."
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12256,50 +12355,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "Kui printer võimaldab dupleksprintimist, siis tuleb seepärast, et brošüür prinditakse alati rõhtpaigutusega, printeri omaduste dialoogis valida \"kahepoolne - lühem külg\"."
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
-msgstr "Naase dialoogi <emph>Printimine</emph> ja klõpsa nupul <emph>Lehekülje paigutus</emph>."
+msgid "Return to <emph>Print</emph> dialog."
+msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
-msgstr "Vali <emph>Brošüür</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
+msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "Printeri korral, mis prindib automaatselt lehekülje mõlemale poolele, vali säte \"Kõik leheküljed\"."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Klõpsa <emph>Sobib</emph>."
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "Kui %PRODUCTNAME prindib leheküljed vales järjekorras, ava kaardileht <emph>Sätted</emph>, märgi ruut <emph>Prindi leheküljed vastupidises järjekorras</emph> ja prindi dokument uuesti."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr ""
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,32 +12724,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Mitme lehekülje printimine ühele lehele</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
+msgid "Choose <menuitem>File - Print</menuitem>"
msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Tee üht järgmistest:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/et/sc/messages.po b/source/et/sc/messages.po
index 5479f0fbc20..d3d086a5c6d 100644
--- a/source/et/sc/messages.po
+++ b/source/et/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-08-12 05:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-17 20:36+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/et/>\n"
"Language: et\n"
@@ -1469,7 +1469,7 @@ msgstr "Dif-i importimine"
#: sc/inc/globstr.hrc:272
msgctxt "STR_STYLENAME_STANDARD"
msgid "Default"
-msgstr ""
+msgstr "Vaikimisi"
#. TG9pD
#: sc/inc/globstr.hrc:273
@@ -28643,38 +28643,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr "Määrab, kas lahtrite asetamisel lõikepuhvrist vahemikku, mis pole tühi, kuvatakse ülekirjutamise hoiatust."
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Teksti vormindamisel kasutatakse printeri mõõdustikku"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "Määrab, et printeri mõõdustikku kasutatakse nii printimisel kui ka ekraanikuva vormindamisel."
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Valiku esiletõstmine veeru ja rea päises"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr "Määrab, kas valitud ridade ja veergude päised tõstetakse esile või mitte."
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Viidete uuendamine lahtrivahemiku sortimisel"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Sisestussätted"
diff --git a/source/et/sfx2/messages.po b/source/et/sfx2/messages.po
index 889a701eba8..6db01802e3a 100644
--- a/source/et/sfx2/messages.po
+++ b/source/et/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-09-09 17:34+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/et/>\n"
@@ -1655,286 +1655,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Sulge paneel"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Doki"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Doki lahti"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Rohkem sätteid"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Sulge külgriba"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Külgriba seaded"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Kohandamine"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Taasta algseis"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Sulge külgriba"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alisariin"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Meekärg"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Sinine laine"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Joonis"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Eresinine"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Elegantne punane"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fookuses"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Metsaserv"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiratsioon"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Valgushelk"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Mahlakas roheline"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropol"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Öösinine"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Kolm puud ja päike"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Pliiats"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klaver"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfoolio"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progress"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Päikseloojang"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vanamoeline"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Erk"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "USA moodi CV"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Vaikimisi"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modernne"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Modernne ärikiri (seriifideta kirjas)"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Modernne ärikiri (seriifkirjas)"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Logoga visiitkaart"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Lihtne"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN (äriprotsesside modelleerimine)"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Eemalda"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Kustuta kõik"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Parooli pikkus"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Sisestatud parool põhjustab ühilduvusprobleeme. Palun vali parool, mis oleks lühem kui 52 baiti või pikem kui 55 baiti."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}+klõps avab hüperlingi: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Klõps avab hüperlingi: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(kasutuses: %STYLELIST)"
@@ -4165,6 +4129,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Kustuta"
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/et/starmath/messages.po b/source/et/starmath/messages.po
index 51166d50eec..0594f5e8427 100644
--- a/source/et/starmath/messages.po
+++ b/source/et/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-06-30 19:04+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/et/>\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "või"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+ märk"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "- märk"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+- märk"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "-+ märk"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Loogiline EI"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Liitmine +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Lahutamine -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Korrutamine (punkt)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Korrutamine (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Korrutamine (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Jagamine (kaldkriips)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Jagamine (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Jagamine (murd)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Ringis kaldkriips"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Ringis punkt"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Ringis miinus"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Ringis pluss"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Tensorkorrutis"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Loogiline JA"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Loogiline VÕI"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "On võrdne"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Ei ole võrdne"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "On väiksem kui"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "On suurem kui"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "On väiksem või võrdne"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "On suurem või võrdne"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "On väiksem või võrdne"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "On suurem või võrdne"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "On palju väiksem"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "On palju suurem"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "On defineeritud kui"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "On samaväärne"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "On ligikaudu võrdne"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "On sarnane"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "On sarnane või võrdne"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "On proportsionaalne"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "On risti"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "On paralleelne"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Järeldub"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Vastab (vasakul)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Vastab (paremal)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Kuulub hulka"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Ei kuulu hulka"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Sisaldab"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Ühend"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Ühisosa"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Vahe"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Osahulk"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Osahulk või võrdne"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Ülemhulk"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Ülemhulk või võrdne"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Ei ole osahulk"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Ei ole osahulk ega võrdne"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Ei ole ülemhulk"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Ei ole ülemhulk ega võrdne"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Absoluutväärtus"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Faktoriaal"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Ruutjuur"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "n-juur"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Eksponentfunktsioon"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Eksponentfunktsioon"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Naturaallogaritm"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logaritm"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Siinus"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Koosinus"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangens"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Kootangens"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arkussiinus"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arkuskoosinus"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arkustangens"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arkuskootangens"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Hüperboolne siinus"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Hüperboolne koosinus"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Hüperboolne tangens"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Hüperboolne kootangens"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Areasiinus"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Areakoosinus"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Areatangens"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Areakootangens"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Summa"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Summa alaindeksiga"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Summa ülaindeksiga"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Summa üla- ja alaindeksiga"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Korrutis"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Korrutis alaindeksiga"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Korrutis ülaindeksiga"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Korrutis üla- ja alaindeksiga"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Kaaskorrutis"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Kaaskorrutis alaindeksiga"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Kaaskorrutis ülaindeksiga"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Kaaskorrutis üla- ja alaindeksiga"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Piirväärtus"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Piirväärtus alaindeksiga"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Piirväärtus ülaindeksiga"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Piirväärtus üla- ja alaindeksiga"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Alumine piirväärtus"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Alumine piirväärtus alaindeksiga"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Alumine piirväärtus ülaindeksiga"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Alumine piirväärtus üla- ja alaindeksiga"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Ülemine piirväärtus"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Ülemine piirväärtus alaindeksiga"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Ülemine piirväärtus ülaindeksiga"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Ülemine piirväärtus üla- ja alaindeksiga"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Olemasolukvantor"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Olemasolukvantori eitus"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Üldisuskvantor"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integraal"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Integraal alaindeksiga"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Integraal ülaindeksiga"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integraal üla- ja alaindeksiga"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Kahekordne integraal"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Kahekordne integraal alaindeksiga"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Kahekordne integraal ülaindeksiga"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Kahekordne integraal üla- ja alaindeksiga"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Kolmekordne integraal"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Kolmekordne integraal alaindeksiga"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Kolmekordne integraal ülaindeksiga"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Kolmekordne integraal üla- ja alaindeksiga"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Ringintegraal"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Ringintegraal alaindeksiga"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Ringintegraal ülaindeksiga"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Ringintegraal üla- ja alaindeksiga"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Kahekordne ringintegraal"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Kahekordne ringintegraal alaindeksiga"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Kahekordne ringintegraal ülaindeksiga"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Kahekordne ringintegraal üla- ja alaindeksiga"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Kolmekordne ringintegraal"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Kolmekordne ringintegraal alaindeksiga"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Kolmekordne ringintegraal ülaindeksiga"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Kolmekordne ringintegraal üla- ja alaindeksiga"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Akuut"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Ülakriips"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Kaar"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Pööratud katus"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Ring"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Punkt"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Kaksikpunkt"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Kolmikpunkt"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Graavis"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Katus"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tilde"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Vektori tähis"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Harpuun"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Alajoon"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Ülajoon"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Keskjoon"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Läbipaistev"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Paksus kirjas"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Kaldkirjas"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Muuda suurust"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Muuda fonti"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Musta värvi"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Sinist värvi"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Rohelist värvi"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Punast värvi"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Halli värvi"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Laimirohelist värvi"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Kastanpruuni värvi"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Tumesinist värvi"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Oliivrohelist värvi"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Lillat värvi"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Hõbedast värvi"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Sinakasrohelist värvi"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Kollast värvi"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "Kohandatud värvi (RGB)"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Rühmasulud"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Ümarsulud"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Nurksulud"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Topeltnurksulud"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Looksulud"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Noolsulud"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "\"Lagi\""
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "\"Põrand\""
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Püstjooned"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Topeltjooned"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Tehtesulud"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Ümarsulud (skaleeruvad)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Nurksulud (skaleeruvad)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Topeltnurksulud (skaleeruvad)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Looksulud (skaleeruvad)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Noolsulud (skaleeruvad)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "\"Lagi\" (skaleeruv)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "\"Põrand\" (skaleeruv)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Püstjooned (skaleeruvad)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Topeltjooned (skaleeruvad)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Tehtesulud (skaleeruvad)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Evalveeritud väärtusel"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Ülemine looksulg (skaleeruv)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Alumine looksulg (skaleeruv)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Alaindeks paremal"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Aste"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Alaindeks vasakul"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Ülaindeks vasakul"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Alaindeks all"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Ülaindeks üleval"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Väike märgivahe"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Märgivahe"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Reavahetus"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Vertikaalne tulp (2 elemendist)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Vertikaalne tulp"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Maatriks"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Joondus vasakule"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Joondus keskele"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Joondus paremale"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Alef"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Tühi hulk"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Reaalosa"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Imaginaarosa"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Lõpmatus"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Osaline"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrassi p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Punktiir rea teljel"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Tõusev punktiir"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Langev punktiir"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Punktiir all"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Püstine punktiir"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Seostamine"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Jagamine (lai kaldkriips)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Jagamine (lai längkriips)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Jagub"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Ei jagu"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Topeltnool vasakule"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Topeltnool vasakule ja paremale"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Topeltnool paremale"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Naturaalarvude hulk"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Täisarvude hulk"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Ratsionaalarvude hulk"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Reaalarvude hulk"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Kompleksarvude hulk"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Lai katus"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Lai tilde"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Lai vektori tähis"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Lai harpuun"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h kriipsuga"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda kriipsuga"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Nool vasakule"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Nool paremale"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Nool üles"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Nool alla"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Mittetühik"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Eelneb"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Eelneb või on võrdne"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Eelneb või on ekvivalentne"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Järgneb"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Järgneb või on võrdne"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Järgneb või on ekvivalentne"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Ei eelne"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Ei järgne"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Unaarsed/binaarsed tehted"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Seosed"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Tehted hulkadega"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funktsioonid"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operaatorid"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Atribuudid"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Sulud"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Vormindus"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Muud"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Näited"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Ümbermõõt"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Massi ja energia samaväärsus"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Pythagorase teoreem"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Gaussi jaotus"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standardne"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kaldkiri"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Paks"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "must"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "sinine"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "roheline"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "punane"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "hall"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "laimiroheline"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "pruun"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "tumesinine"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliivroheline"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "lilla"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "hõbedane"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "sinakasroheline"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "kollane"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "peidetud"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "suurus"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "font"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "vasakule"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "keskele"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "paremale"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Käsud"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Valem"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Dokumendi salvestamine..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION valem"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "VIGA : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Sobimatu sümbol"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Sobimatu sümbol"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Oodati '{'"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Oodati '}'"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Oodati '('"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Oodati ')'"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Vasak- ja parempoolne sümbol ei sobi kokku"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Oodati 'fixed', 'sans' või 'serif'"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "Sobimatu sümbol 'size' järel"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Topeltjoondus pole lubatud"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Topelt üla- või alaindeksid pole lubatud"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Oodati '#'"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Värv on vajalik"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Oodati 'RIGHT'"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Sisu"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Tiitel"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Valemi tekst"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Ää~rised"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Suurus"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "~Originaalsuurus"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Mahutatakse ~leheküljele"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skaleeritud"
diff --git a/source/et/svtools/messages.po b/source/et/svtools/messages.po
index b7aaf6e7726..93a0a5ec809 100644
--- a/source/et/svtools/messages.po
+++ b/source/et/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-06-23 11:13+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/et/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Võta tagasi: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Tee uuesti: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Korda: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Vormindamata tekst"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Vormindamata tekst (TSV, Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bittrasterpilt (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface'i metafail (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Vormindatud tekst (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Vormindatud tekst (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME'i joonistusvorming"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView' bittraster/animatsioon (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Olekuinfo Svx siselingist"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME'i link (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape'i järjehoidja"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star serveri vorming"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star objekti vorming"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Apleti objekt"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Plugina objekt"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 objekt"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 objekt"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 objekt"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 objekt"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 objekt"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 objekt"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 objekt"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw' objekt"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 objekt"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 objekt"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 objekt"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc objekt"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 objekt"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 objekt"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarCharti objekt"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 objekt"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 objekt"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage objekt"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 objekt"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 objekt"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath objekt"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 objekt"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 objekt"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint objekt"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (lihtne HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE link)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Wordi objekt"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet objekt"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office dokumendi objekt"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Märkmete dokumendi info"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx dokument"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 objekt"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Pildiobjekt"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writeri objekt"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writeri/veebi objekt"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writeri põhiobjekt"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw' objekt"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impressi objekt"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calci objekt"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Charti objekt"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Mathi objekt"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windowsi metafail"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Andmeallika objekt"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Andmeallika tabel"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL-päring"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 dialoog"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Link"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-vorming ilma kommentaarideta"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphics (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objekti % lisamine ei õnnestunud."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objekti lisamine failist % ei õnnestunud."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Muud objektid"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Tundmatu server"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "baiti"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1234 +501,1234 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Tärk"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Tavaline"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Märgistik"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Sõnastik"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Joon"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikaal"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefoniraamat"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Foneetiline (tärgid alguses)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Foneetiline (tärgid lõpus)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Tärk"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Sõnastik"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikaal"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Joon"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Foneetiline (tärgid alguses, silpide järgi rühmitatud)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Foneetiline (tärgid alguses, konsonantide järgi rühmitatud)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Foneetiline (tärgid lõpus, silpide järgi rühmitatud)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Foneetiline (tärgid lõpus, konsonantide järgi rühmitatud)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Kerge"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Kerge kaldkiri"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Harilik"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kaldkiri"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Paks"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Paks kaldkiri"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Must"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Must kaldkiri"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Raamatukiri"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Paks viltukiri"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Tihendatud"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Tihendatud kaldkiri"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Tihendatud paks kaldkiri"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Tihendatud paks viltukiri"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Tihendatud kaldkiri"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Tihendatud viltukiri"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Ülikerge"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Ülikerge kaldkiri"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Viltukiri"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Poolpaks"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Poolpaks kaldkiri"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Sama fonti kasutatakse nii printeris kui ka ekraanil."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "See on printeri font. Ekraanilolev pilt võib erineda."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Seda fondistiili simuleeritakse või kasutatakse lähimat sobivat stiili."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "See font pole paigaldatud. Kasutatakse lähimat saadaolevat."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Liiguta algusse"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Nihuta vasakule"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Nihuta paremale"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Liiguta lõppu"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Lisa"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Rõhtjoonlaud"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Püstjoonlaud"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1-bitine lävi"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1-bitine virvtoonimine"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4-bitised halltoonid"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4-bitised värvid"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8-bitised halltoonid"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8-bitised värvid"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24-bitised loomutruud värvid"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Pilt vajab umbes %1 KB mälu."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Pilt vajab umbes %1 KB mälu, faili suurus on %2 KB."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Faili suurus on %1 KB."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "host"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Muu CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Valmis"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Paus"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Kustutamise ootel"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Hõivatud"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Lähtestamine"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Ootel"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Soojenemine"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Töötlemine"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Printimine"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Ühenduseta"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Tõrge"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Tundmatu server"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Paberiummistus"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Paberit pole piisavalt"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Käsitsisööt"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Paberiprobleem"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O aktiivne"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Väljastussalv on täis"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Tooner on otsakorral"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Tooner on otsas"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Kustuta lehekülg"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Nõutav kasutaja sekkumine"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Mälu pole piisavalt"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Kaas on lahti"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Energiasäästurežiim"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Vaikimisi printer"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumenti"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<puudub>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Ettevõte"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Osakond"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Eesnimi"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Perekonnanimi"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Tänav"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Riik"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Sihtnumber"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Linn"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Tiitel"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Ametikoht"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Kõnetlussõna"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Initsiaalid"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Viisakas hüvastijätt"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Kodune telefon"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Töötelefon"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Faks"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-post"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Märkus"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Kasutaja 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Kasutaja 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Kasutaja 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Kasutaja 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Maakond"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Kontoritelefon"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Peiler"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobiil"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Muu telefon"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalender"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Küllakutse"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$ $service$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME'i seadistust on muudetud. Vali menüüst %PRODUCTNAME - Eelistused - %PRODUCTNAME - Edasijõudnuile ja vali Java töökeskkond, mida soovid %PRODUCTNAME'il kasutada lasta."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME'i seadistust on muudetud. Vali menüüst Tööriistad - Sätted - %PRODUCTNAME - Edasijõudnuile ja vali Java töökeskkond, mida soovid %PRODUCTNAME'il kasutada lasta."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME vajab antud ülesande täitmiseks Java töökeskkonda (JRE). Valitud JRE on vigane. Palun vali mõni muu versioon või paigalda uus JRE ja seejärel vali see dialoogist %PRODUCTNAME - Eelistused - %PRODUCTNAME - Edasijõudnuile."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME vajab antud ülesande täitmiseks Java töökeskkonda (JRE). Valitud JRE on vigane. Palun vali mõni muu versioon või paigalda uus JRE ja seejärel vali see dialoogist Tööriistad - Sätted - %PRODUCTNAME - Edasijõudnuile."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE on nõutav"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE valimine"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE on vigane"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Lähtetekst"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Järjehoidjate fail"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Pilt"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Häälestusfail"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Rakendus"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Andmebaasi tabel"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Süsteemne fail"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Wordi dokument"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Abifail"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-dokument"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Arhiiv"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Logifail"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice'i andmebaas"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 põhidokument"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice'i pilt"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekstifail"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Link"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 mall"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Exceli dokument"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Exceli mall"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batch-fail"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Fail"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Kaust"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tekstidokument"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Arvutustabel"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Esitlus"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Joonistus"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-dokument"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Põhidokument"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Valem"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Andmebaas"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 arvutustabeli mall"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 joonistuse mall"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 esitluse mall"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 tekstidokumendi mall"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Kohalik ketas"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Kettaseade"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-seade"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Võrguühendus"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPointi dokument"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPointi mall"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPointi esitlus"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 valem"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 diagramm"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 joonistus"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 arvutustabel"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 esitlus"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 tekstidokument"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 põhidokument"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML-dokument"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument-andmebaas"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument-joonistus"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument-valem"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument-põhidokument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument-esitlus"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument-arvutustabel"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument-tekst"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument-arvutustabeli mall"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument-joonistuse mall"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument-esitluse mall"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument-tekstimall"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME'i laiendus"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspelli õigekirjakontroll"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhypheni poolitaja"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Mythesi tesaurus"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Eiratavate sõnade loend"
diff --git a/source/et/svx/messages.po b/source/et/svx/messages.po
index 98eeda26128..94d356f5446 100644
--- a/source/et/svx/messages.po
+++ b/source/et/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-08 12:11+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/et/>\n"
@@ -16332,11 +16332,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Metamärgid"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "Märkused"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/et/sw/messages.po b/source/et/sw/messages.po
index 7f9c334630f..8977e83d24f 100644
--- a/source/et/sw/messages.po
+++ b/source/et/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-09 15:34+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/et/>\n"
@@ -17444,86 +17444,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr "Sisesta soovitud ridade arv."
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Üldine"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "Päis"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Päiseridade kordamine uutel lehekülgedel"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Tabelit ei tükeldata üle mitme lehekülje"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr "Sisesta soovitud ridade arv."
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Päiseridu:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Sätted"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Stiilid"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20037,289 +20043,289 @@ msgid "Text"
msgstr "Tekst"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Põhidokumendivaade"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Lülitub põhidokumendi vaate ja tavalise vaate vahel, kui põhidokument on avatud."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Sisuvaade"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Päis"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Jalus"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Ankur<->Tekst"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Säti meeldetuletus"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Kuvatavaid pealkirjatasemeid"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr "Klõpsa sellel ikoonil ja vali pealkirja liigendustasemete arv, mida soovid navigaatoriaknas kuvada."
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Loendikast sees/väljas"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Liigenda taseme võrra vasakule"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Tõstab valitud pealkirja ja selle pealkirja all olevate pealkirjade liigendustaset ühe võrra. Kui soovid tõsta üksnes valitud pealkirja liigendustaset, hoia sellel ikoonil klõpsamise ajal all Ctrl-klahvi."
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Liigenda taseme võrra paremale"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Alandab valitud pealkirja ja selle pealkirja all olevate pealkirjade liigendustaset ühe võrra. Kui soovid alandada üksnes valitud pealkirja liigendustaset, hoia sellel ikoonil klõpsamise ajal all Ctrl-klahvi."
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Tõsta peatükki"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Liigutab valitud pealkirja ja pealkirja all oleva teksti dokumendis (ja seega ka Navigaatoris) ühe pealkirjakoha võrra ülespoole. Kui soovid liigutada üksnes valitud pealkirja, mitte aga sellega seotud teksti, hoia sellel ikoonil klõpsamise ajal all Ctrl-klahvi."
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Langeta peatükki"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Liigutab valitud pealkirja ja pealkirja all oleva teksti dokumendis (ja seega ka Navigaatoris) ühe pealkirjakoha võrra allapoole. Kui soovid liigutada üksnes valitud pealkirja, mitte aga sellega seotud teksti, hoia sellel ikoonil klõpsamise ajal all Ctrl-klahvi."
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Lohistusrežiim"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Dokument"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Aktiivne aken"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Põhidokumendivaade"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Lülitub põhidokumendi vaate ja tavalise vaate vahel, kui põhidokument on avatud."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Redigeeri"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Värskenda"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Klõpsa ikoonil ja vali sisu, mida soovid uuendada."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Lisa"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Lisab põhidokumenti faili, sisukorra või uue dokumendi."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Salvestatakse ka sisu"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Nihuta üles"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Nihuta alla"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Valik"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Registrid"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Lingid"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Kõik"
diff --git a/source/eu/helpcontent2/source/text/scalc/01.po b/source/eu/helpcontent2/source/text/scalc/01.po
index 715141a20ff..246d28a4911 100644
--- a/source/eu/helpcontent2/source/text/scalc/01.po
+++ b/source/eu/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2020-10-25 19:35+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/eu/>\n"
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr "Adierazpen erregularrak eta habiaratutako funtzioak erabiltzea"
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/sdraw.po b/source/eu/helpcontent2/source/text/sdraw.po
index 98819b99e37..964298fe76a 100644
--- a/source/eu/helpcontent2/source/text/sdraw.po
+++ b/source/eu/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-06-29 11:28+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/eu/>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/00.po b/source/eu/helpcontent2/source/text/shared/00.po
index ed4f8da9c5a..97c429a5aae 100644
--- a/source/eu/helpcontent2/source/text/shared/00.po
+++ b/source/eu/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-10-25 19:35+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/eu/>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "Datu-base erlazionalak nolakoak diren ikusteko, erosketa bat jarriko dugu adibide gisa, bezeroen, erosketen eta fakturen taulak dituen datu-base batean. Faktura taulan ez dira agertzen bezeroen edo erosketen datuak; bezeroen eta erosketen tauletako eremuen erreferentziak agertuko dira, lotura erlazional edo erlazio bidez. Adibidez, bezeroaren izena agertu beharrean, bezero-taulako bezeroaren IDa agertuko da."
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>Erregistro-berdintasuna; definizioa</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "Erregistroan egiaztatuta"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/eu/helpcontent2/source/text/shared/01.po b/source/eu/helpcontent2/source/text/shared/01.po
index d6226126241..6d1407403a9 100644
--- a/source/eu/helpcontent2/source/text/shared/01.po
+++ b/source/eu/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-25 19:35+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/eu/>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr "Dokumentu mota batzuentzako, liburuxka bat inprimatzea aukera dezakezu."
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr "Aukera gehiago"
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr "<ahelp hid=\".\"><emph>Aukera gehiago</emph> leihoan uneko inprimatze-lanerako aukera gehiago ezarri ditzakezu.</ahelp>"
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,14 +9376,14 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "Maisuaren ikuspegitik ikuspegi normalera aldatzen da, eta alderantziz."
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Ikonoa</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgstr ""
#. 3Lq2G
#: 02110000.xhp
@@ -9430,14 +9412,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_EDIT\">Editatu <emph>Nabigatzailearen</emph> zerrendan hautatutako osagaien edukia. Hautatutakoa fitxategia bada, fitxategia editatzeko irekiko da. Hautatutakoa indize bat bada, <emph>Indizea</emph> elkarrizketa-koadroa irekiko da.</ahelp>"
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Ikonoa</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgstr ""
#. nRB3E
#: 02110000.xhp
@@ -9466,14 +9448,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Egin klik eta aukeratu eguneratu nahi duzun edukia.</ahelp>"
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Ikonoa</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgstr ""
#. F4J5u
#: 02110000.xhp
@@ -9601,14 +9583,14 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "Dokumentu maisuan fitxategiak txertatzeko mahaigainetik fitxategi bat arrastatu eta Nabigatzailearen ikuspegi maisura jaregin."
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Ikonoa</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgstr ""
#. ijR7M
#: 02110000.xhp
@@ -9709,14 +9691,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Estekatutako fitxategien edukiaren kopia bat gordetzen du dokumentu maisuan. Horrek estekatutako fitxategietara ezin denean sartu uneko edukia erabilgarri egongo dela ziurtatzen du.</ahelp>"
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Ikonoa</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgstr ""
#. ADEyJ
#: 02110000.xhp
@@ -9745,14 +9727,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Hautapena toki bat gora mugitzen du nabigatzailearen zerrendan.</ahelp> Sarrerak eraman daitezke zerrendan arrastatuz eta jareginez ere. Testu zati bat beste testu zati batera eramanez gero, testu zatiak batu egiten dira."
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Ikonoa</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgstr ""
#. GqEUL
#: 02110000.xhp
@@ -9781,14 +9763,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Hautapena toki bat gora mugitzen du nabigatzailearen zerrendan.</ahelp> Sarrerak eraman daitezke zerrendan arrastatuz eta jareginez ere. Testu zati bat beste testu zati batera eramanez gero, testu zatiak batu egiten dira."
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
-msgstr "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Ikonoa</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgstr ""
#. DLEGF
#: 02110000.xhp
diff --git a/source/eu/helpcontent2/source/text/shared/02.po b/source/eu/helpcontent2/source/text/shared/02.po
index e58962215da..3e48c5359ae 100644
--- a/source/eu/helpcontent2/source/text/shared/02.po
+++ b/source/eu/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-06-24 10:16+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/eu/>\n"
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr "<bookmark_value>paragrafoak;txikitu koskatzea</bookmark_value><bookmark_value>txikitu paragrafoaren koskatzea</bookmark_value>"
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Txikitu koska</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11059,14 +11059,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Multzoka hautatutako hainbat paragraforen koska aurretik handitu bada, komando honek hautatutako paragrafo guztien koska txikitu dezake. </caseinline><caseinline select=\"CALC\">Gelaxkako edukiak <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Formatua - Gelaxkak - Lerrokatzea</emph></link> aukerako uneko balioari egiten dio kasu.</caseinline></switchinline>"
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Ikonoa</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr "<bookmark_value>paragrafoak;handitu koskatzea</bookmark_value><bookmark_value>handitu paragrafoaren koskatzea</bookmark_value>"
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Handitu koska</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11131,14 +11131,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Paragrafo bat baino gehiago hautatzen bada, hautatutako paragrafo guztien koska handituko da. </caseinline><caseinline select=\"CALC\">Gelaxka-edukiek <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Formatua - Gelaxkak - Lerrokatzea</emph></link> fitxan dagoen uneko balioari egiten diote erreferentzia. </caseinline></switchinline>"
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/eu/helpcontent2/source/text/shared/optionen.po b/source/eu/helpcontent2/source/text/shared/optionen.po
index 5e263601d32..3978e36440c 100644
--- a/source/eu/helpcontent2/source/text/shared/optionen.po
+++ b/source/eu/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-12 20:34+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/eu/>\n"
@@ -11860,32 +11860,32 @@ msgctxt ""
msgid "Snap"
msgstr "Atxiki"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "Doitze-lerroetara"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
-msgstr "<variable id=\"anlinie\"><ahelp hid=\".\">Arrastatutako objektu baten ertza atxikitze-lerro hurbilenari atxikitzen dio sagua askatzen denean.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
+msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "Ezarpen hau ere defini dezakezu horrela:<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Guides\"><emph>Atxiki doitze-lerroei</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Guides\"><emph>Atxiki doitze-lerroei</emph></link></caseinline><defaultinline><emph>Atxiki doitze-lerroei</emph></defaultinline></switchinline> ikonoa erabiliz, erabilgarri dagoena aurkezpen edo marrazki-dokumentu bateko <emph>Aukerak</emph> barran."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr ""
#. eUCCJ
#: 01070300.xhp
diff --git a/source/eu/helpcontent2/source/text/simpress/02.po b/source/eu/helpcontent2/source/text/simpress/02.po
index 05586db9711..a3d6c6deb07 100644
--- a/source/eu/helpcontent2/source/text/simpress/02.po
+++ b/source/eu/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-04-26 09:16+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress02/eu/>\n"
@@ -5695,41 +5695,41 @@ msgctxt ""
msgid "Exit all groups"
msgstr "Atera talde guztietatik"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Doitu doitze-lerroetara"
+msgid "Snap to Snap Guides"
+msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Doitu doitze-lerroetara</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Ikonoa</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Doitu doitze-lerroetara"
+msgid "Snap to Snap Guides"
+msgstr ""
#. oXWsX
#: 13150000.xhp
diff --git a/source/eu/helpcontent2/source/text/swriter.po b/source/eu/helpcontent2/source/text/swriter.po
index cb80942c02f..43558768039 100644
--- a/source/eu/helpcontent2/source/text/swriter.po
+++ b/source/eu/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-25 13:35+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/eu/>\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "Ezkerretik eskuinera"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">ezkerretik eskuinerako ikonoa</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "Eskuinetik ezkerrera"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">eskuinetik ezkerrerako ikonoa</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/eu/helpcontent2/source/text/swriter/01.po b/source/eu/helpcontent2/source/text/swriter/01.po
index a084cdf86b1..bf892a6525d 100644
--- a/source/eu/helpcontent2/source/text/swriter/01.po
+++ b/source/eu/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-06-02 11:49+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/eu/>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "Nabigatzailea"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\"><emph>Posta-konbinazioko hartzaileak</emph> elkarrizketa-koadroa irekitzen du.</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/swriter/guide.po b/source/eu/helpcontent2/source/text/swriter/guide.po
index 6eb339ad15e..c7283a15a5c 100644
--- a/source/eu/helpcontent2/source/text/swriter/guide.po
+++ b/source/eu/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-08-12 11:35+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/eu/>\n"
@@ -7792,50 +7792,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Paragrafoak koskatzea</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr "Neurri-unitateak aldatzeko, aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Hobespenak</item></caseinline><defaultinline><item type=\"menuitem\">Tresnak - Aukerak</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Orokorra</item>, eta gero hautatu beste neurri-unitate bat 'Ezarpenak' arean."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "Koskak uneko paragraforako, hautatutako paragrafo guztietarako edo paragrafo-estilo baterako alda ditzakezu."
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "Koskak uneko paragraforako, hautatutako paragrafo guztietarako edo paragrafo-estilo baterako alda ditzakezu."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "Aukeratu <item type=\"menuitem\">Formatua - Paragrafoa - Koskak eta tarteak</item> uneko paragrafoaren edo hautatutako paragrafo guztien koskak aldatzeko. <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">Erregela erabilita ere</link> ezar ditzakezu koskak."
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "Erregela erabiliz ere <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">ezar daitezke koskak</link>. Erregela bistaratzeko, aukeratu <item type=\"menuitem\">Ikusi - Erregela</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "Aukeratu <item type=\"menuitem\">Formatua - Paragrafoa - Koskak eta tarteak</item> uneko paragrafoaren edo hautatutako paragrafo guztien koskak aldatzeko. <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">Erregela erabilita ere</link> ezar ditzakezu koskak."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "Erregela erabiliz ere <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">ezar daitezke koskak</link>. Erregela bistaratzeko, aukeratu <item type=\"menuitem\">Ikusi - Erregela</item>."
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "Egin eskuineko klik paragrafo batean eta aukeratu <item type=\"menuitem\">Editatu paragrafo-estiloa - Koskak eta tarteak</item>, paragrafo-estilo bera dute paragrafo guztien koskak aldatzeko."
+msgid "Positioning indents"
+msgstr ""
#. qUxKq
#: indenting.xhp
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "Koskak ezkerreko eta eskuineko orri-marjinen arabera kalkulatzen dira. Paragrafoa orri-marjinarantz hedatu nahi baduzu, sartu zenbaki negatibo bat."
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr "Neurri-unitateak aldatzeko, aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Hobespenak</item></caseinline><defaultinline><item type=\"menuitem\">Tresnak - Aukerak</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Orokorra</item>, eta gero hautatu beste neurri-unitate bat 'Ezarpenak' arean."
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "Koskak desberdinak dira idazteko noranzkoaren arabera. Esaterako, begiratu <item type=\"menuitem\">Testuaren aurretik</item> koska-balioa ezkerretik eskuinerako hizkuntzetan. Paragrafoaren ezkerreko ertzari ezkerreko orrialde-marjinarekiko ezarriko zaio koska. Eskuinetik ezkerrerako hizkuntzetan, paragrafoaren eskuineko ertzari eskuineko orrialde-marjinarekiko ezarriko zaio koska."
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "Alderantzizko kosketarako, sartu balio positiboa <item type=\"menuitem\">Testuaren aurretik</item> aukeran eta balio negatiboa <item type=\"menuitem\">Lehen lerroa</item> aukeran."
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,14 +10294,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "Zenbaki-ezagutzea aktibatzea edo desaktibatzea tauletan"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>zenbakiak; automatikoki ezagutzea testu-tauletan</bookmark_value> <bookmark_value>taulak; zenbaki-ezagutzea</bookmark_value> <bookmark_value>datak;formatu automatikoa tauletan</bookmark_value> <bookmark_value>ezagutzea;zenbakiak</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10267,14 +10330,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Egin ekintza hauetako bat:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "Egin eskuineko klik taula-gelaxka batean eta aukeratu <item type=\"menuitem\">Zenbaki-ezagutzea</item>. Eginbide hori ondo dagoenean, kontrol-lauki bat bistaratuko da <item type=\"menuitem\">Zenbaki-ezagutzea</item> komandoaren aurrean."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr "Aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Hobespenak</caseinline><defaultinline>Tresnak - Aukerak</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Taula</item>, eta hautatu edo garbitu <item type=\"menuitem\">Zenbaki-ezagutzea</item> kontrol-laukia."
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12211,6 +12292,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "Liburuxka gisa inprimatu nahi duzun dokumentua sortzean, erabili orientazio bertikala. Writer dokumentua inprimatzean aplikatzen du liburuxkaren diseinua."
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12256,50 +12355,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "Inprimagailuak inprimatze bikoitzaren funtzioa badu, \"bikoitza - ertz laburra\" ezarpena erabili behar duzu inprimagailuaren ezarpenen elkarrizketa-koadroan, liburuxkak beti horizontalean inprimatzen baitira."
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
-msgstr "<emph>Inprimatu</emph> elkarrizketa-koadrora itzultzeko, egin klik <emph>Orrialde-diseinua</emph> fitxan."
+msgid "Return to <emph>Print</emph> dialog."
+msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
-msgstr "Hautatu <emph>Liburuxka</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
+msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "Orri baten bi aldeetan automatikoki inprimatzen duen inprimagailuetan, zehaztu \"Orrialde guztiak\"."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Sakatu <emph>Ados</emph>."
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "%PRODUCTNAME(e)k orrialdeak okerreko ordenan inprimatzen baditu, ireki <emph>Aukerak</emph> fitxa, hautatu <emph>Inprimatu orrialdeak alderantzizko ordenan</emph>, eta ondoren inprimatu dokumentua berriro."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">Fitxategia - Inprimatzeko aurrebista</link>."
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,32 +12724,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Orrialde bat baino gehiago orri bakarrean inprimatzea</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
-msgstr "<emph>Orrialde-diseinua</emph> fitxa-orrian, <item type=\"menuitem\">Fitxategia - Inprimatu</item> elkarrizketa-koadroan, orri bakarrean orrialde bat baino gehiago inprimatzeko aukera dago."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
+msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
-msgstr "Aukeratu <emph>Fitxategia - Inprimatu</emph> eta klik egin <emph>Orrialde-diseinua</emph> fitxan."
+msgid "Choose <menuitem>File - Print</menuitem>"
+msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Egin ekintza hauetako bat:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/eu/sc/messages.po b/source/eu/sc/messages.po
index 0d4304682f1..ac9c0bcb424 100644
--- a/source/eu/sc/messages.po
+++ b/source/eu/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-11 20:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/eu/>\n"
"Language: eu\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562221465.000000\n"
#. kBovX
@@ -1469,7 +1469,7 @@ msgstr "Dif inportazioa"
#: sc/inc/globstr.hrc:272
msgctxt "STR_STYLENAME_STANDARD"
msgid "Default"
-msgstr ""
+msgstr "Lehenetsia"
#. TG9pD
#: sc/inc/globstr.hrc:273
@@ -28624,38 +28624,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr "Arbeletik hartutako gelaxkak hutsik ez dagoen gelaxka-barruti batean itsasten dituzunean, abisu bat agertuko dela zehazten du."
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Erabili inprimagailuaren metrikak testuari formatua emateko"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "Inprimagailuaren neurriak inprimatzeko eta pantaila-bistaratzea formateatzeko ere aplika daitezela zehazten du."
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "_Nabarmendu hautapena zutabeen/errenkaden goiburukoetan"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr "Hautatutako zutabe edo errenkadetako goiburukoak nabarmendu egingo diren zehazten du."
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Eguneratu erreferentziak gelaxka-barrutiak ordenatzean"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Sarrera-ezarpenak"
diff --git a/source/eu/sfx2/messages.po b/source/eu/sfx2/messages.po
index af9c4691984..f7dc7a47c6b 100644
--- a/source/eu/sfx2/messages.po
+++ b/source/eu/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-11-08 11:35+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/eu/>\n"
@@ -1655,286 +1655,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Itxi panela"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Atrakatu"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Desatrakatu"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Aukera gehiago"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Itxi alboko barraren panela"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Alboko barraren ezarpenak"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Pertsonalizazioa"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Berrezarri balio lehenetsia"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Itxi alboko barra"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarina"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Erlauntza"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Kurba urdina"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Zianotipoa"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Urdin argia"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Gorri dotorea"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokua"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Basoko txoria"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Inpresioa"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspirazioa"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Argiak"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Berde joria"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolia"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Gaueko urdina"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Naturako ilustrazioa"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Arkatza"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Pianoa"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Paper-zorroa"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progresioa"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Ilunabarra"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Antzinakoa"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Bizia"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Laburpena"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Lehenetsia"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modernoa"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Enpresa-gutun modernoa, sans serif"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Enpresa-gutun modernoa, serif"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Aurkezpen-txartel logoduna"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Sinplea"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Kendu"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Garbitu dena"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Pasahitzaren luzera"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Sartutako pasahitzak bateragarritasun-arazoak sortzen ditu. Sartu 52 byte baino gutxiago edo 55 byte baino gehiago dituen pasahitz bat."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-klik hiperesteka irekitzeko: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Egin klik hiperesteka irekitzeko: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(honek erabilia: %STYLELIST)"
@@ -4165,6 +4129,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Ezabatu..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/eu/starmath/messages.po b/source/eu/starmath/messages.po
index cbccb4aba56..684dd0baacf 100644
--- a/source/eu/starmath/messages.po
+++ b/source/eu/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-11-14 08:36+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/eu/>\n"
@@ -424,2065 +424,2198 @@ msgid "or"
msgstr "edo"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+ ikurra"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "- ikurra"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+- ikurra"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "-+ ikurra"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "EZ logikoa"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Batuketako +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Kenketa -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Biderketa (puntua)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Biderketa (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Biderketa (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Zatiketa (barra)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Zatiketa (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Zatiketa (zatikia)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Zirkulu barruko barra"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Zirkulu barruko puntua"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Zirkulu barruko minus ikurra"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Zirkulu barruko plus ikurra"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Tentsore-biderkadura"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "ETA logikoa"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "EDO logikoa"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Berdina da"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Ez da berdina"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Hau baino txikiagoa da"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Hau baino handiagoa da"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Hau baino txikiagoa edo berdina da"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Hau baino handiagoa edo berdina da"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Hau baino txikiagoa edo berdina da"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Hau baino handiagoa edo berdina da"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Hau baino askoz ere txikiagoa"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Hau baino askoz ere handiagoa"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Honela dago definituta:"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Kongruentea da honekin"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Gutxi gorabehera berdina da"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Honen antzekoa da"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Antzekoa edo berdina da"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Proportzionala da honekin"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Ortogonala da honekin"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Honen paraleloa da"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Joera du"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Honi dagokio (ezkerra):"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Honi dagokio (eskuina):"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Hemen dago"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Ez dago hemen"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Hau dauka"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Batura"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Ebakidura"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Desberdintasuna"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Azpimultzoa"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Azpimultzoa edo honen berdina da"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Gaineko multzoa"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Gaineko multzoa edo berdina da"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Ez da azpimultzoa"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Ez da azpimultzoa edo berdina"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Ez da gaineko multzoa"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Ez da gaineko multzoa edo berdina"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr "Funtzio orokorra"
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Balio absolutua"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Faktoriala"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Erro karratua"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "n. erroa"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Funtzio esponentziala"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Funtzio esponentziala"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Logaritmo naturala"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logaritmoa"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sinua"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Kosinua"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangentea"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Kotangentea"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arku sinua"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arku kosinua"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arku tangentea"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arku kotangentea"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Sinu hiperbolikoa"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Kosinu hiperbolikoa"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Tangente hiperbolikoa"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Kotangente hiperbolikoa"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Arearen sinu hiperbolikoa"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Arearen kosinu hiperbolikoa"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Arearen tangente hiperbolikoa"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Arearen kotangente hiperbolikoa"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr "Eragile orokorra"
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr "Eragile orokorra azpiindizea behean"
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr "Eragile orokorra goi-indizea goian"
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr "Eragile orokorra goi/azpiindizea"
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Batura"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Batura azpiindizea behean"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Batura goi-indizea goian"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Batura goi/azpiindizea"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Biderkadura"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Biderkadura azpiindizea behean"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Biderkadura goi-indizea goian"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Biderkadura goi/azpiindizea"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Koproduktua"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Koproduktu azpiindizea behean"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Koproduktu goi-indizea goian"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Koproduktu goi/azpiindizea"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Limiteak"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Limite azpiindizea behean"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Limite goi-indizea goian"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Limite goi/azpiindizea"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Beheko limitea"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Beheko limite azpiindizea behean"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Beheko limite goi-indizea goian"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Beheko limitea azpi/goi-indizea"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Goiko limitea"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Goiko limite azpiindizea behean"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Goiko limite goi-indizea goian"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Goiko limitea azpi/goi-indizea"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Badago"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Ez dago"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Guztientzat"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integrala"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Integral azpiindizea behean"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Integral goi-indizea goian"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integral goi/azpiindizea"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Integral bikoitza"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Integral bikoitz azpiindizea behean"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Integral bikoitz goi-indizea goian"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Integral bikoitz goi/azpiindizea"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Integral hirukoitza"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Integral hirukoitz azpiindizea behean"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Integral hirukoitz goi-indizea goian"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Integral hirukoitz goi/azpiindizea"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Kurba-integrala"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Kurba-integral azpiindizea behean"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Kurba-integral goi-indizea goian"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Kurba-integral goi/azpiindizea"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Kurba-integral bikoitza"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Kurba-integral bikoitz azpiindizea behean"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Kurba-integral bikoitz goi-indizea goian"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Kurba-integral bikoitz goi/azpiindizea"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Kurba-integral hirukoitza"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Kurba-integral hirukoitz azpiindizea behean"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Kurba-integral hirukoitz goi-indizea goian"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Kurba-integral hirukoitz goi/azpiindizea"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Azentu zorrotza"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Marra gainean"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Laburra"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Alderantzizko zirkunflexua"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Zirkulua"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Puntua"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Puntu bikoitza"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Puntu hirukoitza"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Azentu kamutsa"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Zirkunflexua"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tileta"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Bektore-gezia"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Arpoia"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Marra azpian"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Marra goian"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Marra zeharka"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Gardena"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Letra-tipo lodia"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Letra etzana"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Tamaina aldatu"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Aldatu letra-tipoa"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Beltz kolorea"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Urdin kolorea"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Berde kolorea"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Gorri kolorea"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Gris kolorea"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Lima kolorea"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Granate kolorea"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Urdin ilun kolorea"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Oliba kolorea"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "More kolorea"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Zilar kolorea"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Urdin berdexka kolorea"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Hori kolorea"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "RGB kolorea"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Elkartzeko parentesiak"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Parentesi arruntak"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Kortxeteak"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Kortxete bikoitzak"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Giltzak"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Angelu-parentesiak"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Goiko sabaia"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Zorua"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Marra bakunak"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Marra bikoitzak"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Eragilearen parentesiak"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Parentesi arruntak (eskalagarriak)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Kortxeteak (eskalagarriak)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Kortxete bikoitzak (eskalagarriak)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Giltzak (eskalagarriak)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Angelu-parentesiak (eskalagarriak)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Sabaia (eskalagarria)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Zorua (eskalagarria)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Marra bakunak (eskalagarriak)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Marra bikoitzak (eskalagarria)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Eragilearen parentesiak (eskalagarriak)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Kalkulatutako balioa"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Giltzak goian (eskalagarria)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Giltzak behean (eskalagarria)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Azpiindizea eskuinean"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Berretura"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Azpiindizea ezkerrean"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Goi-indizea ezkerrean"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Azpiindizea behean"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Goi-indizea goian"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Tarte txikia"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Hutsik"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Marra berria"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Bertikalean (2 elementu)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Bertikalean"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Matrize-pila"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Lerrokatu ezkerrean"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Lerrokatu erdian"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Lerrokatu eskuinean"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Aleph"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Multzo hutsa"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Zati erreala"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Zati irudikaria"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Infinitua"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Partziala"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr "Laplace transformazioa"
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr "Fourier transformazioa"
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass-en p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Puntuak erdian"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Puntuak gora"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Puntuak behera"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Puntuak behean"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Puntuak bertikalean"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Kateatu"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Zatiketa (barra zabala)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Zatiketa (alderantzizko barra zabala)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Zatitzen du"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Ez du zatitzen"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Ezkerrerako gezi bikoitza"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Ezkerrerako eta eskuinerako gezi bikoitza"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Eskuin-gezi bikoitza"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Zenbaki naturalen multzoa"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Osoko zenbakien multzoa"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Zenbaki arrazionalen multzoa"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Zenbaki errealen multzoa"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Zenbaki konplexuen multzoa"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Zirkunflexu zabala"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Tilet zabala"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Bektore-gezi zabala"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Arpoi handia"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h barra"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda barra"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Ezkerrerako gezia"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Eskuin-gezia"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Gora gezia"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Behera gezia"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Zuriunerik ez"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Honen aurretik dago"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Honen aurretik dago edo honen berdina da"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Honen aurretik dago edo honen baliokidea da"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Honen ondoren dago"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Honen ondoren dago edo honen berdina da"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Honen ondoren dago edo honen baliokidea da"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Ez dago honen aurretik"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Ez dago honen ondoren"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Eragile unarioak/bitarrak"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Erlazioak"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Multzo-eragiketak"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funtzioak"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Eragileak"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Atributuak"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Parentesiak"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formatuak"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Beste batzuk"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Adibideak"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Zirkunferentzia"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Masa-energia baliokidetasuna"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Pitagorasen teorema"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Gauss banaketa"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Estandarra"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Etzana"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Lodia"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "beltza"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "urdina"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "berdea"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "gorria"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "grisa"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "lima"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "granatea"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "urdin iluna"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliba"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "morea"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "zilarra"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "urdin berdexka"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "horia"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "ezkutatu"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "tamaina"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "letra-tipoa"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "ezkerrean"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "erdia"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "eskuinean"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Komandoak"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formula"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Dokumentua gordetzen..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION formula"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROREA : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Ustekabeko karakterea"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Ustekabeko tokena"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' espero dena"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' espero zen"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' espero zen"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' espero zen"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Ezkerreko eta eskuineko ikurrak ez datoz bat"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans', edo 'serif' espero zen"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'tamaina' ondoren ustekabeko token bat dago"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Ez da onartzen lerrokatze bikoitza"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Ez dira onartzen azpi-/goi-indize bikoitzak"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' espero zen"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Kolorea behar da"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' espero zen"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Edukiak"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titulua"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formularen testua"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "E~rtzak"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Tamaina"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Jato~rrizko tamaina"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Doitu ~orrialdeari"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "E~skala"
diff --git a/source/eu/svtools/messages.po b/source/eu/svtools/messages.po
index c0e5384eab8..bf20a625dfa 100644
--- a/source/eu/svtools/messages.po
+++ b/source/eu/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-09 15:35+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/eu/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Desegin: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Berregin: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "E~rrepikatu: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Formatu gabeko testua"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Formatu gabeko testua (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bit-mapa irudia (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface metafitxategia (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Testu aberatseko formatua (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Testu aberatseko formatua (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME marrazki-formatua"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView bit-mapa/animazioa (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Egoerari buruzko informazioa Svx Internal Link-etik"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME esteka (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape-ko laster-marka"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star zerbitzariaren formatua"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star objektuaren formatua"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Miniaplikazioa objektua"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Plugin objektua"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 objektua"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 objektua"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 objektua"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 objektua"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 objektua"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 objektua"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 objektua"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw objektua"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 objektua"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 objektua"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 objektua"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc objektua"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 objektua"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 objektua"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart objektua"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 objektua"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 objektua"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage objektua"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 objektua"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 objektua"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath objektua"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 objektua"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 objektua"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint objektua"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Hipertestu markaketa lengoaia (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Murriztutako hipertestu markaketa lengoaia (Simple HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel trukaketa formatu bitarra 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel trukaketa formatu bitarra 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE esteka)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word objektua"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet objektua"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office-ko dokumentu-objektua"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes-eko dokumentuaren informazioa"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx dokumentua"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 objektua"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Objektu grafikoa"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer objektua"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web objektua"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Master objektua"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw objektua"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress objektua"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc objektua"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Calc objektua"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math objektua"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows-eko metafitxategia"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Datu-iturburuaren objektua"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Datu-iturburuaren taula"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL kontsulta"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 elkarrizketa-koadroa"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Esteka"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML formatua iruzkinik gabe"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Ezin izan da % objektua txertatu."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "% fitxategiko objektua ezin izan da txertatu."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Beste objektu batzuk"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Iturburu ezezaguna"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "byte"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1234 +501,1234 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerikoa"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normala"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Karaktere-jokoa"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Hiztegia"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Trazua"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Potentziala"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefono-liburua"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetika (lehena alfanumerikoa)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetika (azkena alfanumerikoa)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerikoa"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Hiztegia"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Potentziala"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Trazua"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetika (lehena alfanumerikoa, silaben arabera elkartuta)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetika (lehena alfanumerikoa, kontsonanteen arabera elkartuta)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetika (azkena alfanumerikoa, silaben arabera elkartuta)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetika (azkena alfanumerikoa, kontsonanteen arabera elkartuta)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Arina"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Etzan arina"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Erregularra"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Etzana"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Lodia"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Lodi etzana"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Beltza"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Etzan beltza"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Liburua"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Lodi zeiharra"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Estutua"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Estutu lodia"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Estutu lodi etzana"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Estutu lodi zeiharra"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Estutu etzana"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Estutu zeiharra"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Estra arina"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Estra arin etzana"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Zeiharra"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Erdi lodia"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Erdi lodi etzana"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Letra-tipo bera erabiliko da inprimagailuan eta pantailan."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Hau inprimagailuko letra-tipo bat da. Pantailako irudia desberdina izan daiteke."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Letra-tipo hori simulatuko da edo estilorik antzekoena erabiliko da."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Letra-tipo hori ez dago instalatuta. Erabilgarri dagoen letra-tiporik antzekoena erabiliko da."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Eraman etxera"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Eraman ezkerrera"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Eraman eskuinera"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Eraman bukaerara"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Gehitu"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Erregela horizontala"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Erregela bertikala"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Bit bateko atalasea"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Bit bateko bilbea"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 biteko gris-eskala"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 biteko kolorea"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 biteko gris-eskala"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 biteko kolorea"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 biteko benetako kolorea"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Irudiak %1 KB inguruko memoria behar du."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Irudiak %1 KB inguruko memoria behar du, fitxategiaren tamaina %2 KB da."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Fitxategiaren tamaina %1 KB da."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "ostalaria"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "ataka"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Beste CMIS bat"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Prest"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Pausarazita"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Ezabatu zain"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Lanpetuta"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Hasieratzen"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Zain"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Berotzen"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Prozesatzen"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Inprimatzen"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Lineaz kanpo"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Errorea"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Zerbitzari ezezaguna"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Papera trabatuta"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Ez dago nahikoa paper"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Eskuzko elikadura"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Arazoa paperarekin"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "S/I aktibatuta"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Irteerako ontzia beteta"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Toner gutxi"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Tonerrik ez"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Ezabatu orrialdea"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Erabiltzaileak parte hartu behar du"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Ez dago nahikoa memoria"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Tapa irekita"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Energia aurrezteko modua"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Inprimagailu lehenetsia"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumentu"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<bat ere ez>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Enpresa"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Saila"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Izena"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Abizena"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Kalea"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Herrialdea"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Posta-kodea"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Herria"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titulua"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Kokagunea"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Tratamendua"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Inizialak"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Itxitze osagarria"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel.: etxekoa"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel.: lanekoa"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Faxa"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Posta elektronikoa"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URLa"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Oharra"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "1. erabiltzailea"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "2. erabiltzailea"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "3. erabiltzailea"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "4. erabiltzailea"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "IDa"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Egoera"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel.: bulegokoa"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Bilagailua"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mugikorra"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel.: beste bat"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Egutegia"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Gonbidatu"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$(r)en $service$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME aplikazioak Java runtime environment (JRE) bat behar du zeregin hori betetzeko. Instalatu JRE bat eta berrabiarazi %PRODUCTNAME. %FAQLINK"
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME aplikazioak %BITNESS-bit Java runtime environment (JRE) bat behar du zeregin hori betetzeko. Instalatu JRE bat eta berrabiarazi %PRODUCTNAME. %FAQLINK"
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME aplikazioak Oracle enpresaren Java runtime environment (JRE) bat behar du macOS 10.10 edo berriagoetan zeregin hori betetzeko. Instalatu JRE bat eta berrabiarazi %PRODUCTNAME. %FAQLINK"
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME konfigurazioa aldatu da. %PRODUCTNAME - Hobespenak - %PRODUCTNAME - Aurreratua atalean, hautatu %PRODUCTNAME produktuarekin erabili nahi duzun JREa."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME konfigurazioa aldatu da. Tresnak - Aukerak - %PRODUCTNAME - Aurreratua atalean, hautatu %PRODUCTNAME produktuarekin erabili nahi duzun JREa."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME produktuak Java runtime environment (JRE) bat behar du zeregin horretarako. Hautatutako JREa hondatuta dago. Hautatu beste bertsio bat edo instalatu JRE berri bat eta hautatu hura %PRODUCTNAME - Hobespenak - %PRODUCTNAME - Aurreratua atalean."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME produktuak Java runtime environment (JRE) bat behar du zeregin horretarako. Hautatutako JREa hondatuta dago. Hautatu beste bertsio bat edo instalatu JRE berri bat eta hautatu hura Tresnak - Aukerak - %PRODUCTNAME - Aurreratua atalean."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Beharrezko JRE"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Hautatu JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE hondatuta dago"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Iturburu-kodea"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Laster-marken fitxategia"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafikoak"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfigurazio-fitxategia"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplikazioa"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Datu-baseko taula"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Sistema-fitxategia"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word dokumentua"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Laguntza-fitxategia"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML dokumentua"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Artxibo-fitxategia"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Egunkari-fitxategia"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice datubasea"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 dokumentu maisua"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice irudia"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Testu-fitxategia"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Esteka"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 txantiloia"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel dokumentua"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel-eko txantiloia"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Sortakako fitxategia"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Fitxategia"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Karpeta"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Testu-dokumentua"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Kalkulu-orria"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Aurkezpena"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Marrazkia"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML dokumentua"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Dokumentu maisua"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formula"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Datu-basea"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 kalkulu-orriaren txantiloia"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 marrazkiaren txantiloia"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 aurkezpenaren txantiloia"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 testu-dokumentuaren txantiloia"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unitate lokala"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Disko-unitatea"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM unitatea"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Sare-konexioa"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint dokumentua"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint-eko txantiloia"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint-eko aurkezpena"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 formula"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 diagrama"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 marrazkia"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 kalkulu-orria"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 aurkezpena"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 testu-dokumentua"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 dokumentu maisua"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML dokumentua"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument Datu-basea"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument Marrazkia"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument formula"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument Dokumentu maisua"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument Aurkezpena"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument Kalkulu-orria"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument Testua"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument Kalkulu-orriaren txantiloia"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument Marrazki-txantiloia"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument Aurkezpen-txantiloia"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument Testu-txantiloia"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME Hedapena"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell ortografia-egiaztatzailea"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen hitz-zatitzailea"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Mythes thesaurus-a"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Ez ikusitako hitzen zerrenda"
diff --git a/source/eu/svx/messages.po b/source/eu/svx/messages.po
index 9f338ebc338..83517db2171 100644
--- a/source/eu/svx/messages.po
+++ b/source/eu/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-09 15:36+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/eu/>\n"
@@ -16332,11 +16332,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Komo_dinak"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_Iruzkinak"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/eu/sw/messages.po b/source/eu/sw/messages.po
index 6d48f4aa7ba..a2f0c225cdf 100644
--- a/source/eu/sw/messages.po
+++ b/source/eu/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-09 15:35+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/eu/>\n"
@@ -17445,86 +17445,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr "Sartu taulan izan nahi duzun errenkada kopurua."
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Orokorra"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "I_zenburua"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr "Goiburu errenkada bat txertatzen du taulan."
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Errepikatu izenburu-errenkadak _orri berrietan"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr "Taula-izenburua errepikatzen du hurrengo orrialdeetako goialdean, taulak orrialde bat baino gehiago betetzen badu."
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Ez _zatitu taulak orri batetik bestera"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr "Taulak orrialde bat baino gehiago bete dezan eragozten du."
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr "Hautatu izenbururako erabili nahi duzun errenkada kopurua."
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Izenburu-e_rrenkadak:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Aukerak"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr "Uneko hautapenaren aurrebista bat bistaratzen du."
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr "Hautatu aurredefinitutako estilo bat taula berrirako."
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Estiloak"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr "Taula bat txertatzen du dokumentuan. Horren ordez, gezian klik egin, taulan sartu beharreko errenkada eta zutabe kopurua hautatzeko arrastatu eta azken gelaxkan klik egin dezakezu."
@@ -20038,289 +20044,289 @@ msgid "Text"
msgstr "Testua"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Txandakatu maisuaren ikuspegia"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Ikuspegi maisuaren eta ikuspegi normalaren artean txandakatzen da dokumentu maisua irekita badago."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Edukien nabigazio ikuspegia"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr "Nabigatzaileko kategoria guztien eta hautatutako kategoriaren artean txandakatzen da."
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Goiburukoa"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr "Kurtsorea goiburukora edo goiburukotik dokumentuko testu-areara eramaten du."
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Orri-oina"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr "Kurtsorea orri-oinera edo orri-oinetik dokumentuko testu-areara eramaten du."
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Aingura<->Testua"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr "Oin-oharreko testuaren eta oin-oharreko ainguraren artean jauzi egiten du."
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Ezarri abisua"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Egin klik ikono horretan kurtsorea dagoen lekuan abisua ezartzeko. Bost abisu txerta ditzakezu gehienez. Abisu batera joateko, egin klik Nabigazioa ikonoan, Nabigazioa leihoan egin klik Abisua ikonoan, eta ondoren, egin klik Aurrekoa edo Hurrengoa botoian."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Erakutsitako izenburu-mailak"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr "Egin klik ikono horretan eta aukeratu 'Nabigatzailea' leihoan ikusi nahi duzun kapitulu-mailen kopurua."
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Aktibatu/desaktibatu zerrenda-koadroa"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr "Nabigatzaile zerrenda erakusten edo ezkutatzen du."
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Jaso maila"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Hautatutako izenburuaren kapitulu-maila, eta izenburuaren azpiko izenburuarenak, maila bat igotzen ditu. Soilik hautatutako izenburuaren kapitulu-maila igotzeko, sakatu Ctrl eta egin klik ikono honetan."
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Jaitsi maila"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Hautatutako izenburuaren kapitulu-maila, eta izenburuaren azpiko izenburuenak, maila bat jaisten ditu. Soilik hautatutako izenburuaren kapitulu-maila jaisteko, sakatu Ctrl eta egin klik ikono honetan."
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Jaso kapituluaren maila"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Hautatutako izenburua, eta izenburuaren azpiko testua, izenburu bat gora eramaten ditu nabigatzailean eta dokumentuan. Hautatutako izenburua soilik aldatzeko lekuz, eta testua ez, sakatu Ctrl eta egin klik ikono horretan."
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Jaitsi kapituluaren maila"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Hautatutako izenburua, eta izenburuaren azpiko testua, izenburu bat behera eramaten ditu nabigatzailean eta dokumentuan. Hautatutako izenburua soilik aldatzeko lekuz, eta ez testua, sakatu Ctrl eta egin klik ikono horretan."
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Arrastatze modua"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr "Arrastatu eta jaregiteko aukerak ezartzen ditu nabigatzaileko elementuak dokumentuan txertatzeko, adibidez, hiperesteka gisa. Egin klik ikono horretan eta aukeratu erabili nahi duzun aukera."
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Dokumentua"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Leiho aktiboa"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Txandakatu ikuspegi maisua"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Ikuspegi maisuaren eta ikuspegi normalaren artean txandakatzen da dokumentu maisua irekita badago."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Editatu"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr "Editatu Nabigatzailearen zerrendan hautatutako osagaien edukia. Hautatutakoa fitxategia bada, fitxategia editatzeko irekiko da. Hautatutakoa indize bat bada, Indizea elkarrizketa-koadroa irekiko da."
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Eguneratu"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Egin klik eta aukeratu eguneratu nahi duzun edukia."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Txertatu"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Fitxategi bat, indize bat edo dokumentu berri bat txertatzen du dokumentu maisuan."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Gorde edukia ere"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr "Estekatutako fitxategien edukiaren kopia bat gordetzen du dokumentu maisuan. Horrek estekatutako fitxategietara ezin denean sartu uneko edukia erabilgarri egongo dela ziurtatzen du."
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Eraman gora"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr "Hautapena toki bat gora mugitzen du nabigatzailearen zerrendan."
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Eraman behera"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr "Hautapena toki bat gora mugitzen du nabigatzailearen zerrendan."
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Hautapena"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Indizeak"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Estekak"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Dena"
diff --git a/source/fa/sc/messages.po b/source/fa/sc/messages.po
index acb169f9263..5a86a0df5b6 100644
--- a/source/fa/sc/messages.po
+++ b/source/fa/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29562,38 +29562,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr ""
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr ""
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr ""
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr ""
diff --git a/source/fa/sfx2/messages.po b/source/fa/sfx2/messages.po
index b7ac45e72c0..4c707642ee2 100644
--- a/source/fa/sfx2/messages.po
+++ b/source/fa/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-07 18:20+0000\n"
"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1608,288 +1608,251 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr ""
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr ""
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "~گزینه‌های بیشتر"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr ""
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "پویانمایی سفارشی"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr ""
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr ""
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "حذف"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4196,6 +4159,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "حذف‌کردن..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/fa/starmath/messages.po b/source/fa/starmath/messages.po
index e0ff3599d1a..adf6f8a2cb4 100644
--- a/source/fa/starmath/messages.po
+++ b/source/fa/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+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"
@@ -425,2099 +425,2232 @@ msgid "or"
msgstr "یا"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "علامت +"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "علامت −"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "علامت +−"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "علامت −+"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "«نه» منطقی"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "جمع +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "تفریق −"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
#, fuzzy
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "ضرب (نقطه)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "ضرب (×)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "ضرب (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "تقسیم (خط مورب)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "تقسیم (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "تقسیم (کسر)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "«و» منطقی"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "«یا» منطقی"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "مساوی است با"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "مساوی نیست با"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "کمتر باشد از"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "بزرگتر است از"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "کوچک‌تر یا مساوی با "
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "بزرگ‌تر یا مساوی با"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "کوچک‌تر یا مساوی با "
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "بزرگ‌تر یا مساوی با"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr ""
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
#, fuzzy
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "بزرگتر است از"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "همنهشت است با"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "تقریباً برابر است با"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "متشابه است با"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "متشابه یا مساوی است با"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "متناسب است با"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "عمود است بر"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "موازی است با"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "به سوی"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "عضوی است از"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "عضوی نیست از"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "مالک"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "اجتماع"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "اشتراک"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "تفاضل"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "زیرمجموعه"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "زیرمجموعه یا برابر است با"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "مجموعهٔ شامل"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "مجموعهٔ شامل یا برابر با"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "زیرمجموعه نیست"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "زیرمجموعه یا برابر نیست با"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "شامل نیست"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "شامل یا مساوی نیست با"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "قدر مطلق"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "فاکتوریل"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "ریشهٔ دوم"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "ریشهٔ N اُم"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "تابع نمایی"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "تابع نمایی"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "لگاریتم طبیعی"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "لگاریتم"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "سینوس"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "کسینوس"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "تانژانت"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "کتانژانت"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "آرک سینوس"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "آرک کسینوس"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "آرک تانژانت"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "آرک کتانژانت"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "سینوس هذلولوی"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "کسینوس هذلولوی"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "تانژانت هذلولوی"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "کتانژانت هذلولوی"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "سینوس هذلولوی سطح"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "کسینوس هذلولوی سطح"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "تانژانت هذلولوی سطح"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "کتانژانت هذلولوی سطح"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "مجموع"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
#, fuzzy
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "زیرنویس پایین"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
#, fuzzy
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "بالانویس بالا"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr ""
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "حاصل ضرب"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
#, fuzzy
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "زیرنویس پایین"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr ""
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr ""
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "حاصل ضرب مؤلفه‌ای"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
#, fuzzy
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "زیرنویس پایین"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr ""
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr ""
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "حدود"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
#, fuzzy
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "زیرنویس پایین"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
#, fuzzy
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "بالانویس بالا"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr ""
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "وجود دارد"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "وجود ندارد"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
#, fuzzy
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "برای همه"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "انتگرال"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "انتگرال دوگانه"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "انتگرال سه‌گانه"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "اتگرال روی خم"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "انتگرال روی خم دوگانه"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "انتگرال روی خم سه‌گانه"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "اکسانتگو"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "سطر بالا"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "بریو"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "سیرکونفلکس وارو"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "دایره"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "نقطه"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "دونقطه"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "سه‌نقطه"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "اکسان گراو"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "سیرکونفلکس"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "تیلدا"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "پیکان بردار"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "خط پایین"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "خط بالا"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "خط وسط"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "شفاف"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "قلم سیاه"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "قلم ایتالیک"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "تغییر اندازه"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "تغییر قلم"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr ""
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr ""
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr ""
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr ""
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr ""
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
#, fuzzy
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "جدول رنگ"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr ""
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "قلاب گروه"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "قلاب‌های گرد"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "قلاب‌های مربعی"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "قلاب‌های مربعی دوتایی"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "ابرو"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "قلاب تیز"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr ""
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "خط تکی"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "خط دوتایی"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "قلاب عملگر"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "قلاب گرد (قابل بزرگ و کوچک کردن)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "قلاب مربعی (قابل بزرگ و کوچک کردن)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "قلاب مربعی دوتایی (قابل بزرگ و کوچک کردن)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "قلاب (قابل بزرگ و کوچک کردن)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "قلاب تیز (قابل بزرگ و کوچک کردن)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "خط تکی (قابل بزرگ و کوچک کردن)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "خط دوتایی (قابل بزرگ و کوچک کردن)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "قلاب عملگر (قابل بزرگ و کوچک کردن)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "قلاب بالا (قابل بزرگ و کوچک کردن)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "قلاب پایین (قابل بزرگ و کوچک کردن)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "زیرنویس راست"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "توان"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "زیرنویس چپ"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "بالانویس چپ"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "زیرنویس پایین"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "بالانویس بالا"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "شکاف کوچک"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
#, fuzzy
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "خالی"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "خط جدید"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "پشتهٔ عمودی (۲ تکه)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "پشتهٔ عمودی"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "پشتهٔ ماتریسی"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "چپ‌چین"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "وسط‌چین"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "راست‌چین"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "الف"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "مجوعهٔ تهی"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "جزٔ حقیقی"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "جزٔ موهومی"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
#, fuzzy
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "بی‌نهایت"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "جزئی"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "نابلا"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "وایرشتراس p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "نقطه در وسط"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "نقطه به بالا"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
#, fuzzy
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "نقطه به پایین"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "نقطه در پایین"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "نقطهٔ عمودی"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "الحاق"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
#, fuzzy
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "تقسیم (خط مورب)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "بخش‌پذیر نیست بر"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "بخش‌پذیر نیست بر"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "پیکان دوتایی به چپ"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "پیکان دوتایی به چپ و راست"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "پیکان دوتایی به راست"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "مجموعهٔ اعداد طبیعی"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "مجموعهٔ اعداد صحیح"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "مجموعهٔ اعداد گویا"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "مجموعهٔ اعداد حقیقی"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "مجموعهٔ اعداد مختلط"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "سیرکونفلکس بزرگ"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "تیلدای بزرگ"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "پیکان بردار بزرگ"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "نوار h"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "نوار لاندا"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "پیکان چپ"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "پیکان راست"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "پیکان بالا"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "پیکان پایین"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr ""
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "مقدم است بر"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "مقدم است یا برابر است با"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "مقدم یا معادل است با"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "دنبال می‌کند"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "دنبال می‌کند یا برابر است با"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "دنبال می‌کند یا معادل است با"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "مقدم نیست بر"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "دنبال نمی‌کند"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "عملگرهای یکتایی/دوتایی"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "رابطه‌ها"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
#, fuzzy
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "عملگرهای مجموعه"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "توابع"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
#, fuzzy
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "عملگرها"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "مشخصه‌ها"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
#, fuzzy
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "قلاب‌ها"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "قالب‌ها"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "غیره"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
#, fuzzy
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "مثال"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "استاندارد"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "ایتالیک"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "سیاه"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "سیاه"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "آبی"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "سبز"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr ""
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "خاکستری"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "زمان"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "زرد"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "مخفی کردن"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "اندازه"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "قلم"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "چپ"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "مرکز"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "راست"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "فرمان‌ها"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "فرمول"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "در حال ذخیره کردن نوشتار..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "فرمول %PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "خطا : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "نویسهٔ غیرمنتظره"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "«{» لازم است"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "«}» لازم است"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "«(» لازم است"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "«)» لازم است"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "«#» لازم است"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "رنگ لازم است"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "«RIGHT» لازم است"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "محتویات"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "عنوان"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "متن فرمول"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "حاشیه‌ها"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "اندازه"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "اندازه اصلی"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "تطابق با صفحه"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
diff --git a/source/fa/svtools/messages.po b/source/fa/svtools/messages.po
index d2e52fc8c24..d26a41faf76 100644
--- a/source/fa/svtools/messages.po
+++ b/source/fa/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,487 +18,487 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "واگردانی: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~تکرار: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "متن بدون قالب"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "اطلاعات وضعیت از پیوند اینترنتی Svx"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "نشانک نت‌اسکیپ"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "قالب کارگزار استار"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "قالب شیء استار"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "شیء برنامک"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "شیء متصل‌شونده"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "شیء استاررایتر 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "شیء استاررایتر 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "شیء استاررایتر 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "شیء استاررایتر/وب 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "شیء استاررایتر/وب 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "شیء استاررایتر/مستر 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "شیء استاررایتر/مستر 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "شیء استاردرا"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "شیء استاردرا 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "شیء استارایمپرس 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "شیء استاردرا 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "شیء استارکَلک"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "شیء استارکَلک 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "شیء استارکَلک 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "شیء استارچارت"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "شیء استارچارت 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "شیء استارچارت 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "شیء استارایمیج"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "شیء استارایمیج 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "شیء استارایمیج 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "شیء استارمَت"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "شیء استارمَت 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "شیء استارمَت 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr ""
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr ""
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "شیء وُرد مایکروسافت"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr ""
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "شیء نوشتاری آفیس"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr ""
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "نوشتار sfx"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "شیء استارچارت 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "شیء گرافیکی"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
#, fuzzy
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "سند اصلی اپن‌آفیس.ارگ 1.0"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
#, fuzzy
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "طراحی اپن‌آفیس.ارگ 1.0"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
#, fuzzy
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "نمودار اپن‌آفیس.ارگ 1.0"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
#, fuzzy
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "سند اصلی اپن‌آفیس.ارگ 1.0"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "فراپروندهٔ ویندوز"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "شیء منبع داده‌ای"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "جدول منبع داده‌ای"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "پرس و جوی SQL"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
#, fuzzy
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "طراحی اپن‌آفیس.ارگ 1.0"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "پیوند"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "قالب HTML بدون توضیحات"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "درج شیء % ممکن نیست."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "درج شیء از پروندهٔ % ممکن نیست."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "اشیاء بیشتر"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "منبع نامعلوم"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "بایت"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "کیلوبایت"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "مگابایت"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "گیگابایت"
@@ -506,1259 +506,1259 @@ msgstr "گیگابایت"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "الفباعددی"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "عادی"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "مجموعه نویسه"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "لغت‌نامه"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr ""
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr ""
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr ""
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "یونی‌کد"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "دفتر تلفن"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "آواشناختی (الفباعددی‌ها اول)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "آواشناختی (الفباعددی‌ها آخر)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "الفباعددی"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "لغت‌نامه"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr ""
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr ""
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr ""
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "آواشناختی (الفباعددی‌ها اول، گروه شده بر اساس سیلاب)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
#, fuzzy
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "آواشناختی (الفباعددی‌ها اول، گروه شده بر اساس سیلاب)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "آواشناختی (الفباعددی‌ها آخر، گروه شده بر اساس سیلاب)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
#, fuzzy
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "آواشناختی (الفباعددی‌ها آخر، گروه شده بر اساس سیلاب)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "نازک"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "نازک ایتالیک"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "عادی"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "ایتالیک"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "سیاه"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "ایتالیک سیاه"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "مشکی"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "مشکی ایتالیک"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "کتاب"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "متراکم "
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "نیمه ضخیم"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "یک قلم هم برای چاپگر و هم برای صفحهٔ نمایش شما استفاده خواهد شد."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "این قلم برای چاپگر است. تصویر روی صفحهٔ نمایش ممکن است متفاوت باشد."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "این سبک قلم شبیه‌سازی خواهد شد یا مشابه‌ترین سبک استفاده خواهد شد."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "این قلم نصب نشده است. نزدیکترین قلم موجود استفاده خواهد شد."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "جابه‌جا کردن چارچوب"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "جابه‌جایی به چپ"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "جابه‌جایی به راست"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "حرکت به پایین"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "اضافه کردن"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "خروج افقی"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "خط‌کش عمودی"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "آستانه 1 بیتی"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "نقطه‌نقطه‌ای 1 بیتی"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "سایه‌خاکستری 4 بیتی"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "سایه‌خاکستری 4 بیتی"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "رنگ حقیقی 24 بیتی"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "هزینه"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "مرتب‌سازی"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "مکث"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "در حال راه‌اندازی..."
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "در حال انتظار"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "خطا"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "~حذف صفحه"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "حافظه کافی نیست"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "چاپگر پیش‌فرض"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d سند"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<هیچ‌کدام>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "شرکت"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "بخش"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "نام"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "نام خانوادگی"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "خیابان"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "کشور"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "کد پستی"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "شهر"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "عنوان"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "موقعیت"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "فرم نشانی"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "حرف اول نام وسط"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "توشیح"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "تلفن: خانه"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "تلفن: محل کار"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "نشانی اینترنتی"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "یادداشت"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "کاربر ۱"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "کاربر ۲"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "کاربر ۳"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "کاربر ۴"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "شناسه"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "ایالت"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "تلفن: دفتر"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "پی‌جو"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "تلفن همراه"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "تلفن: غیره"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "تقویم"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "دعوت"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "راه‌اندازی مجدد لازم است"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "انتخاب سطر"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "~شناسایی"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "کد مبدأ"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "پروندهٔ نشانک"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "گرافیک"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "پروندهٔ پیکربندی"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "برنامه"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "جدول پایگاه‌داده"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "سیستم پرونده‌ای"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "نوشتار وُرد مایکروسافت"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "پروندهٔ راهنما"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "نوشتار HTML"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "پروندهٔ آرشیو"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "پروندهٔ ثبتی"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "قالب استارآفیس 5.0"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "نوشتار اصلی استاررایتر 4.0/5.0"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "قالب استارآفیس 5.0"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "پروندهٔ متنی"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "پیوند"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "قالب استارآفیس 5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "نوشتار اِکسل مایکروسافت"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "قالب اِکسل مایکروسافت"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "پروندهٔ دسته‌ای"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "پرونده"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "پوشه"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "نوشتار متنی"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "صفحه‌گسترده"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "ارائه"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "نقاشی"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "نوشتار HTML"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "نوشتار اصلی"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "فرمول"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "پایگاه داده"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
#, fuzzy
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "صفحه‌گسترده اپن‌آفیس.ارگ 1.0"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "ارائه اپن‌آفیس.ارگ 1.0 (فشرده)"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
#, fuzzy
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "سند متنی اپن‌آفیس.ارگ 1.0"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "دیسک‌گردان محلی"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "دیسک گردان"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "سی‌دی گردان"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "اتصال شبکه"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "نوشتار پاورپوینت مایکروسافت"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "قالب پاورپوینت مایکروسافت"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "نمایش پاورپوینت مایکروسافت"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "فرمول اپن‌آفیس.ارگ 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "نمودار اپن‌آفیس.ارگ 1.0"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "طراحی اپن‌آفیس.ارگ 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "صفحه‌گسترده اپن‌آفیس.ارگ 1.0"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "ارائه اپن‌آفیس.ارگ 1.0"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "سند متنی اپن‌آفیس.ارگ 1.0"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "سند اصلی اپن‌آفیس.ارگ 1.0"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "نوشتار MathML"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "پایگاه‌دادهٔ نوشتارباز"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "نقاشی نوشتارباز"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "فرمول نوشتارباز"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "نوشتار اصلی نوشتارباز"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "ارائهٔ نوشتارباز"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "صفحه‌گستردهٔ نوشتارباز"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "متن نوشتارباز"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "قالب صفحه‌گستردهٔ نوشتارباز"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "قالب نقاشی نوشتارباز"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "قالب ارائهٔ نوشتارباز"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "قالب متن نوشتارباز"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "ضمیمه %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/fa/svx/messages.po b/source/fa/svx/messages.po
index 5d92776734e..a817e7d2037 100644
--- a/source/fa/svx/messages.po
+++ b/source/fa/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-04-14 16:49+0000\n"
"Last-Translator: hussein <ghasemi.hussein@gmail.com>\n"
"Language-Team: Persian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/fa/>\n"
@@ -16676,12 +16676,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
-#, fuzzy
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "یادداشت‌ها"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/fa/sw/messages.po b/source/fa/sw/messages.po
index a55d05b24fb..92e6caedb91 100644
--- a/source/fa/sw/messages.po
+++ b/source/fa/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-04-29 20:26+0000\n"
"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: Persian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/fa/>\n"
@@ -17960,87 +17960,93 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "عمومی"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
#, fuzzy
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "سرجدول"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr ""
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr ""
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr ""
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "گزینه‌ها"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20657,294 +20663,294 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "سرصفحه"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "پاصفحه"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
#, fuzzy
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "ترفیع سطح"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
#, fuzzy
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "تنزیل سطح"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
#, fuzzy
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "حالت کشیدن"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "نوشتار"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
#, fuzzy
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "پنجرهٔ فعال"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "ویرایش"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
#, fuzzy
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Update"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "درج"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "جابه‌جایی به بالا"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "جابه‌جایی به پایین"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/fi/cui/messages.po b/source/fi/cui/messages.po
index 2b47499b9b3..e169878d478 100644
--- a/source/fi/cui/messages.po
+++ b/source/fi/cui/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-07 06:35+0000\n"
+"PO-Revision-Date: 2020-11-17 20:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/fi/>\n"
"Language: fi\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1564954460.000000\n"
#. GyY9M
@@ -1180,10 +1180,9 @@ msgstr "Odotetaan"
#. QJKgF
#: cui/inc/strings.hrc:221
-#, fuzzy
msgctxt "RID_SVXSTR_SAVE_SCREENSHOT_AS"
msgid "Save Screenshot As..."
-msgstr "Tallenna kaappaus nimellä..."
+msgstr "Tallenna näyttökuva nimellä..."
#. CAaFf
#. $(ROW) can be a number or the caption of the row in quotes
@@ -2049,7 +2048,7 @@ msgstr "URL-osoite tai teksti on liian pitkä nykyiselle virheenkorjaustasolle.
#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
-msgstr ""
+msgstr "Voit poistaa vain käyttäjän määrittämiä värejä"
#. 4LWGV
#: cui/inc/strings.hrc:392
@@ -17342,7 +17341,7 @@ msgstr "Automaattinen"
#: cui/uiconfig/ui/paraindentspacing.ui:167
msgctxt "paraindentspacing|checkCB_AUTO|tooltip_text"
msgid "Indent paragraph automatically according to font size and line spacing."
-msgstr ""
+msgstr "Sisennä kappale automaattisesti fonttikoon ja rivivälin mukaan."
#. L9iw7
#: cui/uiconfig/ui/paraindentspacing.ui:218
@@ -17372,7 +17371,7 @@ msgstr "Kappaleen alapuolella:"
#: cui/uiconfig/ui/paraindentspacing.ui:331
msgctxt "paraindentspacing|checkCB_CONTEXTUALSPACING"
msgid "Do not add space between paragraphs of the same style"
-msgstr ""
+msgstr "Älä lisää väliä samaa tyyliä käyttävien kappaleiden väliin"
#. hWQWQ
#: cui/uiconfig/ui/paraindentspacing.ui:353
@@ -20109,7 +20108,7 @@ msgstr ""
#: cui/uiconfig/ui/swpossizepage.ui:587
msgctxt "swpossizepage|followtextflow"
msgid "Keep inside te_xt boundaries"
-msgstr ""
+msgstr "Pidä tekstin rajojen sisällä"
#. zfpt5
#: cui/uiconfig/ui/swpossizepage.ui:597
@@ -20931,55 +20930,55 @@ msgstr ""
#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton2"
msgid "Single Toolbar"
-msgstr ""
+msgstr "Yksirivinen"
#. AMgFL
#: cui/uiconfig/ui/toolbarmodedialog.ui:146
msgctxt "ToolbarmodeDialog|radiobutton3"
msgid "Sidebar"
-msgstr ""
+msgstr "Sivupalkki"
#. WRYEa
#: cui/uiconfig/ui/toolbarmodedialog.ui:164
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Tabbed"
-msgstr ""
+msgstr "Välilehdellinen"
#. YvSd9
#: cui/uiconfig/ui/toolbarmodedialog.ui:182
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
-msgstr ""
+msgstr "Tiivis välilehdellinen"
#. jAJbo
#: cui/uiconfig/ui/toolbarmodedialog.ui:200
msgctxt "ToolbarmodeDialog|radiobutton6"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Tiivis ryhmäpalkki"
#. yT3UT
#: cui/uiconfig/ui/toolbarmodedialog.ui:218
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar"
-msgstr ""
+msgstr "Ryhmäpalkki"
#. iSVgL
#: cui/uiconfig/ui/toolbarmodedialog.ui:236
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
-msgstr ""
+msgstr "Kontekstisidonnainen yksirivinen"
#. TrcWq
#: cui/uiconfig/ui/toolbarmodedialog.ui:254
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
-msgstr ""
+msgstr "Kontekstisidonnaiset ryhmät"
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:278
msgctxt "ToolbarmodeDialog|leftframe"
msgid "UI variants"
-msgstr ""
+msgstr "Käyttöliittymävaihtoehdot"
#. H7m7J
#: cui/uiconfig/ui/toolbarmodedialog.ui:366
diff --git a/source/fi/helpcontent2/source/auxiliary.po b/source/fi/helpcontent2/source/auxiliary.po
index 29ff5d24b7a..3d62e5970f3 100644
--- a/source/fi/helpcontent2/source/auxiliary.po
+++ b/source/fi/helpcontent2/source/auxiliary.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-05-19 12:41+0200\n"
-"PO-Revision-Date: 2020-11-06 12:35+0000\n"
+"PO-Revision-Date: 2020-11-20 06:55+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/fi/>\n"
"Language: fi\n"
@@ -446,7 +446,7 @@ msgctxt ""
"1110\n"
"node.text"
msgid "Viewing"
-msgstr ""
+msgstr "Katseleminen"
#. 4zaCG
#: shared.tree
diff --git a/source/fi/helpcontent2/source/text/scalc/01.po b/source/fi/helpcontent2/source/text/scalc/01.po
index 772e3c2e1d9..96a3328d922 100644
--- a/source/fi/helpcontent2/source/text/scalc/01.po
+++ b/source/fi/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/fi/>\n"
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr ""
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/sdraw.po b/source/fi/helpcontent2/source/text/sdraw.po
index ac7e65d28fb..53af718b9b6 100644
--- a/source/fi/helpcontent2/source/text/sdraw.po
+++ b/source/fi/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 10:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/shared/00.po b/source/fi/helpcontent2/source/text/shared/00.po
index a33d702d432..33278c1ee70 100644
--- a/source/fi/helpcontent2/source/text/shared/00.po
+++ b/source/fi/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-10-12 13:06+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/fi/>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "Hyvä esimerkki relaatiotietokannasta saadaan tietokannasta, joka koostuu asiakas-, osto- ja laskutauluista. Laskutaulussa ei ole ollenkaan varsinaisia asiakas- tai ostotietoja; sen sijaan taulussa on linkki, tai relaatio, vastaaviin asiakas- ja ostotaulun tietueisiin (esimerkiksi, tietueen asiakasID-kenttään asiakastaulussa)."
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>rivirekisteri; määritelmä</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "Rivirekisteri"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/fi/helpcontent2/source/text/shared/01.po b/source/fi/helpcontent2/source/text/shared/01.po
index 7266832e629..e5b250c8d63 100644
--- a/source/fi/helpcontent2/source/text/shared/01.po
+++ b/source/fi/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-06 12:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/fi/>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr "Joillakin asiakirjatyypeillä on valittavissa esitteen tulostus."
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr ""
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr ""
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,13 +9376,13 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "Vaihdellaan perusasiakirja- ja normaalinäkymää."
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
msgstr ""
#. 3Lq2G
@@ -9430,13 +9412,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr ""
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
msgstr ""
#. nRB3E
@@ -9466,13 +9448,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Napsautetaan ja valitaan päivitettävä sisältötyyppi.</ahelp>"
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
msgstr ""
#. F4J5u
@@ -9601,13 +9583,13 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "Perusasiakirjaan voi lisätä tiedostoja myös vetämällä tiedoston työpöydältä ja pudottamalla sen rakenneselaimen perusasiakirjanäkymään."
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
msgstr ""
#. ijR7M
@@ -9709,13 +9691,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr ""
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
msgstr ""
#. ADEyJ
@@ -9745,13 +9727,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
msgstr ""
#. GqEUL
@@ -9781,13 +9763,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
msgstr ""
#. DLEGF
diff --git a/source/fi/helpcontent2/source/text/shared/02.po b/source/fi/helpcontent2/source/text/shared/02.po
index f696668d7eb..218771d2096 100644
--- a/source/fi/helpcontent2/source/text/shared/02.po
+++ b/source/fi/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-24 21:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/fi/>\n"
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Vähennä sisennystä\">Vähennä sisennystä</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11059,14 +11059,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr ""
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Lisää sisennystä\">Lisää sisennystä</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11131,14 +11131,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/fi/helpcontent2/source/text/shared/05.po b/source/fi/helpcontent2/source/text/shared/05.po
index bd82d3e6220..fd2c96aef8a 100644
--- a/source/fi/helpcontent2/source/text/shared/05.po
+++ b/source/fi/helpcontent2/source/text/shared/05.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-10-29 21:39+0000\n"
+"PO-Revision-Date: 2020-11-20 06:55+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared05/fi/>\n"
"Language: fi\n"
@@ -41,7 +41,7 @@ msgctxt ""
"hd_id3146873\n"
"help.text"
msgid "<variable id=\"00000001\"><link href=\"text/shared/05/00000001.xhp\" name=\"Getting Support\">Getting Support</link></variable>"
-msgstr ""
+msgstr "<variable id=\"00000001\"><link href=\"text/shared/05/00000001.xhp\" name=\"Getting Support\">Käyttäjätuki</link></variable>"
#. wR4ns
#: 00000001.xhp
@@ -230,7 +230,7 @@ msgctxt ""
"par_id3146961\n"
"help.text"
msgid "There are three icons used to call your attention to additional helpful information."
-msgstr "Näitä kolmea kuvaketta käytetään ilmoittamaan hyödyllisistä lisätiedoista."
+msgstr "Näillä kolmella kuvakkeella ilmoitetaan hyödyllisistä lisätiedoista."
#. Ey7eB
#: 00000002.xhp
@@ -662,7 +662,7 @@ msgctxt ""
"par_id3145748\n"
"help.text"
msgid "Displays an index of the main topics of all modules."
-msgstr "Tarkastellaan kaikkien moduulien pääaiheiden hakemistoa."
+msgstr "Näyttää hakemiston kaikkien moduulien pääaiheista."
#. FBsLd
#: 00000110.xhp
@@ -1089,7 +1089,7 @@ msgctxt ""
"par_id3145314\n"
"help.text"
msgid "Use the <emph>Add to Bookmarks</emph> icon to set a bookmark for the current page shown in the Help."
-msgstr "<emph>Lisää kirjanmerkkeihin</emph> -kuvaketta käytetään, kun asetetaan kirjanmerkki avoinna olevalle ohjesivulle."
+msgstr "<emph>Lisää kirjanmerkkeihin</emph> -kuvakkeella asetetaan kirjanmerkki nykyiselle ohjesivulle."
#. UK7NF
#: 00000150.xhp
@@ -1314,7 +1314,7 @@ msgctxt ""
"par_id971592240070356\n"
"help.text"
msgid "The following data could be helpful in locating the error:"
-msgstr ""
+msgstr "Seuraavat tiedot voivat olla avuksi virheen paikallistamisessa:"
#. Eekrb
#: err_html.xhp
@@ -1467,7 +1467,7 @@ msgctxt ""
"par_id311534901893169\n"
"help.text"
msgid "Type the keyword in the Search text box. The search is performed immediately, while you type the keyword."
-msgstr ""
+msgstr "Kirjoita avainsana hakukenttään. Haku tapahtuu samalla kun kirjoitat."
#. 3kiEs
#: new_help.xhp
@@ -1485,7 +1485,7 @@ msgctxt ""
"par_id261534891513315\n"
"help.text"
msgid "Use the arrow icons on the bottom of the Index to scroll forward or backward the Index entries or filtered result list."
-msgstr ""
+msgstr "Vieritä hakemiston merkintöjä tai suodatettuja tuloksia eteen tai taakse nuolikuvakkeilla."
#. SzL87
#: new_help.xhp
@@ -1620,7 +1620,7 @@ msgctxt ""
"par_id771534889897625\n"
"help.text"
msgid "Close the bookmark dialog of the web browser."
-msgstr ""
+msgstr "Sulje selaimen kirjanmerkki-ikkuna."
#. s8CEr
#: new_help.xhp
@@ -1710,7 +1710,7 @@ msgctxt ""
"par_id791534903145827\n"
"help.text"
msgid "Some contents in help pages can be copied to the system clipboard with only one mouse click. In these cases a tooltip appears when hovering the mouse on the copy-enabled contents. For example, the following line is copy-enabled:"
-msgstr ""
+msgstr "Osan ohjesivujen sisällöstä voi kopioida leikepöydälle yhdellä hiiren napsautuksella. Näissä tapauksissa, kun hiiren osoittimen liikuttaa kopioinnin mahdollistavan sisällön päälle, näkyviin tulee työkaluvihje. Esimerkiksi seuraava rivi mahdollistaa kopioinnin:"
#. wwBQj
#: new_help.xhp
@@ -1719,7 +1719,7 @@ msgctxt ""
"par_id381534903133044\n"
"help.text"
msgid "<item type=\"input\">=SUM(A1:A10)</item>"
-msgstr ""
+msgstr "<item type=\"input\">=SUMMA(A1:A10)</item>"
#. Egazs
#: new_help.xhp
diff --git a/source/fi/helpcontent2/source/text/shared/optionen.po b/source/fi/helpcontent2/source/text/shared/optionen.po
index d9e2a551a3d..7267c6348f0 100644
--- a/source/fi/helpcontent2/source/text/shared/optionen.po
+++ b/source/fi/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-23 11:48+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/fi/>\n"
@@ -11863,32 +11863,32 @@ msgctxt ""
msgid "Snap"
msgstr "Kohdista"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "Kohdistusviivoihin"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "Tämän asetuksen voi tehdä myös käyttämällä <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Kohdista sijoitteluapuihin\"><emph>Kohdista sijoitteluapuihin</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Kohdista sijoitteluapuihin\"><emph>Kohdista sijoitteluapuihin</emph></link></caseinline><defaultinline><emph>Kohdista kohdistusviivoihin</emph></defaultinline></switchinline>-kuvaketta, joka on saatavilla <emph>Asetukset</emph>-palkista esitys- tai piirrosasiakirjoissa."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr ""
#. eUCCJ
#: 01070300.xhp
diff --git a/source/fi/helpcontent2/source/text/simpress/02.po b/source/fi/helpcontent2/source/text/simpress/02.po
index ad51202f2be..7eb343fcf96 100644
--- a/source/fi/helpcontent2/source/text/simpress/02.po
+++ b/source/fi/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 10:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -5695,41 +5695,41 @@ msgctxt ""
msgid "Exit all groups"
msgstr "Poistu kaikista ryhmistä"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Kohdista kohdistusviivoihin"
+msgid "Snap to Snap Guides"
+msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Kohdista sijoitteluapuihin\">Kohdista kohdistusviivoihin</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Kuvake, jossa ristikkäiset katkoviivat ja magneetti</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Kohdista kohdistusviivoihin"
+msgid "Snap to Snap Guides"
+msgstr ""
#. oXWsX
#: 13150000.xhp
diff --git a/source/fi/helpcontent2/source/text/swriter.po b/source/fi/helpcontent2/source/text/swriter.po
index 151f9a35f90..01b6337cdd0 100644
--- a/source/fi/helpcontent2/source/text/swriter.po
+++ b/source/fi/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-06 12:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/fi/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563293538.000000\n"
#. P7iNX
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "Vasemmalta oikealle"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">vasemmalta oikealle -kuvake</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "Oikealta vasemmalle"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">oikealta vasemmalle -kuvake</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/fi/helpcontent2/source/text/swriter/01.po b/source/fi/helpcontent2/source/text/swriter/01.po
index 52d7fe33d48..6dc41597458 100644
--- a/source/fi/helpcontent2/source/text/swriter/01.po
+++ b/source/fi/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/fi/>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "Rakenneselain"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30104,6 +30104,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Avataan <emph>Joukkokirjeen vastaanottaja</emph> -valintaikkuna.</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/swriter/guide.po b/source/fi/helpcontent2/source/text/swriter/guide.po
index a3962d21c00..2e005c2f490 100644
--- a/source/fi/helpcontent2/source/text/swriter/guide.po
+++ b/source/fi/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-11-06 12:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/fi/>\n"
@@ -7792,50 +7792,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Kappaleiden sisentäminen</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr ""
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "Käsiteltävän kappaleen tai kaikkien valittujen kappaleiden tai kappaletyylin sisennykset ovat muutettavissa."
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "Käsiteltävän kappaleen tai kaikkien valittujen kappaleiden tai kappaletyylin sisennykset ovat muutettavissa."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "Valitaan <item type=\"menuitem\">Muotoilu - Kappale - Sisennykset ja välit</item> sisennyksen muuttamiseksi käsiteltävästä kappaleesta tai kaikista valituista kappaleista. Voidaan myös <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">sisentää viivaimella</link>."
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "Voidaan myös <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">sisentää viivaimella</link>. Viivaimen esille saamiseksi valitaan <item type=\"menuitem\">Näytä - Viivain</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "Valitaan <item type=\"menuitem\">Muotoilu - Kappale - Sisennykset ja välit</item> sisennyksen muuttamiseksi käsiteltävästä kappaleesta tai kaikista valituista kappaleista. Voidaan myös <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">sisentää viivaimella</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "Voidaan myös <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">sisentää viivaimella</link>. Viivaimen esille saamiseksi valitaan <item type=\"menuitem\">Näytä - Viivain</item>."
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "Napsautetaan kakkospainikkeella kappaletta ja valitaan <item type=\"menuitem\">Muokkaa kappaleen tyyliä - Sisennykset ja välit</item> sisennysten muuttamiseksi kaikista kappaleista, joilla on sama kappaletyyli."
+msgid "Positioning indents"
+msgstr ""
#. qUxKq
#: indenting.xhp
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "Sisennykset lasketaan suhteessa vasempaan tai oikeaan marginaaliin. Jos kappaleen halutaan ulottuvan sivun marginaaliin, annetaan negatiivinen luku."
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr ""
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "Sisennyksissä on eroa kirjoitussuunnasta riippuen. Esimerkiksi tarkastellaan <item type=\"menuitem\">Vasemmalta</item>-sisennyksen arvoa. Vasemmalta oikealle kirjoitettavissa kielissä kappaleen vasen reuna sisennetään suhteessa vasempaan marginaaliin. Oikealta vasemmalle kirjoitettavilla kielillä kappaleen oikea reuna sisennetään suhteessa oikeaan marginaaliin."
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "Riippuvaan sisennykseen annetaan positiivinen <item type=\"menuitem\">Vasemmalta</item>-arvo ja negatiivinen <item type=\"menuitem\">Ensimmäinen rivi</item> -arvo."
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,14 +10294,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "Lukujen tunnistuksen kytkeminen taulukoissa käyttöön ja pois"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>luvut; tunnistus tekstitaulukoissa</bookmark_value><bookmark_value>taulukot; lukujen tunnistus</bookmark_value><bookmark_value>päivämäärät;automaattinen muotoilu taulukoissa</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10267,14 +10330,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Tee jokin seuraavista:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "Napsauta kakkospainikkeella ja valitse <item type=\"menuitem\">Lukujen tunnistus</item>. Piirteen ollessa käytössä <item type=\"menuitem\">Lukujen tunnistus</item> -komento on merkitty."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr "Valitse <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Asetukset</caseinline><defaultinline>Työkalut - Asetukset</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Taulukko</item> ja merkitse tai tyhjennä <item type=\"menuitem\">Lukujen tunnistus</item>-valintaruutu."
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12211,6 +12292,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "Esitteenä tulostettavaa asiakirjaa luotaessa käytetään pystysuuntaisia sivuja. Writer soveltaa esitetaittoa asiakirjaa tulostettaessa"
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12256,50 +12355,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "Jos tulostin tulostaa kaksipuoleisesti, ja koska esite tulostetaan aina vaakasuuntaiselle arkille, pitää käyttää \"kaksipuolinen - lyhyt reuna\" -asetusta tulostimen asetusten valintaikkunassa."
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
-msgstr "Palaa <emph>Tulosta</emph>-valintaikkunaan ja napsauta <emph>Sivun asettelu</emph>-lehteä."
+msgid "Return to <emph>Print</emph> dialog."
+msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
-msgstr "Valitse <emph>Esite</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
+msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "Tulostimelle, joka automaattisesti tulostaa arkin molemmille puolille, määrää sisällytettäväksi \"Kaikki sivut\"."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Hyväksy <emph>OK</emph>:lla."
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "Jos %PRODUCTNAME tulostaa sivut väärässä järjestyksessä, avataan <emph>Valinnat</emph>-lehti, merkitään <emph>Tulosta sivut käänteisessä järjestyksessä</emph>-valintaruutu ja tulostetaan asiakirja uudestaan."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr "<link href=\"text/swriter/01/01120000.xhp\" name=\"Tiedosto - Esikatselu\">Tiedosto - Tulostuksen esikatselu</link>."
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,32 +12724,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Monisivuinen tulostus arkille\">Monisivuinen tulostus arkille</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
-msgstr "<emph>Tiedosto - Tulosta</emph> -valintaikkunan <emph>Sivun asettelu</emph> -lehdellä on valittavissa monisivuinen tulostus yhdelle arkille."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
+msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
-msgstr "Valitse <emph>Tiedosto - Tulosta</emph> ja napsauta <emph>Sivun asettelu</emph> -lehteä."
+msgid "Choose <menuitem>File - Print</menuitem>"
+msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Tee jokin seuraavista:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/fi/sc/messages.po b/source/fi/sc/messages.po
index 1f71cb413eb..c59062c0006 100644
--- a/source/fi/sc/messages.po
+++ b/source/fi/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-20 16:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/fi/>\n"
@@ -28629,38 +28629,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr "Valinnan mukaisesti tulee varoitus, jos leikepöydältä yritetään liittää soluja solualueelle, joka ei ole tyhjä."
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Käytä tulostimen mittoja tekstin muotoilussa"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "Määritetään tulostimen mitat käyttöön muotoiluun myös näytöllä."
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Korosta valinta sarake- ja rivitunnuksissa"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr "Merkitsemällä ruutu määrätään, että valittaessa soluja vastaavat rivi- ja saraketunnukset korostuvat."
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Päivitä viittaukset solualuetta lajiteltaessa"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Syöttöasetukset"
diff --git a/source/fi/sfx2/messages.po b/source/fi/sfx2/messages.po
index b5ea2dc2d4a..a0f3860b91f 100644
--- a/source/fi/sfx2/messages.po
+++ b/source/fi/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-10-29 14:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/fi/>\n"
@@ -1646,286 +1646,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Sulje paneeli"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Kiinnitä"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Irrota"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Lisää valintoja"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Sulje sivupalkki"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Sivupalkin asetukset"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Mukautukset"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Palauta oletus"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Sulje sivupalkki"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alitsariini"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Mehiläispesä"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Sininen kaari"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Suunnitelma"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Kirkas sininen"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Hienostunut punainen"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Metsälintu"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Vaikutelma"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiraatio"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Valot"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Valkoinen ja vihreä"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropoli"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Keskiyön sininen"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Luontokuvitus"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Lyijykynä"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Edistys"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Auringonlasku"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vuosikerta"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Eloisa"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Ansioluettelo"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Oletus"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderni"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderni liikekirje groteskifontilla"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderni liikekirje antiikvafontilla"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Käyntikortti logolla"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Yksinkertainen"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Poista"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Tyhjennä kaikki"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Salasanan pituus"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Antamasi salasana aiheuttaa yhteentoimivuusongelmia. Anna salasana, joka on lyhyempi kuin 52 tavua (byte) tai pidempi kuin 55 tavua."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-napsautus avaa hyperlinkin: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Napsauta avataksesi hyperlinkin: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4156,6 +4120,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Poista..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/fi/starmath/messages.po b/source/fi/starmath/messages.po
index 75217711126..55ce71d26fa 100644
--- a/source/fi/starmath/messages.po
+++ b/source/fi/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-09-08 17:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/fi/>\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "or"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Plusmerkki (+)"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Miinusmerkki (-)"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Plusmiinusmerkki (+-)"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Miinusplusmerkki (-+)"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Boolen EI"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Yhteenlasku (+)"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Vähennyslasku (-)"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Kertolasku (piste)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Kertolasku (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Kertolasku (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Jakolasku (vinoviiva)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Jakolasku (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Jakolasku (murtoluku)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Ympyröity vinoviiva"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Ympyröity piste"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Ympyröity miinus"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Ympyröity plus"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Tensoritulo"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Boolen JA"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Boolen TAI"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Yhtä suuri kuin"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Eri suuri kuin"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Pienempi kuin"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Suurempi kuin"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Pienempi tai yhtä suuri kuin"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Suurempi tai yhtä suuri kuin"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Pienempi tai yhtä suuri kuin"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Suurempi tai yhtä suuri kuin"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Paljon pienempi kuin"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Paljon suurempi kuin"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "On määritelty"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Kongruentti"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Suunnilleen yhtä suuri"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Samanlainen kuin"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Samanlainen tai yhtä suuri kuin"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Verrannollinen"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Kohtisuora"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Yhdensuuntainen"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Kohti"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Vastaa (vasen)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Vastaa (oikea)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Kuuluu"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Ei kuulu"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Sisältää"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Yhdiste"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Leikkaus"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Erotus"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Osajoukko"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Osajoukko tai sama kuin"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Ylijoukko"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Ylijoukko tai sama kuin"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Ei osajoukko"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Ei osajoukko tai sama kuin"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Ei ylijoukko"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Ei ylijoukko tai sama kuin"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Itseisarvo"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Kertoma"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Neliöjuuri"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N:s juuri"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Eksponentiaalifunktio"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Eksponentiaalifunktio"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Luonnollinen logaritmi"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logaritmi"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sini"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Kosini"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangentti"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Kotangentti"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arkussini"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arkuskosini"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arkustangentti"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arkuskotangentti"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Hyperbolinen sini"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Hyperbolinen kosini"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Hyperbolinen tangentti"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Hyperbolinen kotangentti"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Areasini"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Areakosini"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Areatangentti"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Areakotangentti"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Summa"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Summa alarajalla"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Summa ylärajalla"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Summa ylä/alarajalla"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Tulo"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Tulo alarajalla"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Tulo ylärajalla"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Tulo ylä/alarajalla"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Liittotulo"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Liittotulo alarajalla"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Liittotulo ylärajalla"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Liittotulo ylä/alarajalla"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Raja-arvo"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Raja-arvo alarajalla"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Raja-arvo ylärajalla"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Raja-arvo ylä/alarajalla"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "alaraja-arvo"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "alaraja-arvo alaindeksi alhaalla"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "alaraja-arvo yläindeksi ylhäällä"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "alaraja-arvo ylä/alaindeksi"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "yläraja-arvo"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "yläraja-arvo alaindeksi alhaalla"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "yläraja-arvo yläindeksi ylhäällä"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "yläraja-arvo ylä/alaindeksi"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "On olemassa"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Ei ole olemassa"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Kaikille"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integraali"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Integraali alarajalla"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Integraali ylärajalla"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integraali ylä/alarajalla"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Kaksoisintegraali"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Kaksoisintegraali alarajalla"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Kaksoisintegraali ylärajalla"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Kaksoisintegraali ylä/alarajalla"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Kolmoisintegraali"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Kolmoisintegraali alarajalla"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Kolmoisintegraali ylärajalla"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Kolmoisintegraali ylä/alarajalla"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Viivaintegraali"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Viivaintegraali alarajalla"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Viivaintegraali ylärajalla"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Viivaintegraali ylä/alarajalla"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Kaksoisviivaintegraali"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Kaksoisviivaintegraali alarajalla"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Kaksoisviivaintegraali ylärajalla"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Kaksoisviivaintegraali ylä/alarajalla"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Kolmoisviivaintegraali"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Kolmoisviivaintegraali alarajalla"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Kolmoisviivaintegraali ylärajalla"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Kolmoisviivaintegraali ylä/alarajalla"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Akuuttiaksentti"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Yläviiva"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Yläkaari"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Käänteinen sirkumfleksi"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Ympyrä"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Piste"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Kaksi pistettä"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Kolme pistettä"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Gravis-aksentti"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Sirkumfleksi"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tilde"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Vektorinuoli"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Harppuuna"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Alaviiva"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Pitkä yläviiva"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Yliviivaus"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Läpinäkyvä"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Lihavoitu fontti"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Kursivoitu fontti"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Muuta kokoa"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Fontin vaihtaminen"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Väri musta"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Väri sininen"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Väri vihreä"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Väri punainen"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Väri harmaa"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Väri limetti"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Väri punaruskea"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Väri laivasto"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Väri oliivi"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Väri purppura"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Väri hopea"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Väri sinivihreä"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Väri keltainen"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "Väri RGB"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Ryhmäsulkeet"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Kaarisulkeet"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Hakasulkeet"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Kaksoishakasulkeet"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Aaltosulkeet"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Kulmasulkeet"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Katto"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Lattia"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Yksinkertaiset pystyviivat"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Kaksoispystyviivat"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Operaattorisulkeet"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Kaarisulkeet (skaalattavat)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Hakasulkeet (skaalattavat)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Kaksoishakasulkeet (skaalattavat)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Aaltosulkeet (skaalattavat)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Kulmasulkeet (skaalattavat)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Katto (skaalattava)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Lattia (skaalattava)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Yksinkertaiset pystyviivat (skaalattavat)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Kaksoispystyviivat (skaalattavat)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Operaattorisulkeet (skaalattavat)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Arvolla"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Aaltosulkeet ylhäällä (skaalattavat)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Aaltosulkeet alhaalla (skaalattavat)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Alaindeksi oikealla"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Potenssi"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Alaindeksi vasemmalla"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Yläindeksi vasemmalla"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Alaindeksi alla"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Yläindeksi päällä"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Kapea väli"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Tyhjä"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Rivinvaihto"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Pystypino (2 elementtiä)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Pystypino"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Matriisipino"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Tasaa vasemmalle"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Tasaa keskelle"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Tasaa oikealle"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Alef"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Tyhjä joukko"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Reaaliosa"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Imaginaariosa"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Ääretön"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Osittaisderivaatan merkki"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr "Laplace-muunnos"
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr "Fourier-muunnos"
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrassin p-funktio"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Pisteet keskellä"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Nousevat pisteet"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Laskevat pisteet"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Pisteet alhaalla"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Pisteet pystysuunnassa"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Yhdistetty kuvaus"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Jako (vinoviiva)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Jako (kenoviiva)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Jakaa"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Ei jaa"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Kaksoisnuoli vasemmalle"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Kaksoisnuoli vasemmalle ja oikealle"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Kaksoisnuoli oikealle"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Luonnollisten lukujen joukko"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Kokonaislukujen joukko"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Rationaalilukujen joukko"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Reaalilukujen joukko"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Kompleksilukujen joukko"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Suuri sirkumfleksi"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Suuri tilde"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Suuri vektorinuoli"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Suuri harppuuna"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h-viiva"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda-viiva"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Nuoli vasemmalle"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Nuoli oikealle"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Ylänuoli"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Alanuoli"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Ei välejä"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Edeltää"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Edeltää tai sama kuin"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Edeltää tai ekvivalentti"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Seuraa"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Seuraa tai sama kuin"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Seuraa tai ekvivalentti"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Ei edellä"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Ei seuraa"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Yksi- ja kaksipaikkaiset operaattorit"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Relaatiot"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Joukko-operaatiot"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funktiot"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operaattorit"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Määritteet"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Sulkeet"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Muotoilu"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Muut"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Esimerkkejä"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Kehä"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Massan ja energian ekvivalenssi"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Pythagoraan lause"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Gaussin jakauma"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Normaali"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kursivointi"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Lihavointi"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "musta"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "sininen"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "vihreä"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "punainen"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "harmaa"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "limetti"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "punaruskea"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "laivasto"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliivi"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "purppura"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "hopea"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "sinivihreä"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "keltainen"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "piilota"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "koko"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "fontti"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "vasen"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "keskellä"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "oikea"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Komennot"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Kaava"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Tallennetaan asiakirjaa..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION -kaava"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "VIRHE: "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Odottamaton merkki"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Odottamaton merkki"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Tähän tarvitaan '{'"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Tähän tarvitaan '}'"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Tähän tarvitaan '('"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Tähän tarvitaan ')'"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Vasen ja oikea symboli ristiriidassa"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Vaaditaan 'fixed', 'sans' tai 'serif'"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' ja sen perässä odottamaton merkki"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Kaksinkertainen tasaus ei ole sallittu"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Kaksinkertainen ala/yläindeksi ei ole sallittu"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Tähän tarvitaan '#'"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Tähän tarvitaan väri"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Tähän tarvitaan 'RIGHT'"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Sisältö"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Otsikko"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Kaavan teksti"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Reunat"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Koko"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Alkuperäinen koko"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~Sovita sivulle"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "Skaalaus"
diff --git a/source/fi/svtools/messages.po b/source/fi/svtools/messages.po
index d52ddb9d960..de1b3156a49 100644
--- a/source/fi/svtools/messages.po
+++ b/source/fi/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-29 14:36+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/fi/>\n"
@@ -18,483 +18,483 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Kumoa: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Tee uudelleen: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Toista: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Muotoilematon teksti"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Muotoilematon teksti (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bittikarttakuva (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface -metatiedosto (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Muotoiltu teksti (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Muotoiltu teksti (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME-piirrosmuoto"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView-bittikartta/animaatio (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
#, fuzzy
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Tilatiedot kohteesta Svx-sisäinen linkki"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME-linkki (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscapen kirjanmerkki"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star-palvelimen muoto"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star-objektin muoto"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Sovelmaobjekti"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Liitännäisobjekti"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 -objekti"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 -objekti"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 -objekti"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 -objekti"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 -objekti"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 -objekti"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 -objekti"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw-objekti"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 -objekti"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 -objekti"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 -objekti"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc-objekti"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 -objekti"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 -objekti"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart-objekti"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 -objekti"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 -objekti"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage-objekti"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 -objekti"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 -objekti"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath-objekti"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 -objekti"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 -objekti"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint -objekti"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Hypertekstin merkintäkieli (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Yksinkertaistettu hypertekstin merkintäkieli (yksinkertainen HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE-linkki)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word -objekti"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet-objekti"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office-asiakirjaobjekti"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes-asiakirjatiedot"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx-asiakirja"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 -objekti"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Grafiikkaobjekti"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer -objekti"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web -objekti"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Master -objekti"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw -objekti"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress -objekti"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc -objekti"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart -objekti"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math -objekti"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows-metatiedosto"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Tietolähdeobjekti"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tietolähdetaulukko"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL-kysely"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 -valintaikkuna"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "LInkki"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-muoto ilman kommentteja"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphics (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objektia % ei voitu lisätä."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objektia tiedostosta % ei voitu lisätä."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Muut objektit"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Tuntematon lähde"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "tavua"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "Kt"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "Mt"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "Gt"
@@ -502,1236 +502,1236 @@ msgstr "Gt"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Aakkosnumeerinen"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Tavallinen"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Merkistö"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Sanasto"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Veto"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikaali"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Puhelinluettelo"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Foneettinen (aakkosnumeeriset ensin)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Foneettinen (aakkosnumeeriset viimeiseksi)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Aakkosnumeerinen"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Sanasto"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikaali"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Veto"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Foneettinen (aakkosnumeeriset ensin, tavuittain ryhmiteltynä)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Foneettinen (aakkosnumeeriset ensin, konsonanteittain ryhmiteltynä)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Foneettinen (aakkosnumeeriset viimeiseksi, tavuittain ryhmiteltynä)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Foneettinen (aakkosnumeeriset viimeiseksi, konsonanteittain ryhmiteltynä)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Kevyt"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Kevyt kursivoitu"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Tavallinen"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kursivoitu"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Lihavoitu"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Lihavoitu ja kursivoitu"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Musta"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Musta kursivoitu"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Kirja"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Lihavoitu kallistettu"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Tiivistetty"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Tiivistetty lihavoitu"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Tiivistetty lihavoitu kursivoitu"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Tiivistetty lihavoitu kallistettu"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Tiivistetty kursivoitu"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Tiivistetty kallistettu"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Ekstraohut"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Ekstraohut kursivoitu"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Kallistettu"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Puolilihava"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Puolilihava kursivoitu"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Samaa fonttia käytetään sekä tulostimessa että näytöllä."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Tämä on tulostinfontti. Se saattaa näyttää erilaiselta näytöllä."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Tämä fonttityyli simuloidaan tai käytetään lähintä vastaavaa tyyliä."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Tätä fonttia ei ole asennettu. Käytetään lähintä asennettua fonttia."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Siirry kotikansioon"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Siirrä vasemmalle"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Siirrä oikealle"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Siirry loppuun"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Lisää"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Vaakaviivain"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Pystyviivain"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1-bittinen kynnysarvo"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1-bittinen rasteroitu"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4-bittiset harmaasävyt"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4-bittiset värit"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8-bittiset harmaasävyt"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8-bittiset värit"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24-bittiset täysvärit"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Kuva tarvitsee noin %1 Kt muistia."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Kuva tarvitsee noin %1 Kt muistia, tiedostokoko on %2 Kt."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Tiedostokoko on %1 Kt."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "palvelin"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "portti"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Muu CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Valmis"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Keskeytetty"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Odottaa poistamista"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Varattu"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Alustetaan"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Odotetaan"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Lämpenee"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Käsitellään"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Tulostetaan"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Offline-tila"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Virhe"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Tuntematon palvelin"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Paperitukos"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Ei tarpeeksi paperia"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Manuaalinen syöttö"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Paperiongelma"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O aktiivinen"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Tulostuslokero täynnä"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Väriaine vähissä"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Väri lopussa"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Poista sivu"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Käyttäjän toimia tarvitaan"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Ei riittävästi muistia"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Avoin kansi"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Virransäästötila"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Oletustulostin"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d asiakirjaa"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ei mitään>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Yritys"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Osasto"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Etunimi"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Sukunimi"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Katuosoite"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Maa"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Postinumero"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Postitoimipaikka"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titteli"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Asema"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Os. muoto"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Nimikirjaimet"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Lopputervehdys"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Puhelin (koti)"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Puhelin (työ)"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Faksi"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Sähköposti"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL-osoite"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
#, fuzzy
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Huomautus"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Käyttäjä 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Käyttäjä 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Käyttäjä 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Käyttäjä 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Tunnus"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Osavaltio"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Puhelin (toimisto)"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Hakulaite"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Matkapuhelin"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Puhelin (muu)"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalenteri"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Kutsu"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$:n $service$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAMEn kokoonpano on muuttunut. Valitse se Java-ajoympäristö, jota haluat %PRODUCTNAMEn käyttävän asetuksista valikosta %PRODUCTNAME - Asetukset - %PRODUCTNAME - Lisäasetukset."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAMEn kokoonpano on muuttunut. Valitse se Java-ajoympäristö, jota haluat %PRODUCTNAMEn käyttävän asetuksista valikosta Työkalut - Asetukset - %PRODUCTNAME - Lisäasetukset."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME vaatii Java-ajoympäristön (JRE) tämän toiminnon suorittamiseen. Valittu JRE on viallinen. Valitse toinen versio tai asenna uusi JRE ja ota se käyttöön asetuksista valikosta %PRODUCTNAME - Asetukset - %PRODUCTNAME - Lisäasetukset."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME vaatii Java-ajoympäristön (JRE) tämän toiminnon suorittamiseen. Valittu JRE on viallinen. Valitse toinen versio tai asenna uusi JRE ja ota se käyttöön asetuksista valikosta Työkalut - Asetukset - %PRODUCTNAME - Lisäasetukset."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE vaaditaan"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Valitse JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE on viallinen"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Lähdekoodi"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Kirjanmerkkitiedosto"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafiikka"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Kokoonpanotiedosto"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Sovellus"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tietokantataulukko"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Järjestelmätiedosto"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word -asiakirja"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Ohjetiedosto"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-asiakirja"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Arkistotiedosto"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Lokitiedosto"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice-tietokanta"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 -perusasiakirja"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice-kuva"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekstitiedosto"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Linkki"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 – 5.0 -malli"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel -asiakirja"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel -malli"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Eräajotiedosto"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Tiedosto"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Kansio"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tekstiasiakirja"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Laskentataulukko"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Esitys"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Piirros"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-asiakirja"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Perusasiakirja"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Kaava"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Tietokanta"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 -laskentataulukkomalli"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 -piirrosmalli"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 -esitysmalli"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 -tekstimalli"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Paikallinen asema"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Levyasema"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM-asema"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Verkkoyhteys"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint -asiakirja"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint -malli"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint -esitys"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 -kaava"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 -kaavio"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 -piirros"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 -laskentataulukko"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 -esitys"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 -tekstiasiakirja"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 -perusasiakirja"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML-asiakirja"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument-tietokanta"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument-piirros"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument-kaava"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument-perusasiakirja"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument-esitys"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument-laskentataulukko"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument-teksti"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument-laskentataulukkomalli"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument-piirrosmalli"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument-esitysmalli"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument-tekstimalli"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME-lisäosa"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell-oikoluku"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen-tavutus"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Mythes-synonyymisanasto"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Ohitettujen sanojen luettelo"
diff --git a/source/fi/svx/messages.po b/source/fi/svx/messages.po
index ddd02220f6a..66d41135b0c 100644
--- a/source/fi/svx/messages.po
+++ b/source/fi/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-07 06:36+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/fi/>\n"
@@ -16338,11 +16338,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Jokerimerkit"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "Huomautukset"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/fi/sw/messages.po b/source/fi/sw/messages.po
index 7c00ab10d71..915df5fc1dc 100644
--- a/source/fi/sw/messages.po
+++ b/source/fi/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-07 06:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/fi/>\n"
@@ -17448,86 +17448,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr "Annetaan taulukkoon tulevien rivien lukumäärä."
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Yleiset"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "Otsikko"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr "Taulukkoon tulee otsikkorivi."
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Toista otsikkorivit uusilla sivuilla"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr "Taulukon otsikkorivi toistetaan niillä sivuilla, joille taulukko jatkuu."
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Älä jaa taulukkoa usealle sivulle"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr "Merkintä estää taulukon jatkumisen useammalle sivulle."
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr "Määrätään otsikon rivimäärä."
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Otsikkorivejä:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Asetukset"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Tyylit"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20041,289 +20047,289 @@ msgid "Text"
msgstr "Teksti"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Pohjan näyttö päälle/pois"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Vuorotellaan perusasiakirja- ja normaalinäkymää, jos perusasiakirja on auki."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Sisällön selailunäkymä"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Ylätunniste"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Alatunniste"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Ankkuri<->Teksti"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Määritä muistutus"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Toimintoa napsautetaan muistutuksen asettamiseksi kohdistimen kohdalle. Enintään viisi muistutusta on asetettavissa. Muistutukseen hyppäämiseksi napsautetaan Siirtyminen-kuvaketta, Siirtyminen-ikkunassa napsautetaan Muistutus-kuvaketta ja napsautetaan sitten Edellinen- tai Seuraava-nuolipainiketta."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Otsikkotasojen näyttö"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Luetteloruutu käytössä / poissa käytöstä"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Korota tasoa"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Alenna tasoa"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Siirrä luku ylemmälle tasolle"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Siirrä luku alemmalle tasolle"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Vetotila"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Asiakirja"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Aktiivinen ikkuna"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Pohjan näyttö päälle/pois"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Vuorotellaan perusasiakirja- ja normaalinäkymää, jos perusasiakirja on auki."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Muokkaa"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Päivitä"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Napsautetaan ja valitaan päivitettävä sisältötyyppi."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Lisää"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Perusasiakirjaan lisätään tiedosto, hakemisto tai uusi asiakirja."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Tallenna myös sisältö"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Siirrä ylemmäs"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Siirrä alemmas"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Valinta"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Linkit"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Kaikki"
diff --git a/source/fr/cui/messages.po b/source/fr/cui/messages.po
index d324bd9cc85..2130e94939d 100644
--- a/source/fr/cui/messages.po
+++ b/source/fr/cui/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-15 23:35+0000\n"
+"PO-Revision-Date: 2020-11-20 07:13+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/fr/>\n"
"Language: fr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562576624.000000\n"
#. GyY9M
@@ -3401,7 +3401,7 @@ msgstr "Impossible de modifier ou de supprimer un style de cellule personnalisé
#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Vous avez besoin de remplir une série ? Sélectionnez la plage de cellules, puis Feuille ▸ Remplir les cellules ▸ Remplir la série et choisissez entre Arithmétique, Géométrique, Date et Remplir automatiquement."
#. BiSJM
#. local help missing
@@ -3474,7 +3474,7 @@ msgstr "Développement de nouveaux filtres XSLT et XML ?"
#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General."
-msgstr ""
+msgstr "Appuyez sur Maj+F1 pour voir toutes les infoballons disponibles dans les boîtes de dialogue, lorsque « Infoballons » n'est pas activé dans Outils ▸ Options ▸ %PRODUCTNAME ▸ Général."
#. hsZPg
#: cui/inc/tipoftheday.hrc:274
@@ -5630,7 +5630,7 @@ msgstr "_Défini par l'utilisateur :"
#: cui/uiconfig/ui/borderpage.ui:98
msgctxt "borderpage|userdefft"
msgid "Click edge or corner to cycle through three states: set, unchanged, remove."
-msgstr ""
+msgstr "Cliquez sur le bord ou le coin pour passer d'un état à l'autre : défini, inchangé, supprimé."
#. sRXeg
#: cui/uiconfig/ui/borderpage.ui:111
@@ -5732,7 +5732,7 @@ msgstr "Dista_nce :"
#: cui/uiconfig/ui/borderpage.ui:547
msgctxt "borderpage|distanceft"
msgid "Width of shadow"
-msgstr ""
+msgstr "Largeur de l'ombre"
#. gEF6E
#: cui/uiconfig/ui/borderpage.ui:572
@@ -15185,7 +15185,7 @@ msgstr "Éditer les dictionnaires utilisateur"
#: cui/uiconfig/ui/optlingupage.ui:356
msgctxt "lingudictsedit"
msgid "Opens the Edit custom dictionary dialog, in which you can add to your custom dictionary or edit existing entries."
-msgstr ""
+msgstr "Ouvre la boîte de dialogue Éditer le dictionnaire personnalisé, dans laquelle vous pouvez ajouter des entrées à votre dictionnaire personnalisé ou modifier des entrées existantes."
#. WCFD5
#: cui/uiconfig/ui/optlingupage.ui:368
@@ -15197,19 +15197,19 @@ msgstr "_Supprimer"
#: cui/uiconfig/ui/optlingupage.ui:375
msgctxt "lingudictsdelete"
msgid "Deletes the selected dictionary after a confirmation, provided it is not write-protected."
-msgstr ""
+msgstr "Supprime le dictionnaire sélectionné après une confirmation, à condition qu'il ne soit pas protégé en écriture."
#. qEqZD
#: cui/uiconfig/ui/optlingupage.ui:420
msgctxt "optlingupage|lingudictsft"
msgid "_User-defined Dictionaries"
-msgstr ""
+msgstr "Dictionnaires _utilisateur"
#. sE9tc
#: cui/uiconfig/ui/optlingupage.ui:505
msgctxt "linguoptions"
msgid "Defines the options for the spellcheck and hyphenation."
-msgstr ""
+msgstr "Définit les options pour le correcteur orthographique et la coupure des mots."
#. 58e5v
#: cui/uiconfig/ui/optlingupage.ui:518
@@ -15227,7 +15227,7 @@ msgstr "Éditer les options"
#: cui/uiconfig/ui/optlingupage.ui:527
msgctxt "linguoptionsedit"
msgid "If you want to change a value, select the entry and then click Edit."
-msgstr ""
+msgstr "Si vous voulez modifier une valeur, sélectionnez l'entrée et cliquez sur Éditer."
#. XCpcE
#: cui/uiconfig/ui/optlingupage.ui:554
@@ -15245,7 +15245,7 @@ msgstr "_Options"
#: cui/uiconfig/ui/optlingupage.ui:632
msgctxt "OptLinguPage"
msgid "Specifies the properties of the spelling, thesaurus and hyphenation."
-msgstr ""
+msgstr "Spécifie les propriétés de la vérification orthographique, du dictionnaire des synonymes et de la coupure des mots."
#. ADZ8E
#: cui/uiconfig/ui/optnewdictionarydialog.ui:8
@@ -15257,7 +15257,7 @@ msgstr "Nouveau dictionnaire"
#: cui/uiconfig/ui/optnewdictionarydialog.ui:105
msgctxt "nameedit"
msgid "Specifies the name of the new custom dictionary."
-msgstr ""
+msgstr "Spécifie le nom du nouveau dictionnaire personnalisé."
#. XucrZ
#: cui/uiconfig/ui/optnewdictionarydialog.ui:118
@@ -15281,13 +15281,13 @@ msgstr "_Exception (-)"
#: cui/uiconfig/ui/optnewdictionarydialog.ui:153
msgctxt "except"
msgid "Specifies whether you wish to avoid certain words in your documents."
-msgstr ""
+msgstr "Précise si vous souhaitez éviter certains mots dans vos documents."
#. VJQ4d
#: cui/uiconfig/ui/optnewdictionarydialog.ui:176
msgctxt "language"
msgid "By selecting a certain language you can limit the use of the custom dictionary."
-msgstr ""
+msgstr "En sélectionnant une certaine langue, vous pouvez limiter l'utilisation du dictionnaire personnalisé."
#. CpgB2
#: cui/uiconfig/ui/optnewdictionarydialog.ui:193
@@ -15299,7 +15299,7 @@ msgstr "Dictionnaire"
#: cui/uiconfig/ui/optnewdictionarydialog.ui:218
msgctxt "OptNewDictionaryDialog"
msgid "In the Dictionary section you can name a new user-defined dictionary or dictionary of exceptions and specify the language."
-msgstr ""
+msgstr "Dans la section Dictionnaire, vous pouvez nommer un nouveau dictionnaire défini par l'utilisateur ou un dictionnaire d'exceptions et spécifier la langue."
#. n6vQH
#: cui/uiconfig/ui/optonlineupdatepage.ui:35
@@ -15503,7 +15503,7 @@ msgstr "Chemins internes"
#: cui/uiconfig/ui/optpathspage.ui:130
msgctxt "paths"
msgid "To modify an entry in this list, click the entry and click Edit. You can also double click the entry."
-msgstr ""
+msgstr "Pour modifier une entrée dans cette liste, cliquez sur l'entrée et cliquez sur Éditer. Vous pouvez également double-cliquer sur l'entrée."
#. rfDum
#: cui/uiconfig/ui/optpathspage.ui:150
@@ -15521,7 +15521,7 @@ msgstr "_Par défaut"
#: cui/uiconfig/ui/optpathspage.ui:178
msgctxt "default"
msgid "The Default button resets the predefined paths for all selected entries."
-msgstr ""
+msgstr "Le bouton Par défaut réinitialise les chemins prédéfinis pour toutes les entrées sélectionnées."
#. q8JFc
#: cui/uiconfig/ui/optpathspage.ui:190
@@ -15533,13 +15533,13 @@ msgstr "_Éditer..."
#: cui/uiconfig/ui/optpathspage.ui:197
msgctxt "edit"
msgid "Click to display the Select Path or Edit Paths dialog."
-msgstr ""
+msgstr "Cliquez pour afficher la boîte de dialogue Sélectionner un chemin ou Modifier les chemins."
#. G5xyX
#: cui/uiconfig/ui/optpathspage.ui:216
msgctxt "OptPathsPage"
msgid "This section contains the default paths to important folders in %PRODUCTNAME. These paths can be edited by the user."
-msgstr ""
+msgstr "Cette section contient les chemins d'accès par défaut aux dossiers importants dans %PRODUCTNAME. Ces chemins peuvent être modifiés par l'utilisateur."
#. pQEWv
#: cui/uiconfig/ui/optproxypage.ui:31
@@ -15683,7 +15683,7 @@ msgstr "Charger les paramètres d'impression avec le document"
#: cui/uiconfig/ui/optsavepage.ui:47
msgctxt "load_docprinter"
msgid "If enabled, the printer settings will be loaded with the document. This can cause a document to be printed on a distant printer, if you do not change the printer manually in the Print dialog. If disabled, your standard printer will be used to print this document. The current printer settings will be stored with the document whether or not this option is checked."
-msgstr ""
+msgstr "Si cette option est activée, les paramètres de l'imprimante seront chargés avec le document. Cela peut entraîner l'impression d'un document sur une imprimante distante, si vous ne modifiez pas l'imprimante manuellement dans la boîte de dialogue Imprimer. Si elle est désactivée, votre imprimante standard sera utilisée pour imprimer ce document. Les paramètres actuels de l'imprimante seront stockés avec le document, que cette option soit cochée ou non."
#. VdFnA
#: cui/uiconfig/ui/optsavepage.ui:58
@@ -15695,7 +15695,7 @@ msgstr "Charger les paramètres utilisateur avec le document"
#: cui/uiconfig/ui/optsavepage.ui:67
msgctxt "load_settings"
msgid "Loads the user-specific settings saved in a document with the document."
-msgstr ""
+msgstr "Charge les paramètres spécifiques à l'utilisateur enregistrés dans un document avec le document."
#. js6Gn
#: cui/uiconfig/ui/optsavepage.ui:84
@@ -15713,13 +15713,13 @@ msgstr "Enregistrer les informations de récupération _automatique toutes les :
#: cui/uiconfig/ui/optsavepage.ui:132
msgctxt "autosave"
msgid "Specifies that %PRODUCTNAME saves the information needed to restore all open documents in case of a crash. You can specify the saving time interval."
-msgstr ""
+msgstr "Spécifie que %PRODUCTNAME enregistre les informations nécessaires pour restaurer en cas de plantage tous les documents ouverts. Vous pouvez spécifier l'intervalle de temps de sauvegarde."
#. ipCBG
#: cui/uiconfig/ui/optsavepage.ui:150
msgctxt "autosave_spin"
msgid "Specifies the time interval in minutes for the automatic recovery option."
-msgstr ""
+msgstr "Spécifie l'intervalle de temps en minutes pour l'option de récupération automatique."
#. BN5Js
#: cui/uiconfig/ui/optsavepage.ui:163
@@ -15737,7 +15737,7 @@ msgstr "Enregistrer également automatiquement le document"
#: cui/uiconfig/ui/optsavepage.ui:187
msgctxt "userautosave"
msgid "Specifies that %PRODUCTNAME saves all open documents when saving auto recovery information. Uses the same time interval as AutoRecovery does."
-msgstr ""
+msgstr "Spécifie que %PRODUCTNAME enregistre tous les documents ouverts lors de l'enregistrement de récupération automatique des informations. Utilise le même intervalle de temps que pour la récupération automatique."
#. kwFtx
#: cui/uiconfig/ui/optsavepage.ui:198
@@ -15749,7 +15749,7 @@ msgstr "Enregistrer les URL relatifs au système de fichiers"
#: cui/uiconfig/ui/optsavepage.ui:207
msgctxt "relative_fsys"
msgid "Select this box for relative saving of URLs in the file system."
-msgstr ""
+msgstr "Cochez cette case pour l'enregistrement relatif des URL dans le système de fichiers."
#. 8xmX3
#: cui/uiconfig/ui/optsavepage.ui:218
@@ -15761,7 +15761,7 @@ msgstr "Éditer les propriétés du document _avant l'enregistrement"
#: cui/uiconfig/ui/optsavepage.ui:227
msgctxt "docinfo"
msgid "Specifies that the Properties dialog will appear every time you select the Save As command."
-msgstr ""
+msgstr "Indique que la boîte de dialogue Propriétés s'affiche chaque fois que vous sélectionnez la commande Enregistrer sous."
#. ctAxA
#: cui/uiconfig/ui/optsavepage.ui:238
@@ -15773,7 +15773,7 @@ msgstr "Enregistrer les URL relatifs à internet"
#: cui/uiconfig/ui/optsavepage.ui:247
msgctxt "relative_inet"
msgid "Select this box for relative saving of URLs to the Internet."
-msgstr ""
+msgstr "Cochez cette case pour l'enregistrement relatif des URL sur Internet."
#. YsjVX
#: cui/uiconfig/ui/optsavepage.ui:258
@@ -15785,7 +15785,7 @@ msgstr "_Toujours créer une copie de sauvegarde"
#: cui/uiconfig/ui/optsavepage.ui:267
msgctxt "backup"
msgid "Saves the previous version of a document as a backup copy whenever you save a document. Every time %PRODUCTNAME creates a backup copy, the previous backup copy is replaced. The backup copy gets the extension .BAK."
-msgstr ""
+msgstr "Enregistre la version précédente du document en tant que copie de sauvegarde chaque fois que vous enregistrez le document. Chaque fois que %PRODUCTNAME crée une copie de sauvegarde, celle-ci remplace la copie de sauvegarde précédente. La copie de sauvegarde porte l'extension .BAK."
#. NaGCU
#: cui/uiconfig/ui/optsavepage.ui:284
@@ -15803,7 +15803,7 @@ msgstr "Avertir lors d'un enregistrement autre que le format ODF ou le format pa
#: cui/uiconfig/ui/optsavepage.ui:326
msgctxt "warnalienformat"
msgid "You can choose to get a warning message when you save a document in a format that is not OpenDocument or which you did not set as default format in Load/Save - General in the Options dialog box."
-msgstr ""
+msgstr "Vous pouvez choisir de recevoir un message d'avertissement lorsque vous enregistrez un document dans un format autre qu'OpenDocument ou celui que vous n'avez pas défini comme format par défaut dans Chargement/Enregistrement - Général dans la boîte de dialogue Options."
#. 5ANvD
#. EN-US, the term 'extended' must not be translated.
@@ -15852,7 +15852,7 @@ msgstr "1.3 Étendu (recommandé)"
#: cui/uiconfig/ui/optsavepage.ui:386
msgctxt "odfversion"
msgid "Some companies or organizations may require ODF documents in the ODF 1.0/1.1, or ODF 1.2 format. You can select these format to save in the listbox. These older formats cannot store all new features, so the new format ODF 1.3 (Extended) is recommended where possible."
-msgstr ""
+msgstr "Certaines sociétés ou organisations peuvent exiger des documents ODF au format ODF 1.0 / 1.1 ou ODF 1.2. Vous pouvez sélectionner ces formats d'enregistrement dans la liste. Ces anciens formats ne pouvant pas stocker toutes les nouvelles fonctionnalités, le nouveau format ODF 1.3 (étendu) est recommandé dans la mesure du possible."
#. cxPqV
#: cui/uiconfig/ui/optsavepage.ui:399
@@ -15912,13 +15912,13 @@ msgstr "Formule"
#: cui/uiconfig/ui/optsavepage.ui:438
msgctxt "doctype"
msgid "Specifies the document type for which you want to define the default file format."
-msgstr ""
+msgstr "Indique le type de document pour lequel vous voulez définir le format de fichier par défaut."
#. 69GMF
#: cui/uiconfig/ui/optsavepage.ui:453
msgctxt "saveas"
msgid "Specifies how documents of the type selected on the left will always be saved as this file type. You may select another file type for the current document in the Save as dialog."
-msgstr ""
+msgstr "Indique le type de fichier sous lequel les documents du type sélectionné à gauche doivent être toujours enregistrés. Vous pouvez sélectionner un autre type de fichier pour le document actif dans la boîte de dialogue Enregistrer sous."
#. 29FUf
#: cui/uiconfig/ui/optsavepage.ui:466
@@ -15936,7 +15936,7 @@ msgstr "Format de fichier par défaut et paramétrages ODF"
#: cui/uiconfig/ui/optsavepage.ui:498
msgctxt "OptSavePage"
msgid "In the General section, you can select default settings for saving documents, and can select default file formats."
-msgstr ""
+msgstr "Dans la section Général, vous pouvez sélectionner des paramètres par défaut pour l'enregistrement de vos documents ainsi que des formats de fichier par défaut."
#. ArEZy
#: cui/uiconfig/ui/optsecuritypage.ui:37
@@ -15954,7 +15954,7 @@ msgstr "Autorités d'horodatage (_TSA)..."
#: cui/uiconfig/ui/optsecuritypage.ui:58
msgctxt "extended_tip|tsas"
msgid "Opens the Time Stamping Authority URLs dialog."
-msgstr ""
+msgstr "Ouvre la boîte de dialogue URL d'autorités d'horodatage."
#. vrbum
#: cui/uiconfig/ui/optsecuritypage.ui:75
@@ -16302,7 +16302,7 @@ msgstr "adresse courriel"
#: cui/uiconfig/ui/optuserpage.ui:430
msgctxt "extended tip | email"
msgid "Type your email address."
-msgstr ""
+msgstr "Saisissez votre adresse de courrier électronique."
#. eygE2
#: cui/uiconfig/ui/optuserpage.ui:447
@@ -16314,7 +16314,7 @@ msgstr "Utiliser les données dans les propriétés du document"
#: cui/uiconfig/ui/optuserpage.ui:456
msgctxt "extended tips | usefordoprop"
msgid "Mark to use the data in document properties"
-msgstr ""
+msgstr "Cochez la case pour utiliser les données dans les propriétés du document."
#. ZngAH
#: cui/uiconfig/ui/optuserpage.ui:471
@@ -16344,7 +16344,7 @@ msgstr "Patronyme"
#: cui/uiconfig/ui/optuserpage.ui:516
msgctxt "extended tips | rusfathersname"
msgid "Type your father's name"
-msgstr ""
+msgstr "Saisissez votre patronyme"
#. pAF2D
#: cui/uiconfig/ui/optuserpage.ui:534
@@ -16440,7 +16440,7 @@ msgstr "Numéro d'appartement"
#: cui/uiconfig/ui/optuserpage.ui:703
msgctxt "extended tips | apartnum"
msgid "Type your apartment number"
-msgstr ""
+msgstr "Saisissez votre numéro d'appartement"
#. 8kEFB
#: cui/uiconfig/ui/optuserpage.ui:723
@@ -16482,7 +16482,7 @@ msgstr "Saisissez le nom de la rue dans ce champ."
#: cui/uiconfig/ui/optuserpage.ui:828
msgctxt "extended tips | country"
msgid "Type your country and region"
-msgstr ""
+msgstr "Saisissez votre pays et votre région"
#. Lw69w
#: cui/uiconfig/ui/optuserpage.ui:858
@@ -16776,7 +16776,7 @@ msgstr "Barre d'outils :"
#: cui/uiconfig/ui/optviewpage.ui:404
msgctxt "optviewpage|label1"
msgid "Icon Size"
-msgstr ""
+msgstr "Taille des icônes"
#. 8CiB5
#: cui/uiconfig/ui/optviewpage.ui:443
@@ -16836,13 +16836,13 @@ msgstr "S_tyle d'icône :"
#: cui/uiconfig/ui/optviewpage.ui:481
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
-msgstr ""
+msgstr "Ajoutez d'autres thèmes d'icônes à l'aide d'extensions"
#. eMqmK
#: cui/uiconfig/ui/optviewpage.ui:499
msgctxt "optviewpage|label1"
msgid "Icon Style"
-msgstr ""
+msgstr "Style d'icônes"
#. stYtM
#: cui/uiconfig/ui/optviewpage.ui:540
@@ -17064,20 +17064,20 @@ msgstr "Numéros de page :"
#: cui/uiconfig/ui/pageformatpage.ui:537
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Use page li_ne-spacing"
-msgstr ""
+msgstr "Utiliser l'interligne de page"
#. DtZQG
#. xdds
#: cui/uiconfig/ui/pageformatpage.ui:541
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Enables page line-spacing (register-true) using the selected Reference Style"
-msgstr ""
+msgstr "Active l'interligne de page (contrôle de repérage) en utilisant le style de référence sélectionné"
#. p2egb
#: cui/uiconfig/ui/pageformatpage.ui:547
msgctxt "extended_tip|checkRegisterTrue"
msgid "If enabled, then all paragraph styles with the option page line-spacing activated will be affected, assuming the line spacing of the Reference Style. This will align them to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
-msgstr ""
+msgstr "Si cette option est activée, tous les styles de paragraphe dont l'option interligne de page est activée seront affectés, en prenant l'interligne du style de référence. Ils seront ainsi alignés sur une grille verticale invisible de la page, quelle que soit la taille de leur police, de sorte que chaque ligne soit de la même hauteur."
#. 46djR
#: cui/uiconfig/ui/pageformatpage.ui:561
diff --git a/source/fr/helpcontent2/source/text/sbasic/guide.po b/source/fr/helpcontent2/source/text/sbasic/guide.po
index 86f79eb96a6..ec6895a89c1 100644
--- a/source/fr/helpcontent2/source/text/sbasic/guide.po
+++ b/source/fr/helpcontent2/source/text/sbasic/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-11-08 19:34+0100\n"
-"PO-Revision-Date: 2020-08-26 09:01+0000\n"
+"PO-Revision-Date: 2020-11-18 18:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicguide/fr/>\n"
"Language: fr\n"
@@ -555,7 +555,7 @@ msgctxt ""
"N0551\n"
"help.text"
msgid "%PRODUCTNAME embedded Python contains many standard libraries to benefit from. They bear a rich feature set, such as but not limited to:"
-msgstr "Le % PRODUCTNAME Python embarqué contient de nombreuses bibliothèques standards dont vous pouvez bénéficier. Elles portent un ensemble complet de fonctionnalités, telles que mais sans s'y limiter :"
+msgstr "Le %PRODUCTNAME Python embarqué contient de nombreuses bibliothèques standards dont vous pouvez bénéficier. Elles portent un ensemble complet de fonctionnalités, telles que mais sans s'y limiter :"
#. aPbV7
#: basic_2_python.xhp
diff --git a/source/fr/helpcontent2/source/text/sbasic/python.po b/source/fr/helpcontent2/source/text/sbasic/python.po
index 5b37b03f98e..940b7cf514a 100644
--- a/source/fr/helpcontent2/source/text/sbasic/python.po
+++ b/source/fr/helpcontent2/source/text/sbasic/python.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-11-09 19:35+0000\n"
+"PO-Revision-Date: 2020-11-18 18:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicpython/fr/>\n"
"Language: fr\n"
@@ -158,7 +158,7 @@ msgctxt ""
"N0336\n"
"help.text"
msgid "The %PRODUCTNAME Application Programming Interface (API) Scripting Framework supports inter-language script execution between Python and Basic, or other supported programming languages for that matter. Arguments can be passed back and fourth across calls, providing they represent primitives data types that both languages recognize, and assuming that the Scripting Framework converts them appropriately."
-msgstr "L'interface de programmation d'applications (Application Programming Interface ou API) %PRODUCTNAME et son cadre de script prend en charge l'exécution de scripts inter-langages entre Python et Basic, ou d'autres langages de programmation pris en charge . Les arguments peuvent être transmis dans les deux sens à travers des appels, à condition qu'ils représentent des types de données que les deux langages reconnaissent et en supposant que le cadre de script les convertit de manière appropriée."
+msgstr "L'interface de programmation d'applications (Application Programming Interface ou API) %PRODUCTNAME et son cadre de script prend en charge l'exécution de scripts inter-langages entre Python et Basic, ou d'autres langages de programmation pris en charge . Les arguments peuvent être transmis dans les deux sens à travers des appels, à condition qu'ils représentent des types de données que les deux langages reconnaissent et en supposant que le cadre de script les convertit de manière appropriée."
#. Gn9Bv
#: python_2_basic.xhp
@@ -2149,7 +2149,7 @@ msgctxt ""
"par_id981544049055996\n"
"help.text"
msgid "This container is accessible only by the %PRODUCTNAME user. Any open document can access macros stored the container. Macros in this location are stored in the %PRODUCTNAME user profile."
-msgstr "Ce conteneur n'est accessible que par l'utilisateur % PRODUCTNAME. Tout document ouvert peut accéder aux macros stockées dans le conteneur. Les macros à cet emplacement sont stockées dans le profil utilisateur % PRODUCTNAME."
+msgstr "Ce conteneur n'est accessible que par l'utilisateur %PRODUCTNAME. Tout document ouvert peut accéder aux macros stockées dans le conteneur. Les macros à cet emplacement sont stockées dans le profil utilisateur %PRODUCTNAME."
#. wUjx4
#: python_locations.xhp
@@ -2311,7 +2311,7 @@ msgctxt ""
"N0511\n"
"help.text"
msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
-msgstr "La propriété ComputerName est uniquement disponible pour Windows. Les appels Basic aux macros Python permettent de surmonter les limitations de Basic% PRODUCTNAME."
+msgstr "La propriété ComputerName est uniquement disponible pour Windows. Les appels Basic aux macros Python permettent de surmonter les limitations de Basic %PRODUCTNAME."
#. sV6Fp
#: python_platform.xhp
@@ -2338,7 +2338,7 @@ msgctxt ""
"NO529b\n"
"help.text"
msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
-msgstr "Le Basic % PRODUCTNAME ne reconnaît pas nativement MacOS X. L'identification de la plateforme est possible à l'aide de l'interface de programmation (API)% PRODUCTNAME."
+msgstr "Le Basic %PRODUCTNAME ne reconnaît pas nativement MacOS X. L'identification de la plateforme est possible à l'aide de l'interface de programmation (API) %PRODUCTNAME."
#. tTyE5
#: python_platform.xhp
@@ -2473,7 +2473,7 @@ msgctxt ""
"N0220\n"
"help.text"
msgid "A Python macro is a function within a .py file, identified as a module. Unlike %PRODUCTNAME Basic and its dozen of <link href=\"text/sbasic/shared/uno_objects.xhp\" name=\"UNO objects functions or services\">UNO objects functions or services</link>, Python macros use the <literal>XSCRIPTCONTEXT</literal> UNO single object, shared with JavaScript and BeanShell. The <literal>g_exportedScripts</literal> global tuple explicitly lists selectable macros from a module. Python modules hold autonomous code logic, and are independent from one another."
-msgstr "Une macro Python est une fonction d'un fichier .py, identifiée comme un module. Contrairement à Basic % PRODUCTNAME et à sa douzaine de <link href=\"text/sbasic/shared/uno_objects.xhp\" name=\"UNO objects functions or services\"> fonctions ou services d'objets UNO </link>, les macros Python utilisent l'objet unique UNO <literal> XSCRIPTCONTEXT </literal> , partagé avec JavaScript et BeanShell. Le tuple global <literal> g_exportedScripts </literal> répertorie explicitement les macros sélectionnables d'un module. Les modules Python possèdent une logique de code autonome et sont indépendants les uns des autres."
+msgstr "Une macro Python est une fonction d'un fichier .py, identifiée comme un module. Contrairement à Basic %PRODUCTNAME et à sa douzaine de <link href=\"text/sbasic/shared/uno_objects.xhp\" name=\"UNO objects functions or services\"> fonctions ou services d'objets UNO </link>, les macros Python utilisent l'objet unique UNO <literal> XSCRIPTCONTEXT </literal> , partagé avec JavaScript et BeanShell. Le tuple global <literal> g_exportedScripts </literal> répertorie explicitement les macros sélectionnables d'un module. Les modules Python possèdent une logique de code autonome et sont indépendants les uns des autres."
#. 8Ri8m
#: python_programming.xhp
@@ -2932,7 +2932,7 @@ msgctxt ""
"N0437\n"
"help.text"
msgid "%PRODUCTNAME Basic proposes <literal>InputBox()</literal>, <literal>Msgbox()</literal> and <literal>Print()</literal> screen I/O functions. Python alternatives exist relying either on %PRODUCTNAME API Abstract Windowing Toolkit, either on Python to Basic function calls. The latter proposes a syntax that is intentionally close to that of Basic, and uses a Python module next to a Basic module. The API Scripting Framework is used to perform Basic, BeanShell, JavaScript and Python inter-languages function calls."
-msgstr "% PRODUCTNAME Basic propose des fonctions d'E / S d'écran <literal> InputBox () </literal>, <literal> Msgbox () </literal> et <literal> Print () </literal>. Il existe des alternatives Python reposant soit sur la boîte à outils de fenêtrage( Abstract Windowing Toolkit ou awt) de l'API% PRODUCTNAME, soit sur des appels de fonction Python à Basic. Ce dernier propose une syntaxe volontairement proche de celle de Basic, et utilise un module Python à côté d'un module Basic. L'API Scripting Framework est utilisé pour effectuer des appels de fonction inter-langages Basic, BeanShell, JavaScript et Python."
+msgstr "%PRODUCTNAME Basic propose des fonctions d'E/S d'écran <literal>InputBox()</literal>, <literal>Msgbox()</literal> et <literal>Print()</literal>. Il existe des alternatives Python reposant soit sur la boîte à outils de fenêtrage (Abstract Windowing Toolkit ou awt) de l'API %PRODUCTNAME, soit sur des appels de fonction Python à Basic. Ce dernier propose une syntaxe volontairement proche de celle de Basic, et utilise un module Python à côté d'un module Basic. L'API Scripting Framework est utilisée pour effectuer des appels de fonction inter-langages Basic, BeanShell, JavaScript et Python."
#. hat4k
#: python_screen.xhp
@@ -3382,7 +3382,7 @@ msgctxt ""
"N0119\n"
"help.text"
msgid "The Python interactive console, also known as Python interpreter or Python shell, provides programmers with a quick way to execute commands and try out and test code without creating a file. UNO objects introspection as well as %PRODUCTNAME Python modules documentation can be obtained from the terminal."
-msgstr "La console interactive Python, également connue sous le nom d'interpréteur Python ou shell Python, offre aux programmeurs un moyen rapide d'exécuter des commandes et de tester et tester du code sans créer de fichier. L'introspection des objets UNO ainsi que la documentation des modules% PRODUCTNAME Python peuvent être obtenus à partir du terminal."
+msgstr "La console interactive Python, également connue sous le nom d'interpréteur Python ou shell Python, offre aux programmeurs un moyen rapide d'exécuter des commandes, d'essayer et de tester du code sans créer de fichier. L'introspection des objets UNO ainsi que la documentation des modules %PRODUCTNAME Python peuvent être obtenus à partir du terminal."
#. MZodx
#: python_shell.xhp
diff --git a/source/fr/helpcontent2/source/text/sbasic/shared.po b/source/fr/helpcontent2/source/text/sbasic/shared.po
index 36488ce5f14..3563f12be34 100644
--- a/source/fr/helpcontent2/source/text/sbasic/shared.po
+++ b/source/fr/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: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-09-07 15:47+0000\n"
+"PO-Revision-Date: 2020-11-18 18:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/fr/>\n"
"Language: fr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562340649.000000\n"
@@ -2715,7 +2715,7 @@ msgctxt ""
"par_id3151215\n"
"help.text"
msgid "When you create a new module, %PRODUCTNAME Basic automatically inserts a <literal>Sub</literal> called \"<literal>Main</literal>\". This default name has nothing to do with the order or the starting point of a %PRODUCTNAME Basic project. You can also safely rename this <literal>Sub</literal>routine."
-msgstr "Lorsque vous créez un nouveau module,% PRODUCTNAME Basic insère automatiquement un <literal> Sub </literal> appelé \"<literal> Main </literal>\". Ce nom par défaut n'a rien à voir avec la commande ou le point de départ d'un projet% PRODUCTNAME Basic. Vous pouvez également renommer en toute sécurité cette routine <literal> Sub </literal>."
+msgstr "Lorsque vous créez un nouveau module, %PRODUCTNAME Basic insère automatiquement une <literal>Sub</literal> appelée \"<literal>Main</literal>\". Ce nom par défaut n'a rien à voir avec la commande ou le point de départ d'un projet %PRODUCTNAME Basic. Vous pouvez également renommer en toute sécurité cette routine <literal>Sub</literal>."
#. NBySN
#: 01020300.xhp
@@ -2967,7 +2967,7 @@ msgctxt ""
"par_id3145258\n"
"help.text"
msgid "The variable is valid as long as the %PRODUCTNAME session lasts."
-msgstr "La variable est valide tant que dure la session% PRODUCTNAME."
+msgstr "La variable est valide tant que dure la session %PRODUCTNAME."
#. 9akEs
#: 01020300.xhp
diff --git a/source/fr/helpcontent2/source/text/scalc/00.po b/source/fr/helpcontent2/source/text/scalc/00.po
index e049279e46f..daddac2a8f3 100644
--- a/source/fr/helpcontent2/source/text/scalc/00.po
+++ b/source/fr/helpcontent2/source/text/scalc/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-09 19:35+0000\n"
+"PO-Revision-Date: 2020-11-20 15:02+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/fr/>\n"
"Language: fr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1557932195.000000\n"
#. E9tti
@@ -509,7 +509,7 @@ msgctxt ""
"par_id3159173\n"
"help.text"
msgid "<variable id=\"logical\"><emph>Insert - Function</emph> - Category <emph>Logical</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"logical\"><emph>Insertion - Fonction</emph> - Catégorie <emph>Logique</emph></variable>"
#. FqeXh
#: 00000404.xhp
diff --git a/source/fr/helpcontent2/source/text/scalc/01.po b/source/fr/helpcontent2/source/text/scalc/01.po
index 06f43ed0154..ba0292d7191 100644
--- a/source/fr/helpcontent2/source/text/scalc/01.po
+++ b/source/fr/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-09 19:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
+"PO-Revision-Date: 2020-11-21 15:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/fr/>\n"
"Language: fr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1565208174.000000\n"
#. sZfWF
@@ -9995,7 +9995,7 @@ msgctxt ""
"par_id3149312\n"
"help.text"
msgid "<variable id=\"logicaltext\">This category contains the <emph>Logical</emph> functions.</variable>"
-msgstr ""
+msgstr "<variable id=\"logicaltext\">Cette catégorie contient les fonctions <emph>Logiques</emph>.</variable>"
#. ADKTB
#: 04060105.xhp
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr "Utilisation des expressions régulières et des fonctions imbriquées"
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr "Pour que ces exemples fonctionnent comme décrits, assurez-vous que <emph>Activer les expressions régulières dans les formules</emph> est sélectionné dans <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Préférences</menuitem></caseinline><defaultinline><menuitem>Outils - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculer</menuitem>."
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/scalc/guide.po b/source/fr/helpcontent2/source/text/scalc/guide.po
index e5e3f358235..d74d026d815 100644
--- a/source/fr/helpcontent2/source/text/scalc/guide.po
+++ b/source/fr/helpcontent2/source/text/scalc/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-03 12:42+0100\n"
-"PO-Revision-Date: 2020-07-30 22:38+0000\n"
+"PO-Revision-Date: 2020-11-21 15:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/fr/>\n"
"Language: fr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1558541914.000000\n"
@@ -12588,7 +12588,7 @@ msgctxt ""
"par_id3148456\n"
"help.text"
msgid "Choose <menuitem>Tools - Macros - Edit Macros</menuitem>."
-msgstr ""
+msgstr "Choisissez <menuitem>Outils - Macros - Éditer les macros</menuitem>."
#. N4uB4
#: userdefined_function.xhp
@@ -12597,7 +12597,7 @@ msgctxt ""
"par_id3154510\n"
"help.text"
msgid "You will now see the Basic IDE."
-msgstr ""
+msgstr "Vous verrez alors l'EDI Basic."
#. jXhZH
#: userdefined_function.xhp
@@ -12606,7 +12606,7 @@ msgctxt ""
"par_id651603905832952\n"
"help.text"
msgid "In the Object Catalog window, double-click on the module where you want to store your macro."
-msgstr ""
+msgstr "Dans la fenêtre Catalogue d'objets, double cliquez sur le module dans lequel la macro doit être stockée."
#. G6mwG
#: userdefined_function.xhp
@@ -12633,7 +12633,7 @@ msgctxt ""
"par_id3150043\n"
"help.text"
msgid "Your function is automatically saved in the selected module and is now available. If you apply the function in a Calc document that is to be used on another computer, you can copy the function to the Calc document as described in the next section."
-msgstr ""
+msgstr "La fonction est automatiquement enregistrée dans le module sélectionné et est maintenant disponible. Si vous appliquez cette fonction dans un document Calc qui doit être utilisé sur un autre ordinateur, vous pouvez copier la fonction dans le document Calc comme décrit dans la section suivante."
#. 3bcAE
#: userdefined_function.xhp
@@ -12669,7 +12669,7 @@ msgctxt ""
"par_id3150304\n"
"help.text"
msgid "Choose <menuitem>Tools - Macros - Organize Macros - Basic</menuitem>."
-msgstr ""
+msgstr "Choisissez <menuitem>Outils - Macros - Gérer les macros - Basic</menuitem>."
#. HZciB
#: userdefined_function.xhp
@@ -12705,7 +12705,7 @@ msgctxt ""
"par_id3150517\n"
"help.text"
msgid "Choose <menuitem>Tools - Macros - Organize Macros - Basic</menuitem> ."
-msgstr ""
+msgstr "Choisissez <menuitem>Outils - Macros - Gérer les macros - Basic</menuitem>."
#. oTBX8
#: userdefined_function.xhp
diff --git a/source/fr/helpcontent2/source/text/sdraw.po b/source/fr/helpcontent2/source/text/sdraw.po
index f3489671e60..a5a8a3cdf35 100644
--- a/source/fr/helpcontent2/source/text/sdraw.po
+++ b/source/fr/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-06-29 11:27+0000\n"
+"PO-Revision-Date: 2020-11-21 15:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/fr/>\n"
"Language: fr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1557931791.000000\n"
#. dHbww
@@ -113,7 +113,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "View (menu in Draw)"
-msgstr ""
+msgstr "Affichage (menu de Draw)"
#. hWYJ3
#: main0103.xhp
@@ -158,7 +158,7 @@ msgctxt ""
"par_idN105B2\n"
"help.text"
msgid "Master"
-msgstr ""
+msgstr "Maître"
#. eSnQZ
#: main0103.xhp
@@ -167,7 +167,61 @@ msgctxt ""
"par_idN105B6\n"
"help.text"
msgid "Switch to the master view."
-msgstr ""
+msgstr "Passer au mode d'affichage maître"
+
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">Interface utilisateur</link>"
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr "Ouvre une boîte de dialogue pour sélectionner la mise en page de l'interface utilisateur."
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr "Commentaires"
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr "Affiche ou masque les annotations sur la page."
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr "Décaler"
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr "Utilisé pour déplacer la position de la page dans la fenêtre. Lorsque activé, l'apparence du pointer de la souris est modifiée. Cliquez sur la page et glissez-la à la position souhaitée."
#. 7AgpR
#: main0103.xhp
@@ -509,7 +563,7 @@ msgctxt ""
"hd_id3146313\n"
"help.text"
msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Capturer aux ligne de capture</link>"
#. eUTG8
#: main0213.xhp
diff --git a/source/fr/helpcontent2/source/text/sdraw/00.po b/source/fr/helpcontent2/source/text/sdraw/00.po
index 84ed0b56027..cd6c84cc5a4 100644
--- a/source/fr/helpcontent2/source/text/sdraw/00.po
+++ b/source/fr/helpcontent2/source/text/sdraw/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: 2020-11-03 12:42+0100\n"
-"PO-Revision-Date: 2020-11-09 19:35+0000\n"
+"PO-Revision-Date: 2020-11-21 15:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw00/fr/>\n"
"Language: fr\n"
@@ -68,7 +68,7 @@ msgctxt ""
"par_id321556823043909\n"
"help.text"
msgid "<variable id=\"frtiteh\">Choose <menuitem>Page - Page Properties</menuitem> and then click the <emph>Background</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtiteh\">Choisissez <menuitem>Page - Propriétés de la page</menuitem> puis cliquez sur l'onglet <emph>Arrière-plan</emph>.</variable>"
#. UqCyU
#: page_menu.xhp
@@ -77,7 +77,7 @@ msgctxt ""
"par_id941556823044342\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <menuitem>Page - Master Page</menuitem> </variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">Choisissez <menuitem>Page - Page maîtresse</menuitem>.</variable>"
#. paRMk
#: page_menu.xhp
@@ -86,7 +86,7 @@ msgctxt ""
"par_id191556823044529\n"
"help.text"
msgid "Choose <menuitem>Page - New Page</menuitem>"
-msgstr ""
+msgstr "Choisissez <menuitem>Page - Nouvelle page</menuitem>"
#. EpBTa
#: page_menu.xhp
diff --git a/source/fr/helpcontent2/source/text/shared/00.po b/source/fr/helpcontent2/source/text/shared/00.po
index 72531e65026..c53b7d34a45 100644
--- a/source/fr/helpcontent2/source/text/shared/00.po
+++ b/source/fr/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-09-18 18:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/fr/>\n"
@@ -2663,76 +2663,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "Un bon exemple de base de données relationnelle est une base contenant des tables Clients, Achats et Factures. En effet, la table Factures d'une telle base ne comporte aucune donnée relative à des clients ou à des achats ; néanmoins, elle contient par le biais de liens relationnels, ou de relations, des références aux champs respectifs des tables Clients et Achats (champ ID client de la table Clients, par exemple)."
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>Contrôle de repérage;définition</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "Contrôle de repérage"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/fr/helpcontent2/source/text/shared/01.po b/source/fr/helpcontent2/source/text/shared/01.po
index 854d0f7a5f4..461d323cdcc 100644
--- a/source/fr/helpcontent2/source/text/shared/01.po
+++ b/source/fr/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-09-23 19:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-18 18:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/fr/>\n"
"Language: fr\n"
@@ -5120,24 +5120,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr "Pour certains types de document, vous pouvez choisir d'imprimer une brochure."
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr "Plus d'options"
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr "<ahelp hid=\".\">Dans la fenêtre <emph>Plus d'options</emph>, vous pouvez définir des options supplémentaires pour l'impression active.</ahelp>"
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9395,14 +9377,14 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "Bascule entre le mode Maître et le mode d'affichage normal."
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icône</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgstr ""
#. 3Lq2G
#: 02110000.xhp
@@ -9431,14 +9413,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_EDIT\">Éditez le contenu du composant sélectionné dans la liste du <emph>Navigateur</emph>. Si la sélection est un fichier, le fichier est ouvert pour édition. Si la sélection est un index, la boîte de dialogue <emph>Index</emph> s'ouvre.</ahelp>"
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icône</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgstr ""
#. nRB3E
#: 02110000.xhp
@@ -9467,14 +9449,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Cliquez sur le contenu que vous souhaitez actualiser.</ahelp>"
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icône</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgstr ""
#. F4J5u
#: 02110000.xhp
@@ -9602,14 +9584,14 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "Vous pouvez insérer des fichiers dans le document maître en faisant glisser un fichier à partir du Bureau et en le déposant dans la vue en mode Maître du Navigateur."
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icône</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgstr ""
#. ijR7M
#: 02110000.xhp
@@ -9710,14 +9692,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Enregistre une copie du contenu des fichiers liés dans le document maître. De cette façon, le contenu actif reste disponible même si les fichiers liés ne sont plus accessibles.</ahelp>"
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icône</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgstr ""
#. ADEyJ
#: 02110000.xhp
@@ -9746,14 +9728,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Déplace la sélection d'une position vers le haut dans la liste du Navigateur.</ahelp> Vous pouvez déplacer des entrées en effectuant un glisser-déposer dans la liste. Si vous placez une section de texte dans une autre section de texte, les deux sections de texte sont fusionnées."
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icône</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgstr ""
#. GqEUL
#: 02110000.xhp
@@ -9782,14 +9764,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Déplace la sélection d'une position vers le haut dans la liste du Navigateur.</ahelp> Vous pouvez déplacer des entrées en effectuant un glisser-déposer dans la liste. Si vous placez une section de texte dans une autre section de texte, les deux sections de texte sont fusionnées."
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
-msgstr "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icône</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgstr ""
#. DLEGF
#: 02110000.xhp
@@ -49965,7 +49947,7 @@ msgctxt ""
"par_id511526575127337\n"
"help.text"
msgid "On signing a signature line, %PRODUCTNAME fills the line with the name of signer, adds the digital certificate issuer information and optionally insert the date of signature."
-msgstr "Lors de la signature d'une ligne de signature,% PRODUCTNAME remplit la ligne avec le nom du signataire, ajoute les informations sur l'émetteur du certificat numérique et insère éventuellement la date de signature."
+msgstr "Lors de la signature d'une ligne de signature, %PRODUCTNAME remplit la ligne avec le nom du signataire, ajoute les informations sur l'émetteur du certificat numérique et insère éventuellement la date de signature."
#. 2S44H
#: signsignatureline.xhp
diff --git a/source/fr/helpcontent2/source/text/shared/02.po b/source/fr/helpcontent2/source/text/shared/02.po
index 37c171e866f..6446a762d64 100644
--- a/source/fr/helpcontent2/source/text/shared/02.po
+++ b/source/fr/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-18 18:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/fr/>\n"
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr "<bookmark_value>Paragraphes;diminué le retrait de</bookmark_value><bookmark_value>Diminué le retrait de paragraphe</bookmark_value>"
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Réduire le retrait\">Réduire le retrait</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11059,14 +11059,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Si vous avez au préalable augmenté le retrait de plusieurs paragraphes sélectionnés ensemble, cette commande réduit le retrait de tous ces paragraphes.</caseinline><caseinline select=\"CALC\">Le contenu des cellules est aligné selon la valeur indiquée sous <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cellule - Alignement\"><emph>Format - Cellule - Alignement</emph></link>.</caseinline></switchinline>"
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icône</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr "<bookmark_value>Paragraphes;augmenter les retraits de</bookmark_value><bookmark_value>Augmenter le retrait de paragraphe</bookmark_value>"
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Augmenter le retrait\">Augmenter le retrait</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11131,14 +11131,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Si plusieurs paragraphes sont sélectionnés, le retrait de chacun de ces paragraphes est augmenté.</caseinline><caseinline select=\"CALC\">Le contenu des cellules est aligné selon la valeur indiquée dans l'onglet <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cellule - Alignement\"><emph>Format - Cellule - Alignement</emph></link>.</caseinline></switchinline>"
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icône</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/fr/helpcontent2/source/text/shared/guide.po b/source/fr/helpcontent2/source/text/shared/guide.po
index 8ff770f0447..f627280e354 100644
--- a/source/fr/helpcontent2/source/text/shared/guide.po
+++ b/source/fr/helpcontent2/source/text/shared/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-09 19:35+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2020-11-21 15:35+0000\n"
+"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/fr/>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1559312645.000000\n"
@@ -7125,7 +7125,7 @@ msgctxt ""
"par_idN105C1\n"
"help.text"
msgid "Data from any <link href=\"text/shared/explorer/database/dabadoc.xhp\">database file</link> can be registered to the installed instance of %PRODUCTNAME. To register means to tell %PRODUCTNAME where the data is located, how it is organized, how to get that data, and more. Once the database is registered, you can use the menu command <emph>View - Data source</emph> to access the data records from your text documents and spreadsheets."
-msgstr "Les données de tout<link href=\"text/shared/explorer/database/dabadoc.xhp\">fichier de base de données</link> peuvent être enregistrées dans l'instance installée de %PRODUCTNAME. Enregistrer signifie dire à% PRODUCTNAME où se trouvent les données, comment elles sont organisées, comment obtenir ces données, et plus encore. Une fois la base de données enregistrée, vous pouvez utiliser la commande de menu <emph>Affichage - Source de données</emph> pour accéder aux enregistrements de données de vos documents texte et feuilles de calcul."
+msgstr "Les données de tout <link href=\"text/shared/explorer/database/dabadoc.xhp\">fichier de base de données</link> peuvent être enregistrées dans l'instance installée de %PRODUCTNAME. Enregistrer signifie dire à %PRODUCTNAME où se trouvent les données, comment elles sont organisées, comment obtenir ces données, et plus encore. Une fois la base de données enregistrée, vous pouvez utiliser la commande de menu <emph>Affichage - Source de données</emph> pour accéder aux enregistrements de données de vos documents texte et feuilles de calcul."
#. ADK4M
#: data_register.xhp
@@ -7881,7 +7881,7 @@ msgctxt ""
"par_id3154760\n"
"help.text"
msgid "Each field can only accept data corresponding to the specified field type. For example, it is not possible to enter text in a number field. Memo fields in dBASE III format are references to internally-managed text files which can hold up to 64 kB text."
-msgstr ""
+msgstr "Chaque champ n'accepte que les données correspondant au type de données spécifié. Vous ne pouvez pas, par exemple, saisir du texte dans un champ numérique. Les champs de mémo au format dBase III sont des références aux fichiers texte gérés en interne qui peuvent contenir une quantité de texte pouvant atteindre jusqu'à une valeur maximale de 64 Ko."
#. oApsQ
#: data_tabledefine.xhp
@@ -8304,7 +8304,7 @@ msgctxt ""
"par_id3154909\n"
"help.text"
msgid "<link href=\"text/sdatabase/04030000.xhp\" name=\"Create new form document\">Create new form document</link>, <link href=\"text/shared/02/01170000.xhp\" name=\"edit form functions\">edit form controls</link>, <link href=\"text/shared/autopi/01090000.xhp\">Form Wizard</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/04030000.xhp\" name=\"Create new form document\">Créer un nouveau formulaire</link>, <link href=\"text/shared/02/01170000.xhp\" name=\"edit form functions\">éditer des contrôles de formulaier</link>, <link href=\"text/shared/autopi/01090000.xhp\">Assistant de formulaire</link>"
#. sD4GB
#: database_main.xhp
@@ -10554,7 +10554,7 @@ msgctxt ""
"hd_id3153561\n"
"help.text"
msgid "To make a button visible on a toolbar"
-msgstr ""
+msgstr "Pour rendre visible un bouton dans une barre d'outils"
#. c3Nvo
#: edit_symbolbar.xhp
@@ -10563,7 +10563,7 @@ msgctxt ""
"par_id3159157\n"
"help.text"
msgid "Open the context menu of the toolbar (right click) and choose <menuitem>Visible Buttons</menuitem> and then select the button you want to display."
-msgstr ""
+msgstr "Ouvrez le menu contextuel de la barre d'outils (par un clic avec le bouton droit) et choisissez <menuitem>Boutons visibles</menuitem> puis sélectionnez le bouton à afficher."
#. AdQVC
#: edit_symbolbar.xhp
@@ -10581,7 +10581,7 @@ msgctxt ""
"hd_id3151384\n"
"help.text"
msgid "To add a button to a toolbar"
-msgstr ""
+msgstr "Pour ajouter un bouton à une barre d'outils"
#. NAZNp
#: edit_symbolbar.xhp
@@ -10590,7 +10590,7 @@ msgctxt ""
"par_id3147264\n"
"help.text"
msgid "Choose <menuitem>Tools - Customize</menuitem>, and click on the <emph>Toolbars</emph> tab."
-msgstr ""
+msgstr "Choisissez <menuitem>Outils - Personnaliser</menuitem> et cliquez sur l'onglet <emph>Barres d'outils</emph>."
#. p5667
#: edit_symbolbar.xhp
@@ -10599,7 +10599,7 @@ msgctxt ""
"par_id3154071\n"
"help.text"
msgid "In the <emph>Target</emph> box, select the toolbar you want to change."
-msgstr ""
+msgstr "Dans la zone <emph>Cible</emph>, sélectionnez la barre d'outils à modifier."
#. aABvW
#: edit_symbolbar.xhp
@@ -10608,7 +10608,7 @@ msgctxt ""
"par_id3148797\n"
"help.text"
msgid "Select the command to be added in the <emph>Available Commands</emph> box. (Use the <emph>Category</emph> and/or <emph>Search</emph> boxes to restrict possibilities.)"
-msgstr ""
+msgstr "Sélectionnez la commande à ajouter dans la zone <emph>Commandes disponibles</emph> (utilisez les zone <emph>Catégorie</emph> et/ou <emph>Rechercher</emph> pour restreindre les possibilités)."
#. W6XK5
#: edit_symbolbar.xhp
@@ -10617,7 +10617,7 @@ msgctxt ""
"par_id611603924436655\n"
"help.text"
msgid "Click the <emph>Right Arrow</emph> icon to add the selected command."
-msgstr ""
+msgstr "Cliquez sur l'icône <emph>Flèche droite</emph> pour ajouter la commande sélectionnée."
#. E4p3Y
#: edit_symbolbar.xhp
@@ -10626,7 +10626,7 @@ msgctxt ""
"par_id611603924900693\n"
"help.text"
msgid "The check box in the <emph>Assigned Commands</emph> list controls whether the command is visible on the toolbar."
-msgstr ""
+msgstr "La case à cocher dans la liste <emph>Commandes assignées</emph> contrôle la visibilité de la commande dans la barre d'outils."
#. HcHB7
#: edit_symbolbar.xhp
@@ -10635,7 +10635,7 @@ msgctxt ""
"par_id3152922\n"
"help.text"
msgid "You can rearrange the <emph>Assigned Commands</emph> list by selecting a command name and clicking <emph>Move Up</emph> and <emph>Move Down</emph>."
-msgstr ""
+msgstr "Vous pouvez réorganiser la liste <emph>Commandes assignées</emph> en sélectionnant un nom de commande et en cliquant sur <emph>Déplacer vers le haut</emph> et <emph>Déplacer vers le bas</emph>."
#. VgXfX
#: edit_symbolbar.xhp
@@ -11922,7 +11922,7 @@ msgctxt ""
"par_id951604586347866\n"
"help.text"
msgid "<image src=\"cmd/32/pushbutton.png\" id=\"img_id741604586347866\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id641604586347866\">Push Button Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/32/pushbutton.png\" id=\"img_id741604586347866\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id641604586347866\">Icône Bouton Pousser</alt></image>"
#. 4GWCF
#: formfields.xhp
@@ -11958,7 +11958,7 @@ msgctxt ""
"par_idN107B2\n"
"help.text"
msgid "Right-click the button and choose <menuitem>Control Properties</menuitem>."
-msgstr ""
+msgstr "Faites un clic avec le bouton droit et choisissez <menuitem>Propriétés du contrôle</menuitem>."
#. Atf22
#: formfields.xhp
@@ -12012,7 +12012,7 @@ msgctxt ""
"par_idN10828\n"
"help.text"
msgid "Right-click the button and choose <menuitem>Form Properties</menuitem>."
-msgstr ""
+msgstr "Faites un clic avec le bouton droit et choisissez <menuitem>Propriétés du formulaire</menuitem>."
#. kGATC
#: formfields.xhp
@@ -20328,7 +20328,7 @@ msgctxt ""
"par_id791562795799809\n"
"help.text"
msgid "The current document is exported to a drawing document edited in %PRODUCTNAME Draw. The redacted text or contents is removed from the drawing document and replaced by the redaction block of pixels, preventing any attempt to restore or copy the original contents. The redacted drawing document is often exported to PDF for publication or sharing."
-msgstr "Le document actuel est exporté vers un document de dessin modifié dans% PRODUCTNAME Draw. Le texte ou le contenu expurgé est supprimé du document de dessin et remplacé par le bloc de pixel de caviardage, empêchant toute tentative de restauration ou de copie du contenu d'origine. Le document de dessin expurgé est souvent exporté au format PDF pour publication ou partage."
+msgstr "Le document actif est exporté vers un document de dessin modifié dans %PRODUCTNAME Draw. Le texte ou le contenu expurgé est supprimé du document de dessin et remplacé par le bloc de pixel de caviardage, empêchant toute tentative de restauration ou de copie du contenu d'origine. Le document de dessin expurgé est souvent exporté au format PDF pour publication ou partage."
#. 7a2gY
#: redaction.xhp
diff --git a/source/fr/helpcontent2/source/text/shared/optionen.po b/source/fr/helpcontent2/source/text/shared/optionen.po
index 3d3c14ec813..20ece1bedd6 100644
--- a/source/fr/helpcontent2/source/text/shared/optionen.po
+++ b/source/fr/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-09-18 18:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-21 15:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/fr/>\n"
"Language: fr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1559572506.000000\n"
@@ -5802,7 +5802,7 @@ msgctxt ""
"par_id3149418\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/optformataidspage/hiddenparafield\">Display paragraphs that contain a <emph>Hidden Paragraph</emph> field.</ahelp> This option has the same function as the menu command <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/03140000.xhp\" name=\"View - Hidden Paragraphs\"><menuitem>View - Field Hidden Paragraphs</menuitem></link></caseinline><defaultinline>View - Hidden Paragraphs</defaultinline></switchinline>."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/optformataidspage/hiddenparafield\">Afficher les paragraphes qui contiennent un champ <emph>Paragraphe masqué</emph>.</ahelp> Cette option a la même fonction que la commande de menu <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/03140000.xhp\" name=\"View - Hidden Paragraphs\"><menuitem>Affichage - Champ de paragraphes masqués</menuitem></link></caseinline><defaultinline>Affichage - Paragraphes masqués</defaultinline></switchinline>."
#. 5TDVz
#: 01040200.xhp
@@ -6126,7 +6126,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Print (Options)"
-msgstr ""
+msgstr "Impression (options)"
#. xqTJ6
#: 01040400.xhp
@@ -6162,7 +6162,7 @@ msgctxt ""
"par_id3153542\n"
"help.text"
msgid "The print settings defined on this tab page apply to all subsequent print jobs, until you change the settings again. If you want to change the settings for the current print job only, use the <menuitem>File - Print</menuitem> dialog."
-msgstr ""
+msgstr "Les paramètres d'impression définis sur cet onglet s'appliquent à toutes les tâches d'impression ultérieures, jusqu'à ce que vous changiez de nouveau les paramètres. Si vous souhaitez modifier les paramètres uniquement pour la tâche d'impression active, utilisez la boîte de dialogue <menuitem>Fichier - Imprimer</menuitem>."
#. kHkS3
#: 01040400.xhp
@@ -6189,7 +6189,7 @@ msgctxt ""
"hd_id3156156\n"
"help.text"
msgid "Images and objects"
-msgstr ""
+msgstr "Images et objets"
#. kgtQG
#: 01040400.xhp
@@ -6243,7 +6243,7 @@ msgctxt ""
"hd_id3150868\n"
"help.text"
msgid "Print text in black"
-msgstr ""
+msgstr "Imprimer le texte en noir"
#. txERh
#: 01040400.xhp
@@ -6396,7 +6396,7 @@ msgctxt ""
"par_id251602857011343\n"
"help.text"
msgid "This control appears only if <emph>Complex text layout</emph> is set in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - Language Settings - Languages</menuitem>."
-msgstr ""
+msgstr "Cette fonction n'est disponible que si la<emph> prise en charge des scripts complexes</emph> est activée dans <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Préférences</menuitem></caseinline><defaultinline><menuitem>Outils - Options</menuitem></defaultinline></switchinline><menuitem> - Paramètres linguistiques - Langues</menuitem>."
#. ap5FC
#: 01040400.xhp
@@ -9150,7 +9150,7 @@ msgctxt ""
"par_id3151114\n"
"help.text"
msgid "<ahelp hid=\".\">Click a color. Click the <emph>None</emph> button to remove a background color.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Cliquez sur une couleur. Cliquez sur le bouton <emph>Aucune</emph> pour supprimer la couleur d'arrière-plan.</ahelp>"
#. YvDPU
#: 01060000.xhp
@@ -10689,7 +10689,7 @@ msgctxt ""
"par_id3155093\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulawildcards\">Specifies that wildcards are enabled when searching and also for character string comparisons.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> This relates to the <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">database functions</link>, and to LOOKUP, VLOOKUP, HLOOKUP, MATCH, AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, SUMIF, SUMIFS and SEARCH.</caseinline></switchinline>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulawildcards\">Indique que les caractères génériques sont permis lors de la recherche et également pour la comparaison de chaînes de caractères.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> Ceci est relatif aux <link href=\"text/scalc/01/04060101.xhp\" name=\"fonctions de base de données\">fonctions de base de données</link> et à RECHERCHEV, RECHERCHEH, EQUIV, MOYENNE.SI.ENS, NB.SI.ENS, SOMME.SI, SOMME.SI.ENS et CHERCHE.</caseinline></switchinline>"
#. aP5eL
#: 01060500.xhp
@@ -11861,32 +11861,32 @@ msgctxt ""
msgid "Snap"
msgstr "Capturer"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "Aux lignes de capture"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
-msgstr "<variable id=\"anlinie\"><ahelp hid=\".\">>Dès que vous relâchez le bouton de la souris, le bord d'un objet déplacé par glissement est capturé à la ligne de capture la plus proche.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
+msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "Vous pouvez également définir ce paramètre en utilisant l'icône <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Aligner aux lignes de capture\"><emph>Aligner aux lignes de capture</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Aligner aux lignes de capture\"><emph>Aligner aux lignes de capture</emph></link></caseinline><defaultinline><emph>Aligner aux lignes de capture</emph></defaultinline></switchinline> disponible dans la barre <emph>Options</emph> d'une présentation ou d'un dessin."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr ""
#. eUCCJ
#: 01070300.xhp
diff --git a/source/fr/helpcontent2/source/text/simpress/02.po b/source/fr/helpcontent2/source/text/simpress/02.po
index 6b188bea038..bfab9d34f0c 100644
--- a/source/fr/helpcontent2/source/text/simpress/02.po
+++ b/source/fr/helpcontent2/source/text/simpress/02.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
-"PO-Revision-Date: 2020-03-26 21:16+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-21 15:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress02/fr/>\n"
"Language: fr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1559911464.000000\n"
#. AiACn
@@ -5695,41 +5695,41 @@ msgctxt ""
msgid "Exit all groups"
msgstr "Quitter tous les groupements"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Capturer aux lignes de capture"
+msgid "Snap to Snap Guides"
+msgstr "Capturer aux guides de capture"
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Capturer aux lignes de captures\">Capturer aux lignes de capture</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Capturer au guides de capture</link>"
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icône</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icône</alt></image>"
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Capturer aux lignes de capture"
+msgid "Snap to Snap Guides"
+msgstr "Capturer aux guides de capture"
#. oXWsX
#: 13150000.xhp
diff --git a/source/fr/helpcontent2/source/text/swriter.po b/source/fr/helpcontent2/source/text/swriter.po
index df2530722de..e14c46b0654 100644
--- a/source/fr/helpcontent2/source/text/swriter.po
+++ b/source/fr/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-30 22:38+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/fr/>\n"
@@ -2213,14 +2213,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "De gauche à droite"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">icône de gauche à droite</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2240,14 +2240,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "De droite à gauche"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">icône de droite à gauche</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/fr/helpcontent2/source/text/swriter/01.po b/source/fr/helpcontent2/source/text/swriter/01.po
index 2149935a96d..dceb3df7790 100644
--- a/source/fr/helpcontent2/source/text/swriter/01.po
+++ b/source/fr/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-02 22:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/fr/>\n"
@@ -683,13 +683,13 @@ msgctxt ""
msgid "Navigator"
msgstr "Navigateur"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -710,13 +710,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -764,13 +764,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -800,13 +800,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -908,13 +908,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -926,13 +926,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -944,13 +944,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30104,6 +30104,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Ouvre la boîte de dialogue <emph>Destinataires du mailing</emph>.</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/swriter/guide.po b/source/fr/helpcontent2/source/text/swriter/guide.po
index 41bbf640ed0..b6117e70fae 100644
--- a/source/fr/helpcontent2/source/text/swriter/guide.po
+++ b/source/fr/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-09-17 17:44+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/fr/>\n"
@@ -7793,50 +7793,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Retraits de paragraphes</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr "Pour modifier les unités de mesure, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Préférences</item></caseinline><defaultinline><item type=\"menuitem\">Outils - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Général</item> et sélectionnez une nouvelle unité de mesure dans la zone Paramètres."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "Vous pouvez modifier les retraits pour le paragraphe actif, ou pour tous les paragraphes sélectionnés ou encore pour un style de paragraphe."
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "Vous pouvez modifier les retraits pour le paragraphe actif, ou pour tous les paragraphes sélectionnés ou encore pour un style de paragraphe."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "Sélectionnez <item type=\"menuitem\">Format - Paragraphe - Retraits & espacement</item> pour modifier les retraits du paragraphe actif ou pour tous les paragraphes sélectionnés. Vous pouvez également <link href=\"text/swriter/guide/ruler.xhp\" name=\"règle\">régler le retrait en utilisant la règle</link>."
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "Vous pouvez également <link href=\"text/swriter/guide/ruler.xhp\" name=\"règle\">paramétrer les retraits en utilisant la règle</link>. Pour afficher la règle, sélectionnez <item type=\"menuitem\">Affichage - Règle</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "Sélectionnez <item type=\"menuitem\">Format - Paragraphe - Retraits & espacement</item> pour modifier les retraits du paragraphe actif ou pour tous les paragraphes sélectionnés. Vous pouvez également <link href=\"text/swriter/guide/ruler.xhp\" name=\"règle\">régler le retrait en utilisant la règle</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "Vous pouvez également <link href=\"text/swriter/guide/ruler.xhp\" name=\"règle\">paramétrer les retraits en utilisant la règle</link>. Pour afficher la règle, sélectionnez <item type=\"menuitem\">Affichage - Règle</item>."
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "Cliquez avec le bouton droit sur un paragraphe et choisissez <item type=\"menuitem\">Éditer le style de paragraphe - Retraits et espacement</item> pour modifier le retrait de tous les paragraphes du même style."
+msgid "Positioning indents"
+msgstr ""
#. qUxKq
#: indenting.xhp
@@ -7847,6 +7847,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "Les retraits sont calculés en fonction des marges de gauche et de droite. Si vous souhaitez que le texte s'étende dans la marge, saisissez une valeur négative."
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr "Pour modifier les unités de mesure, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Préférences</item></caseinline><defaultinline><item type=\"menuitem\">Outils - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Général</item> et sélectionnez une nouvelle unité de mesure dans la zone Paramètres."
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7856,6 +7865,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "Les retraits sont différents suivant le sens d'écriture. Par exemple, en ce qui concerne la valeur de retrait <item type=\"menuitem\">Avant le texte</item> pour les langues s'écrivant de gauche à droite. Le bord gauche du paragraphe est en retrait par rapport à la marge de gauche. Pour les langues qui s'écrivent de droite à gauche, le bord droit du paragraphe est en retrait par rapport à la marge de droite."
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7865,6 +7883,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "Pour les retraits négatifs, saisissez une valeur positive pour <item type=\"menuitem\">Avant le texte</item> et une valeur négative pour <item type=\"menuitem\">Première ligne</item>."
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10232,14 +10295,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "Activation et désactivation de la reconnaissance des nombres dans les tableaux"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>Reconnaissance automatique des nombres dans les tableaux texte</bookmark_value><bookmark_value>Tableaux;reconnaissance des nombres</bookmark_value><bookmark_value>Date;formatage automatique dans les tableaux</bookmark_value><bookmark_value>Reconnaissance;nombres</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10268,14 +10331,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Effectuez l'une des opérations suivantes :"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "Faites un clic avec le bouton droit dans une cellule du tableau et choisissez <item type=\"menuitem\">Reconnaissance des nombres</item>. Lorsque cette fonction est activée, une marque est affichée en face de la commande <item type=\"menuitem\">Reconnaissance des nombres</item>."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10286,6 +10358,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr "Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Préférences</caseinline><defaultinline>Outils - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Tableau</item>, et cochez ou décochez la case <item type=\"menuitem\">Reconnaissance des nombres</item>."
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12212,6 +12293,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "Lorsque vous créez un document que vous souhaitez imprimer sous forme de brochure, définissez l'orientation des pages sur portrait. Writer applique la mise en page brochure lors de l'impression du document."
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12257,50 +12356,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "Comme les brochures sont toujours imprimées en mode paysage, si votre imprimante fonctionne en mode recto/verso, sélectionnez le paramètre \"Recto/Verso - Bord court\" dans la boîte de dialogue de configuration de votre imprimante."
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
-msgstr "Retournez à la boîte de dialogue <emph>Imprimer</emph> et cliquez sur l'onglet <emph>Mise en page</emph>."
+msgid "Return to <emph>Print</emph> dialog."
+msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
-msgstr "Sélectionnez <emph>Brochure</emph>"
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
+msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "Pour une imprimante qui imprime automatiquement les pages en recto verso, spécifiez d'inclure \"Toutes les pages\"."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Cliquez sur <emph>OK</emph>."
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "Si %PRODUCTNAME n'imprime pas les pages dans l'ordre correct, ouvrez l'onglet <emph>Options</emph>, sélectionnez <emph>Imprimer les pages dans l'ordre inverse</emph> et imprimez à nouveau le document."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12374,6 +12473,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr "<link href=\"text/swriter/01/01120000.xhp\" name=\"Fichier - Aperçu\">Fichier - Aperçu</link>."
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12401,32 +12725,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Impression de plusieurs pages sur une feuille\">Impression de plusieurs pages sur une feuille</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
-msgstr "Sur l'onglet <emph>Mise en page</emph> de la boîte de dialogue <item type=\"menuitem\">Fichier - Imprimer</item>, vous avez le choix d'imprimer plusieurs pages sur une feuille."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
+msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
-msgstr "Choisissez <emph>Fichier - Imprimer</emph> et cliquez sur l'onglet <emph>Mise en page</emph>."
+msgid "Choose <menuitem>File - Print</menuitem>"
+msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Effectuez l'une des opérations suivantes :"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13391,13 +13715,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/fr/helpcontent2/source/text/swriter/librelogo.po b/source/fr/helpcontent2/source/text/swriter/librelogo.po
index 4620155d09f..fc9f4aa2a5d 100644
--- a/source/fr/helpcontent2/source/text/swriter/librelogo.po
+++ b/source/fr/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: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-05-27 09:52+0000\n"
+"PO-Revision-Date: 2020-11-20 14:49+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterlibrelogo/fr/>\n"
"Language: fr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1496519871.000000\n"
@@ -222,7 +222,7 @@ msgctxt ""
"hd_413\n"
"help.text"
msgid "Graphical user interface of basic turtle settings"
-msgstr "Interface utilisateur graphique des paramètres de bases tortue"
+msgstr "Interface utilisateur graphique des paramètres de base tortue"
#. YPKYU
#: LibreLogo.xhp
@@ -231,7 +231,7 @@ msgctxt ""
"par_415\n"
"help.text"
msgid "Turtle shape of LibreLogo is a normal fixed size drawing object. You can positionate and rotate it on standard way, too, using the mouse and the Rotate icon of the Drawing Object Properties toolbar. Modify Line Width, Line Color and Area Color settings of the turtle shape to set PENSIZE, PENCOLOR and FILLCOLOR attributes of LibreLogo."
-msgstr "La forme de tortue de LibreLogo est un objet de dessin de taille normale fixe. Vous pouvez la positionner et la pivoter de façon standard également en utilisant la souris ou l'icône Pivoter dans la barre d'outils des propriétés de l'objet. Modifiez les paramètres de largeur de ligne, de couleur de ligne et de couleur de remplissage de la forme de la tortue pour définir les attributs TAILLECRAYON, COULEURCRAYON et PEINSCOULEUR de LibreLogo."
+msgstr "La forme de la tortue de LibreLogo est un objet de dessin de taille normale fixe. Vous pouvez la positionner et la pivoter de façon standard également en utilisant la souris ou l'icône Pivoter dans la barre d'outils des propriétés de l'objet. Modifiez les paramètres de largeur de ligne, de couleur de ligne et de couleur de remplissage de la forme de la tortue pour définir les attributs LARGEURCRAYON, COULEURCRAYON et PEINSCOULEUR de LibreLogo."
#. fqYbT
#: LibreLogo.xhp
@@ -312,7 +312,7 @@ msgctxt ""
"par_500\n"
"help.text"
msgid "Program blocks need space or new line at parenthesization: REPEAT 10 [ FORWARD 10 LEFT 36 ]"
-msgstr "Les blocs de programme on besoin d'un espace ou d'une nouvelle ligne entre les parenthèses : REPETE 10 [ AVANCE 10 GAUCHE 36 ]"
+msgstr "Les blocs de programme ont besoin d'un espace ou d'une nouvelle ligne entre les parenthèses : REPETE 10 [ AVANCE 10 GAUCHE 36 ]"
#. hpwPD
#: LibreLogo.xhp
@@ -348,7 +348,7 @@ msgctxt ""
"par_540\n"
"help.text"
msgid "The colon is optional before the variable names."
-msgstr "Les deux points sont facultatifs avant les noms de variables."
+msgstr "Les deux points avant les noms de variables sont facultatifs."
#. nLnGZ
#: LibreLogo.xhp
@@ -357,7 +357,7 @@ msgctxt ""
"par_550\n"
"help.text"
msgid "TO triangle size<br/> REPEAT 3 [ FORWARD size LEFT 120 ]<br/> END<br/>"
-msgstr "A triangle size<br/> REPETE 3 [ AVANCE taille GAUCHE 120 ]<br/> FIN<br/>"
+msgstr "A taille triangle <br/> REPETE 3 [ AVANCE taille GAUCHE 120 ]<br/> FIN<br/>"
#. 3oXdM
#: LibreLogo.xhp
@@ -627,7 +627,7 @@ msgctxt ""
"par_850\n"
"help.text"
msgid "FORWARD 10 ; move forward 10pt (1pt = 1/72 inch)<br/> FORWARD 10pt ; see above<br/> FORWARD 0.5in ; move forward 0.5 inch (1 inch = 2.54 cm)<br/> FORWARD 1\" ; see above<br/> FD 1mm<br/> FD 1cm<br/>"
-msgstr "AVANCE 10 ; déplacer en avant de 10pt (1pt = 1/72 inch)<br/> AVANCE 10pt ; voir ci-dessus<br/> AVANCE 0.5in ; déplacer en avant de 0.5 inch (1 inch = 2.54 cm)<br/> AVANCE 1\" ; voir ci-dessus<br/> FD 1mm<br/> FD 1cm<br/>"
+msgstr "AVANCE 10 ; déplacer en avant de 10pt (1pt = 1/72 inch)<br/> AVANCE 10pt ; voir ci-dessus<br/> AVANCE 0.5in ; déplacer en avant de 0.5 inch (1 inch = 2.54 cm)<br/> AVANCE 1\" ; voir ci-dessus<br/> AV 1mm<br/> AV 1cm<br/>"
#. Th6Me
#: LibreLogo.xhp
@@ -906,7 +906,7 @@ msgctxt ""
"hd_1120\n"
"help.text"
msgid "PENSIZE (ps)"
-msgstr "TAILLECRAYON (ps)"
+msgstr "LARGEURCRAYON (lac)"
#. oFoEH
#: LibreLogo.xhp
@@ -915,7 +915,7 @@ msgctxt ""
"par_1130\n"
"help.text"
msgid "PENSIZE 100 ; line width is 100 points<br/> PENSIZE ANY ; equivalent of PENSIZE RANDOM 10<br/>"
-msgstr "TAILLECRAYON 100 ; la largeur de la ligne est de 100 points<br/> TAILLECRAYON TOUT ; équivalent à TAILLECRAYON ALEATOIRE 10<br/>"
+msgstr "LARGEURCRAYON 100 ; la largeur de la ligne est de 100 points<br/> LARGEURCRAYON TOUT ; équivalent à LARGEURCRAYON ALEATOIRE 10<br/>"
#. vD65H
#: LibreLogo.xhp
@@ -1032,7 +1032,7 @@ msgctxt ""
"par_1220\n"
"help.text"
msgid "FILLCOLOR “blue” ; fill with blue color, see also PENCOLOR<br/> FILLCOLOR “invisible” CIRCLE 10 ; unfilled circle<br/> FILLCOLOR [“blue”, “red”] ; gradient between red and blue<br/> FILLCOLOR [[255, 255, 255], [255, 128, 0]] ; between white and orange<br/> FILLCOLOR [“blue”, “red”, 1, 0, 0] ; set axial gradient (with the required rotation and border settings), possible values: 0-5 = linear, axial, radial, elliptical, square and rectangle gradients<br/> FILLCOLOR [“red”, “blue”, 0, 90, 20] ; linear with 20% border, rotated with 90 degrees from the actual heading of the turtle<br/> FILLCOLOR [“red”, “blue”, 0, 90, 20, 0, 0, 200, 50] ; from 200% to 50% intensity<br/> FILLCOLOR [ANY, ANY, 2, 0, 0, 50, 50] ; radial gradient with random colors and 50-50% horizontal and vertical positions of the center<br/>"
-msgstr "PEINSCOULEUR \"bleu\" ; remplit avec la couleur bleu, voir également COULEURCRAYON<br/> PEINSCOULEUR \"invisible \" CERCLE 10 ; cercle non rempli<br/> PEINSCOULEUR [“bleu”, “rouge”] ; dégradé entre rouge et bleu<br/> PEINSCOULEUR [[255, 255, 255], [255, 128, 0]] ; entre blanc et orange<br/> PEINSCOULEUR [“bleu”, “rouge”, 1, 0, 0] ; définit l'axe du dégradé (avec la bonne rotation et la définition des bordures), valeurs possibles : 0-5 = dégradé linéaire, axial, radial, elliptique, carré ou rectangulaire<br/> PEINSCOULEUR [“rouge”, “bleu”, 0, 90, 20] ; linéaire avec une bordure de 20%, rotation de 90 degrés à partir du titre actuel de la tortue<br/> PEINSCOULEUR [“rouge”, 'bleu”, 0, 90, 20, 0, 0, 200, 50] ; intensité de 200% à 50%<br/> PEINCOULEUR [TOUT, TOUT, 2, 0, 0, 50, 50] ; dégradé radial avec des couleurs aléatoires et 50-50% positions horizontale et verticale du centre<br/>"
+msgstr "PEINSCOULEUR \"bleu\" ; remplit avec la couleur bleu, voir également COULEURCRAYON<br/> PEINSCOULEUR \"invisible \" CERCLE 10 ; cercle non rempli<br/> PEINSCOULEUR [“bleu”, “rouge”] ; dégradé entre rouge et bleu<br/> PEINSCOULEUR [[255, 255, 255], [255, 128, 0]] ; entre blanc et orange<br/> PEINSCOULEUR [“bleu”, “rouge”, 1, 0, 0] ; définit l'axe du dégradé (avec la bonne rotation et la définition des bordures), valeurs possibles : 0-5 = dégradé linéaire, axial, radial, elliptique, carré ou rectangulaire<br/> PEINSCOULEUR [“rouge”, “bleu”, 0, 90, 20] ; linéaire avec une bordure de 20%, rotation de 90 degrés à partir de l'orientation actuelle de la tortue<br/> PEINSCOULEUR [“rouge”, 'bleu”, 0, 90, 20, 0, 0, 200, 50] ; intensité de 200% à 50%<br/> PEINCOULEUR [TOUT, TOUT, 2, 0, 0, 50, 50] ; dégradé radial avec des couleurs aléatoires et 50-50% positions horizontale et verticale du centre<br/>"
#. vhN7n
#: LibreLogo.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"par_1226\n"
"help.text"
msgid "FILLTRANSPARENCY 80 ; set the transparency of the actual fill color to 80%<br/> FILLTRANSPARENCY [80] ; set linear transparency gradient from 80% to 0%<br/> FILLTRANSPARENCY [80, 20] ; set linear transparency gradient from 80% to 20%<br/> FILLTRANSPARENCY [80, 20, 1, 90] ; set axial transparency gradient rotated with 90 degrees from the actual heading of the turtle<br/> FILLTRANSPARENCY [80, 20, 2, 0, 20, 50, 50] ; set radial transparency gradient from outer 80% to inner 20% transparency with 20% border and with 50-50% horizontal and vertical positions of the center<br/>"
-msgstr "PEINSTRANSPARENCE 80 ; définit la transparence de la couleur de remplissage actuelle sur 80%<br/> PEINSTRANSPARENCE [80] ; définit le dégradé de transparence linéaire de 80% à 0%<br/> PEINSTRANSPARENCE [80, 20] ; définit le dégradé de transparence linéaire de 80% à 20%<br/> PEINSTRANSPARENCE [80, 20, 1, 90] ; définit le dégradé de transparence axial pivoté à 90 degrés à partir du titre actuel de la tortue<br/> PEINSTRANSPARENCE [80, 20, 2, 0, 20, 50, 50] ; définit le dégradé de transparence radial de l'extérieur de 80% vers l'intérieur de 20% de transparence avec une bordure de 20% et avec 50-50% positions horizontale et verticale du centre<br/>"
+msgstr "PEINSTRANSPARENCE 80 ; définit la transparence de la couleur de remplissage actuelle sur 80%<br/> PEINSTRANSPARENCE [80] ; définit le dégradé de transparence linéaire de 80% à 0%<br/> PEINSTRANSPARENCE [80, 20] ; définit le dégradé de transparence linéaire de 80% à 20%<br/> PEINSTRANSPARENCE [80, 20, 1, 90] ; définit le dégradé de transparence axial pivoté à 90 degrés à partir de l'orientation actuelle de la tortue<br/> PEINSTRANSPARENCE [80, 20, 2, 0, 20, 50, 50] ; définit le dégradé de transparence radial de l'extérieur de 80% vers l'intérieur de 20% de transparence avec une bordure de 20% et avec 50-50% positions horizontale et verticale du centre<br/>"
#. 9dQuv
#: LibreLogo.xhp
@@ -1239,7 +1239,7 @@ msgctxt ""
"hd_1410\n"
"help.text"
msgid "FONTCOLOR/FONTCOLOUR"
-msgstr "COULEURPOLICE/COULEURPOLICE"
+msgstr "COULEURPOLICE"
#. ZZjQ6
#: LibreLogo.xhp
@@ -1401,7 +1401,7 @@ msgctxt ""
"par_1580\n"
"help.text"
msgid "See also “Group” in LibreOffice Writer Help."
-msgstr "Voir également \"Groupe\" dans l'aide LibreOffice Writer"
+msgstr "Voir également \"Grouper\" dans l'aide LibreOffice Writer"
#. zjatC
#: LibreLogo.xhp
@@ -1455,7 +1455,7 @@ msgctxt ""
"hd_1618\n"
"help.text"
msgid "Saving SVG/SMIL animations (drawings with SLEEP commands)"
-msgstr "Enregistrement des animations SVG/SMIL (dessins avec la commande DORT)"
+msgstr "Enregistrement des animations SVG/SMIL (dessins avec la commande DORS)"
#. PKuBy
#: LibreLogo.xhp
@@ -1464,7 +1464,7 @@ msgctxt ""
"par_1619\n"
"help.text"
msgid "PICTURE “animation.svg” [ CIRCLE 5 SLEEP 1000 CIRCLE 99 ] ; save as an SVG/SMIL animation (see also SLEEP)<br/> PICTURE “animation2.svg” [ CIRCLE 5 SLEEP 1000 CIRCLE 99 SLEEP 2000 ] ; as above, but using SLEEP after the last object will result looping: after 2 seconds the SVG animation restarts in SMIL-conformant browsers"
-msgstr "IMAGE \"animation.svg\" [ CERCLE 5 DORT 1000 CERCLE 99] ; enregistre comme animation SVG/SMIL (voir également DORT)<br/> IMAGE \"animation2.svg\" [CERCLE 5 DORT 1000 CERCLE 99 DORT 2000] ; comme ci-dessus, mais avec l'utilisation de DORT après le dernier objet cela résultera en une boucle : après 2 secondes l'animation SVG redémarre dans les navigateurs compatibles SMIL"
+msgstr "IMAGE \"animation.svg\" [ CERCLE 5 DORS 1000 CERCLE 99] ; enregistre comme animation SVG/SMIL (voir également DORS)<br/> IMAGE \"animation2.svg\" [CERCLE 5 DORS 1000 CERCLE 99 DORS 2000] ; comme ci-dessus, mais avec l'utilisation de DORS après le dernier objet cela résultera en une boucle : après 2 secondes l'animation SVG redémarre dans les navigateurs compatibles SMIL"
#. oY4Fh
#: LibreLogo.xhp
@@ -1788,7 +1788,7 @@ msgctxt ""
"par_1970\n"
"help.text"
msgid "TO randomletter<br/> OUTPUT RANDOM “qwertzuiopasdfghjklyxcvbnm”<br/> END<br/> <br/> PRINT randomletter + randomletter + randomletter ; print 3-letter random character sequence<br/>"
-msgstr "A lettrealéatoire<br/> SORTIE ALEATOIRE “qwertzuiopasdfghjklyxcvbnm”<br/> FIN<br/> <br/> ECRIS randomletter + randomletter + randomletter ; imprime une séquence de caractère aléatoire de trois lettres.<br/>"
+msgstr "A lettrealéatoire<br/> SORTIE ALEATOIRE “qwertzuiopasdfghjklyxcvbnm”<br/> FIN<br/> <br/> ECRIS lettrealéatoire + lettrealéatoire + lettrealéatoire ; imprime une séquence de caractère aléatoire de trois lettres.<br/>"
#. eQwMS
#: LibreLogo.xhp
@@ -1842,7 +1842,7 @@ msgctxt ""
"par_2030\n"
"help.text"
msgid "Default random value of colors, etc."
-msgstr "Valeur aléatoire par défaut des couleurs, et."
+msgstr "Valeur aléatoire par défaut des couleurs, etc."
#. vmg8Q
#: LibreLogo.xhp
@@ -1851,7 +1851,7 @@ msgctxt ""
"par_2040\n"
"help.text"
msgid "PENCOLOR ANY ; random pen color<br/>"
-msgstr "COULEURCRAYON TOUT ; couleur de stylo aléatoire<br/>"
+msgstr "COULEURCRAYON TOUT ; couleur de crayon aléatoire<br/>"
#. kAgtw
#: LibreLogo.xhp
@@ -2031,7 +2031,7 @@ msgctxt ""
"par_2240\n"
"help.text"
msgid "GLOBAL about<br/> about = “LibreLogo”<br/> <br/> TO example<br/> PRINT about<br/> GLOBAL about ; when we want to add a new value<br/> about = “new value for the global variable”<br/> END<br/> <br/> example<br/> PRINT about<br/>"
-msgstr "GLOBAL à propos<br/> à propos = “LibreLogo”<br/> <br/> A example<br/> ECRIS about<br/> GLOBAL à propos ; lorqu'une nouvelle valeur doit être ajoutée<br/> à propos = “nouvelle valeur pour la variable global”<br/> FIN<br/> <br/> exemple<br/> ECRIS à propos<br/>"
+msgstr "GLOBAL à propos<br/> à propos = “LibreLogo”<br/> <br/> A example<br/> ECRIS à propos<br/> GLOBAL à propos ; lorqu'une nouvelle valeur doit être ajoutée<br/> à propos = “nouvelle valeur pour la variable global”<br/> FIN<br/> <br/> exemple<br/> ECRIS à propos<br/>"
#. bnCQa
#: LibreLogo.xhp
@@ -2256,7 +2256,7 @@ msgctxt ""
"par_2470\n"
"help.text"
msgid "; Convert list to Python set<br/> PRINT SET [4, 5, 6, 6] ; print {4, 5, 6}<br/> PRINT SET [4, 5, 6, 6] | SET [4, 1, 9] ; print {1, 4, 5, 6, 9}, union<br/> PRINT SET [4, 5, 6, 6] & SET [4, 1, 9] ; print {4}, intersection<br/> PRINT SET ([4, 5, 6, 6]) - SET [4, 1, 9] ; print {5, 6}, difference<br/> PRINT SET [4, 5, 6, 6] ^ SET [4, 1, 9] ; print {1, 5, 6, 9}, symmetric difference <br/>"
-msgstr "; Convertir la liste en un ensemble Python<br/> ECRIT FIXE [4, 5, 6, 6] ; imprime {4, 5, 6}<br/> ECRIT FIXE [4, 5, 6, 6] | FIXE [4, 1, 9] ; imprime {1, 4, 5, 6, 9}, l'union<br/> ECRIT FIXE [4, 5, 6, 6] & FIXE [4, 1, 9] ; imprime {4}, l'intersection<br/> ECRIT FIXE ([4, 5, 6, 6]) - FIXE [4, 1, 9] ; imprime {5, 6}, la differénce<br/> ECRIT FIXE [4, 5, 6, 6] ^ FIXE [4, 1, 9] ; imprime {1, 5, 6, 9}, la différence symétrique <br/>"
+msgstr "; Convertir la liste en un ensemble Python<br/> ECRIT FIXE [4, 5, 6, 6] ; imprime {4, 5, 6}<br/> ECRIT FIXE [4, 5, 6, 6] | FIXE [4, 1, 9] ; imprime {1, 4, 5, 6, 9}, l'union<br/> ECRIT FIXE [4, 5, 6, 6] & FIXE [4, 1, 9] ; imprime {4}, l'intersection<br/> ECRIT FIXE ([4, 5, 6, 6]) - FIXE [4, 1, 9] ; imprime {5, 6}, la différence<br/> ECRIT FIXE [4, 5, 6, 6] ^ FIXE [4, 1, 9] ; imprime {1, 5, 6, 9}, la différence symétrique <br/>"
#. 3ct8S
#: LibreLogo.xhp
@@ -2274,7 +2274,7 @@ msgctxt ""
"par_2490\n"
"help.text"
msgid "; Python-like list generation<br/> PRINT LIST RANGE 10 ; print [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]<br/> PRINT LIST RANGE 3 10 ; print [3, 4, 5, 6, 7, 8, 9]<br/> PRINT LIST RANGE 3 10 3 ; print [3, 6, 9]<br/> <br/> FOR i IN RANGE 10 50 10 [ ; loop for [10, 20, 30, 40]<br/> FORWARD i<br/> LEFT 90<br/> ]<br/>"
-msgstr ""
+msgstr "; génération de listes comme Python<br/> ECRIS PLAGE 10 ; imprime [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]<br/> ECRIS PLAGE LISTE 3 10 ; imprime [3, 4, 5, 6, 7, 8, 9]<br/> ECRIS PLAGE LISTE 3 10 3 ; imprime [3, 6, 9]<br/> <br/> POUR i EN PLAGE 10 50 10 [ ; boucle pour [10, 20, 30, 40]<br/> AVANCE i<br/> GAUCHE 90<br/> ]<br/>"
#. 2849D
#: LibreLogo.xhp
diff --git a/source/fr/helpcontent2/source/text/swriter/menu.po b/source/fr/helpcontent2/source/text/swriter/menu.po
index c866a8a7aa1..feb591b4db5 100644
--- a/source/fr/helpcontent2/source/text/swriter/menu.po
+++ b/source/fr/helpcontent2/source/text/swriter/menu.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2016-07-19 18:54+0000\n"
-"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2020-11-20 15:02+0000\n"
+"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/textswritermenu/fr/>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1468954442.000000\n"
#. tP5yN
@@ -176,7 +176,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "More Breaks (submenu)"
-msgstr ""
+msgstr "Plus de sauts (sous menu)"
#. smw7v
#: submenu_more_breaks.xhp
@@ -185,7 +185,7 @@ msgctxt ""
"hd_id651601651730204\n"
"help.text"
msgid "<link href=\"text/swriter/menu/submenu_more_breaks.xhp\" name=\"morebreaks\">More Breaks</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/menu/submenu_more_breaks.xhp\" name=\"morebreaks\">Plus de sauts</link>"
#. CLUjA
#: submenu_more_breaks.xhp
@@ -194,7 +194,7 @@ msgctxt ""
"par_id911601651828340\n"
"help.text"
msgid "<ahelp hid=\".\">Submenu with additional row, column, and page breaks</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sous menu avec des sauts de ligne, colonne et page supplémentaires</ahelp>"
#. t534N
#: submenu_more_breaks.xhp
@@ -203,7 +203,7 @@ msgctxt ""
"hd_id41601652439817\n"
"help.text"
msgid "Insert Manual Row Break"
-msgstr ""
+msgstr "Insérer un saut de ligne manuel"
#. AEbaf
#: submenu_more_breaks.xhp
@@ -212,7 +212,7 @@ msgctxt ""
"par_id41601888013000\n"
"help.text"
msgid "<image src=\"cmd/lc_insertlinebreak.svg\" id=\"img_id281601888013000\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id381601888013000\">Manual Row Break Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_insertlinebreak.svg\" id=\"img_id281601888013000\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id381601888013000\">Icône Saut de ligne manuel</alt></image>"
#. QGmjC
#: submenu_more_breaks.xhp
@@ -221,7 +221,7 @@ msgctxt ""
"bm_id651604885957774\n"
"help.text"
msgid "<bookmark_value>text documents; inserting column breaks</bookmark_value><bookmark_value>column breaks; inserting</bookmark_value><bookmark_value>inserting; manual column breaks</bookmark_value><bookmark_value>manual column breaks</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Documents texte;insertion de sauts de colonne</bookmark_value><bookmark_value>Sauts de colonne;insertion</bookmark_value><bookmark_value>Insertion;sauts de colonne manuel</bookmark_value><bookmark_value>Sauts de colonne manuel</bookmark_value>"
#. XBU67
#: submenu_more_breaks.xhp
@@ -230,7 +230,7 @@ msgctxt ""
"hd_id531601652875225\n"
"help.text"
msgid "Insert Manual Column Break"
-msgstr ""
+msgstr "Insérer un saut de colonne manuel"
#. jBj9E
#: submenu_more_breaks.xhp
@@ -239,7 +239,7 @@ msgctxt ""
"par_id121601888786076\n"
"help.text"
msgid "<image src=\"cmd/lc_insertcolumnbreak.svg\" id=\"img_id851601888786076\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id881601888786076\">Manual Column Break Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_insertcolumnbreak.svg\" id=\"img_id851601888786076\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id881601888786076\">Icône Saut de colonne manuel</alt></image>"
#. Mx6DD
#: submenu_more_breaks.xhp
@@ -248,7 +248,7 @@ msgctxt ""
"hd_id281601654787535\n"
"help.text"
msgid "<link href=\"text/swriter/01/04010000.xhp\" name=\"Manual Break\">Manual Break</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04010000.xhp\" name=\"Manual Break\">Saut manuel</link>"
#. XACTx
#: submenu_more_breaks.xhp
@@ -257,4 +257,4 @@ msgctxt ""
"par_id621601889272427\n"
"help.text"
msgid "<image src=\"cmd/lc_insertbreak.svg\" id=\"img_id461601889272427\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id31601889272427\">Manual Break icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_insertbreak.svg\" id=\"img_id461601889272427\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id31601889272427\">Icône Saut manuel</alt></image>"
diff --git a/source/fr/sc/messages.po b/source/fr/sc/messages.po
index 7b089b39e2a..6f90e7deec5 100644
--- a/source/fr/sc/messages.po
+++ b/source/fr/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-24 16:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/fr/>\n"
@@ -28627,38 +28627,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr "Indique que, lorsque vous collez des cellules à partir du presse-papiers vers une plage de cellules non vide, un message d'avertissement s'affiche."
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Utiliser les mesures de l'imprimante pour le formatage du texte"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "Indique que les mesures de l'imprimante s'appliquent à l'impression, ainsi qu'au formatage de l'affichage à l'écran."
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "_Mettre en évidence la sélection dans les en-têtes de lignes/colonnes"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr "Indique si les en-têtes doivent être mis en évidence dans les colonnes et les lignes sélectionnées."
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Mettre à jour les références lors du tri de plages de cellules"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Paramètres de saisie"
diff --git a/source/fr/sfx2/messages.po b/source/fr/sfx2/messages.po
index 27fcc1d86eb..e927d090d86 100644
--- a/source/fr/sfx2/messages.po
+++ b/source/fr/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-09-17 14:28+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/fr/>\n"
@@ -1654,286 +1654,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Fermer le volet"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Ancrer"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Détacher"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Plus d'options"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Fermer le volet latéral"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Paramètres du volet latéral"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Personnalisation"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Rétablir les valeurs par défaut"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Fermer la barre latérale"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Ruche"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Courbe bleue"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Plans bleus"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Bleu clair"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Rouge chic"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ADN"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Focus"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Oiseau de forêt"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impression"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiration"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lumières"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Verdoyant"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Bleu nuit"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Illustration naturelle"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Crayon"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progression"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Crépuscule"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Millésime"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Vivid"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Résumé"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Par défaut"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderne"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Lettre commerciale moderne sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Lettre commerciale moderne serif"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Carte de visite avec logo"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Simple"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Supprimer"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Tout supprimer"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Longueur du mot de passe"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Le mot de passe saisi provoque un problème d'interopérabilité. Veuillez saisir un mot de passe qui est plus court que 52 octets ou plus long que 55 octets."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-clic pour ouvrir l'hyperlien : %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Cliquer pour ouvrir l'hyperlien : %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(utilisé par : %STYLELIST)"
@@ -4164,6 +4128,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Effacer..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/fr/starmath/messages.po b/source/fr/starmath/messages.po
index 47717743531..7c50639088e 100644
--- a/source/fr/starmath/messages.po
+++ b/source/fr/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-06-30 19:04+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/fr/>\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "ou"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Signe +"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Signe -"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Signe +-"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Signe -+"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "NON logique"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Addition +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Soustraction -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Multiplication (point)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Multiplication (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Multiplication (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Division (barre oblique)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Division (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Division (fraction)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Slash cerclé"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Point cerclé"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Signe moins cerclé"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Signe plus cerclé"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Produit tensoriel"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "ET logique"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "OU logique"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Est égal"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Est différent"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Est inférieur à"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Est supérieur à"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Est inférieur ou égal à"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Est supérieur ou égal à"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Est inférieur ou égal à"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Est supérieur ou égal à"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Est très inférieur à"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Est très supérieur à"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Est défini comme"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Est congru à"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Est approximativement égal à"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Est similaire à"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Est similaire ou égal"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Est proportionnel à"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Est perpendiculaire à"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Est parallèle à"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Tend vers"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Correspond à (gauche)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Correspond à (droit)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Est inclus dans"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "N'est pas inclus dans"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Contient"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Union"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Intersection"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Différence"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Sous-ensemble"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Sous-ensemble ou égal à"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Sur-ensemble"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Sur-ensemble ou égal à"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Pas sous-ensemble"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Pas sous-ensemble ou égal"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Pas sur-ensemble"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Pas sur-ensemble ou égal"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Valeur absolue"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Factorielle"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Racine carrée"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "Racine n-ième"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Fonction exponentielle"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Fonction exponentielle"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Logarithme népérien"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logarithme"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sinus"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Cosinus"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangente"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Cotangente"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arc sinus"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arc cosinus"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arc tangente"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arc cotangente"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Sinus hyperbolique"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Cosinus hyperbolique"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Tangente hyperbolique"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Cotangente hyperbolique"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Argument sinus hyperbolique"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Argument cosinus hyperbolique"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Argument tangente hyperbolique"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Argument cotangente hyperbolique"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Somme"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Somme indice en bas"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Somme exposant en haut"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Somme exposant/indice"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Produit"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Produit indice en bas"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Produit exposant en haut"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Produit exposant/indice"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Coproduit"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Coproduit indice en bas"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Coproduit exposant en haut"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Coproduit exposant/indice"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Limites"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Limite indice en bas"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Limite exposant en haut"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Limite exposant/indice"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Limite inférieure"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Limite inférieure avec variable au dessous"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Limite inférieure avec variable au dessus"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Limite inférieure avec variables au dessus et en dessous"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Limite supérieure"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Limite supérieure avec variable au dessous"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Limite supérieure avec variable au dessus"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Limite supérieure avec variables au dessus et en dessous"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Il existe"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Il n'existe pas"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Pour tous"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Intégrale"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Intégrale indice en bas"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Intégrale exposant en haut"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Intégrale exposant/indice"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Double intégrale"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Double intégrale indice en bas"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Double intégrale exposant en haut"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Double intégrale exposant/indice"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Triple intégrale"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Triple intégrale indice en bas"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Triple intégrale exposant en haut"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Triple intégrale exposant/indice"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Intégrale de courbe"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Intégrale de courbe indice en bas"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Intégrale de courbe exposant en haut"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Intégrale de courbe exposant/indice"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Double intégrale de courbe"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Double intégrale de courbe indice en bas"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Double intégrale de courbe exposant en haut"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Double intégrale de courbe exposant/indice"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Triple intégrale de courbe"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Triple intégrale de courbe indice en bas"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Triple intégrale de courbe exposant en haut"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Triple intégrale de courbe exposant/indice"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Accent aigu"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Ligne dessus"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Brève"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Accent circonflexe renversé"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Cercle"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Point"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Double point"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Triple point"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Accent grave"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Accent circonflexe"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tilde"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Flèche vectorielle"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Harpon"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Ligne inférieure"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Ligne au-dessus"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Ligne à travers"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Transparent"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Caractères gras"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Caractère italique"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Modifier la taille"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Modifier la police"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Couleur noire"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Couleur bleue"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Couleur verte"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Couleur rouge"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Couleur grise"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Couleur citron vert"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Couleur marron"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Couleur navy"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Couleur olive"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Couleur violette"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Couleur argent"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Couleur bleu canard"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Couleur jaune"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "Couleur RVB"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Parenthèses de groupement"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Parenthèses arrondies"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Crochets"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Doubles crochets"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Accolades"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Crochets angulaires"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Plafond supérieur"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Plancher"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Lignes simples"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Lignes doubles"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Parenthèses d'opérateur"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Parenthèses arrondies (taille variable)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Crochets (taille variable)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Crochets doubles (taille variable)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Accolades (taille variable)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Crochets angulaires (taille variable)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Plafond (taille variable)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Plancher (taille variable)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Lignes simples (taille variable)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Doubles lignes (taille variable)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Parenthèses d'opérateur (taille variable)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Évalué à"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Accolade en haut (taille variable)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Accolade en bas (taille variable)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Indice à droite"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Puissance"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Indice à gauche"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Exposant à gauche"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Indice en bas"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Exposant en haut"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Petit espace"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Vide"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Nouvelle ligne"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Disposition verticale (deux éléments)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Disposition verticale"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Disposition en matrice"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Aligner à gauche"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Aligner au centre"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Aligner à droite"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Aleph"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Ensemble vide"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Partie réelle"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Partie imaginaire"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Infinité"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Partiel"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "P de Weierstrass"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Points au milieu"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Points vers le haut"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Points vers le bas"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Points en bas"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Points à la verticale"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Concaténer"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Division (barre oblique large)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Division (anti barre oblique large)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Divise"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Ne divise pas"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Double flèche vers la gauche"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Double flèche vers la gauche et la droite"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Double flèche vers la droite"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Ensemble des nombres naturels"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Ensemble des nombres entiers"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Ensemble des nombres rationnels"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Ensemble des nombres réels"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Ensemble des nombres complexes"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Accent circonflexe large"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Tilde large"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Flèche vectorielle large"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Grand harpon"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h + trait"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda + trait"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Flèche vers la gauche"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Flèche vers la droite"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Flèche vers le haut"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Flèche vers le bas"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Pas d'espace"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Précède"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Précède ou est égale à"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Précède ou équivaut à"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Succède"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Succède ou est égale à"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Succède ou équivaut à"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Ne précède pas"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Ne succède pas"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Opérateurs unaires/binaires"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Relations"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Opérateurs d'ensemble"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Fonctions"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Opérateurs"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Attributs"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Parenthèses"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formats"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Autres"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Exemples"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Circonférence"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Équivalence masse-énergie"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Théorème de Pythagore"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Distribution de Gauss"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standard"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Italique"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Gras"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "noir"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "bleu"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "vert"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "rouge"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "gris"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "citron"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "marron"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "marine"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olive"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "violet"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "argent"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "bleu canard"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "jaune"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rvb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "masquer"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "taille"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "police"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "gauche"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centre"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "droite"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Commandes"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formule"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Enregistrement du document..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Formule %PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERREUR : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Caractère imprévu"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Paramètre inattendu"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "« { » requis"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "« } » requis"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "« ( » requis"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "« ) » requis"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Symboles gauche et droit incohérents"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "« fixed », « sans » ou « serif » était attendu"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "« size » est suivi par un paramètre inattendu"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "L'alignement redoublé n'est pas autorisé"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Doubles indices/exposants ne sont pas autorisés"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "« # » requis"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Couleur requise"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "« RIGHT » requis"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Contenu"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titre"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Texte de la ~formule"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "B~ordures"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Taille"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Taille d'o~rigine"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Adapter à la ~page"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Échelle"
diff --git a/source/fr/svtools/messages.po b/source/fr/svtools/messages.po
index 0e6b82b77a5..3f0fedd1578 100644
--- a/source/fr/svtools/messages.po
+++ b/source/fr/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-12 18:33+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/fr/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Annuler : "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Refaire : "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Ré~péter : "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Texte non formaté"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Texte non formaté (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Image bitmap (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Métafichier Graphics Device Interface (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich text formatting (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich text formatting (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Format de dessin %PRODUCTNAME"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Bitmap/animation StarView (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Info statut de Svx Internal Link"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Lien %PRODUCTNAME (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Signets Netscape"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Format serveur Star"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Format objet Star"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Objet applet"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Objet plug-in"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objet StarWriter 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objet StarWriter 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objet StarWriter 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objet StarWriter/Web 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objet StarWriter/Web 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Objet StarWriter/Maître 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Objet StarWriter/Maître 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objet StarDraw"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objet StarDraw 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objet StarImpress 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objet StarDraw 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objet StarCalc"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objet StarCalc 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objet StarCalc 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objet StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objet StarChart 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objet StarChart 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objet StarImage"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objet StarImage 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objet StarImage 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objet StarMath"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objet StarMath 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objet StarMath 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objet StarObject Paint"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "HyperText Markup Language simplifié (Simple HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Format binaire d'échange Microsoft Excel 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Format binaire d'échange Microsoft Excel 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (lien DDE)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objet Microsoft Word"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objet StarFrameSet"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Objet document Office"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Info document Notes"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Document sfx"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objet StarChart 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Objet graphique"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Objet Writer OpenOffice.org 1.0"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Objet Writer/Web OpenOffice.org 1.0"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Objet Maître/Writer OpenOffice.org 1.0"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Objet Draw OpenOffice.org 1.0"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Objet Impress OpenOffice.org 1.0"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Objet Calc OpenOffice.org 1.0"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Objet Chart OpenOffice.org 1.0"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Objet Math OpenOffice.org 1.0"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Métafichier Windows"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Objet de source de données"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Table de source de données"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Requête SQL"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Dialogue OpenOffice.org 1.0"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Lien"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Format HTML sans commentaires"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Impossible d'insérer l'objet %."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Impossible d'insérer l'objet à partir du fichier %."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Autres objets"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Source inconnue"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Octets"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "Ko"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "Mo"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "Go"
@@ -501,1234 +501,1234 @@ msgstr "Go"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumérique"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Jeu de caractères"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Dictionnaire"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Trait (stroke)"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Bopomofo"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Annuaire téléphonique"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Phonétique (alphanumérique en premier)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Phonétique (alphanumérique en dernier)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumérique"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Dictionnaire"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Trait (stroke)"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Bopomofo"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Phonétique (alphanumérique en premier, groupement par syllabes)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Phonétique (alphanumérique en premier, groupement par consonnes)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Phonétique (alphanumérique en dernier, groupement par syllabes)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Phonétique (alphanumérique en dernier, groupement par consonnes)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Maigre"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Italique maigre"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normal"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Italique"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Gras"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Italique gras"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Extra-gras"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Italique extra-gras"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Normal"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Gras oblique"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensé"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Condensé gras"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Condensé gras italique"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Condensé gras oblique"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Condensé italique"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Condensé oblique"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Extrafin"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Extrafin italique"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Oblique"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Demi gras"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Demi gras italique"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "La même police est utilisée pour l'impression et l'affichage à l'écran."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Police d'imprimante. L'affichage et l'impression ne seront pas toujours identiques."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Ce style de police sera imité ou le style le plus approprié sera utilisé."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Ce type de police n'a pas été installé. Le type de police le plus approprié va être utilisé."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Déplacer vers l'origine"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Déplacer à gauche"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Déplacer à droite"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Déplacer vers la fin"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Ajouter"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Règle horizontale"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Règle verticale"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Valeur de seuil 1 bit"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Dithering (diffusion) 1 bit"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Niveaux de gris 4 bits"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Couleur 4 bits"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Niveaux de gris 8 bits"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Couleur 8 bits"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Couleurs 24 bits (True color)"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "L'image nécessite environ %1 Ko de mémoire."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "L'image nécessite environ %1 Ko de mémoire, la taille du fichier est de %2 Ko."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "La taille du fichier est de %1 Ko."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "hôte"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Autre CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Disponible"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Arrêté"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Suppression imminente"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Système occupé"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Initialisation"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "En attente"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Préchauffage"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Traitement"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Impression"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Hors ligne"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Erreur"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Serveur inconnu"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Bourrage papier"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Manque de papier"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Alimentation manuelle"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problème d'alimentation de papier"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "E/S active"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Le bac de sortie est plein"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Faible réserve de toner"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Pas de toner"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Suppression de page"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Intervention de l'utilisateur requise"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Mémoire insuffisante"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Capot ouvert"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Mode économie d'énergie"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Imprimante par défaut"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documents"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<aucun>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Société"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Service"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Prénom"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Nom"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Rue"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Pays"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Code Postal"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Ville"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titre"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Fonction"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Appellation"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Initiales"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Formule finale"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tél. domicile"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tél. travail"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Courriel"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Remarque"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Utilisateur 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Utilisateur 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Utilisateur 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Utilisateur 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "État"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tél. bureau"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pager"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Tél. portable"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tél. autre"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendrier"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Invitation"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ de $user$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "La configuration de %PRODUCTNAME a été modifiée. Sous %PRODUCTNAME - Préférences - %PRODUCTNAME - Avancé, sélectionnez l'environnement d'exécution Java que vous voulez que %PRODUCTNAME utilise."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "La configuration de %PRODUCTNAME a été modifiée. Sous Outils - Options - %PRODUCTNAME - Avancé, sélectionnez l'environnement d'exécution Java que vous voulez que %PRODUCTNAME utilise."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME nécessite un environnement d'exécution java (JRE) pour réaliser cette tâche. Le JRE sélectionné est défectueux. Veuillez sélectionner une autre version ou installer un nouveau JRE et le sélectionner sous %PRODUCTNAME - Préférences - %PRODUCTNAME - Avancé."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME nécessite un environnement d'exécution java (JRE) pour réaliser cette tâche. Le JRE sélectionné est défectueux. Veuillez sélectionner une autre version ou installer un nouveau JRE et le sélectionner sous Outils - Options - %PRODUCTNAME - Avancé."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE requis"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Sélection un JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE est défectueux"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Code source"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Fichier de marque-pages"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Images"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Fichier de configuration"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Application"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Table de base de données"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Fichier système"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Document MS Word"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Fichier d'aide"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Document HTML"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Fichier archive"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Fichier journal"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Base de données StarOffice"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Document maître StarWriter 4.0 / 5.0"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Image StarOffice"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Fichier texte"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Lier"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Modèle StarOffice 3.0 - 5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Document MS Excel"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Modèle MS Excel"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Fichier de traitement par lots"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Fichier"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Dossier"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Texte"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Classeur"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Présentation"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Dessin"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Document HTML"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Document maître"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formule"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Base de données"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Modèle de classeur OpenOffice.org 1.0"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Modèle de dessin OpenOffice.org 1.0"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Modèle de présentation OpenOffice.org 1.0"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Modèle de document texte OpenOffice.org 1.0"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unité locale"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Unité de disque"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Unité CD-ROM"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Connexion réseau"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Document MS PowerPoint"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Modèle MS PowerPoint"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Diaporama MS PowerPoint"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Formule OpenOffice.org 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Diagramme OpenOffice.org 1.0"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Dessin OpenOffice.org 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Classeur OpenOffice.org 1.0"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Présentation OpenOffice.org 1.0"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Document texte OpenOffice.org 1.0"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Document maître OpenOffice.org 1.0"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Document MathML"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Base de données OpenDocument"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Dessin OpenDocument"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Formule OpenDocument"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Document maître OpenDocument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Présentation OpenDocument"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Classeur OpenDocument"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Texte OpenDocument"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Modèle de classeur OpenDocument"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Modèle de dessin OpenDocument"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Modèle de présentation OpenDocument"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Modèle de texte OpenDocument"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Extension %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Vérificateur orthographique Hunspell"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Coupeur de mots Libhyphen"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Dictionnaire des synonymes MyThes"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Liste des mots ignorés"
diff --git a/source/fr/svx/messages.po b/source/fr/svx/messages.po
index 2215346f93f..a47ebeb0209 100644
--- a/source/fr/svx/messages.po
+++ b/source/fr/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-12 10:34+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/fr/>\n"
@@ -16333,11 +16333,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Caractères _joker"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_Commentaires"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/fr/sw/messages.po b/source/fr/sw/messages.po
index 6a8c70a53c4..664c1e86b17 100644
--- a/source/fr/sw/messages.po
+++ b/source/fr/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-07 06:35+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/fr/>\n"
@@ -17445,86 +17445,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr "Saisissez le nombre de lignes souhaité dans le tableau."
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Général"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "_En-tête"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr "Inclut une ligne d'en-tête dans le tableau."
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Répéter les lignes d'en-tête sur les nouvelles _pages"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr "Répète l'en-tête du tableau en haut de la page suivante si le tableau s'étend sur plusieurs pages."
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Ne pas _scinder le tableau à travers les pages"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr "Empêche le tableau de s'étendre sur plus d'une page."
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr "Sélectionnez le nombre de lignes à utiliser pour l'en-tête."
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Lignes d'_en-tête :"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Options"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr "Affiche un aperçu de la sélection active."
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr "Sélectionnez un style prédéfini pour le nouveau tableau."
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Styles"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr "Insère un tableau dans le document. Vous pouvez également cliquer sur la flèche, faire glisser le pointeur pour sélectionner le nombre de lignes et de colonnes à inclure dans le tableau, puis cliquer sur la dernière cellule."
@@ -20038,289 +20044,289 @@ msgid "Text"
msgstr "Texte"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Basculer sur la vue document maître"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Bascule entre le mode Masque et le mode Normal, si un document maître est ouvert."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Réduire la navigation à ce type de contenu"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr "Bascule entre l'affichage de toutes les catégories du Navigateur et la catégorie sélectionnée."
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "En-tête"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr "Déplace le curseur dans l'en-tête ou de l'en-tête dans la zone de texte du document."
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Pied de page"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr "Déplace le curseur dans le pied de page ou du pied de page dans la zone de texte du document."
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Ancre <-> texte"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr "Saute du texte de la note de bas de page à l'ancre de la note de bas de page."
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Définir un pense-bête"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Cliquez sur cette icône pour définir un pense-bête à l'endroit où se trouve le curseur. Vous pouvez définir jusqu'à cinq pense-bêtes différents. Pour atteindre un pense-bête particulier, cliquez sur l'icône Navigation, puis cliquez sur l'icône Pense-bête dans la fenêtre Navigation et enfin sur le bouton Suivant ou Précédent."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Niveaux de titres affichés"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr "Cliquez sur cette icône, puis choisissez le nombre niveaux de titre à afficher dans le Navigateur."
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Afficher/masquer la zone de liste"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr "Affiche ou masque la liste du Navigateur."
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Hausser d'un niveau"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Hausse le titre sélectionné, ainsi que les titres sous-jacents, d'un niveau de plan. Pour augmenter uniquement le niveau de plan de l'en-tête sélectionné, maintenez la touche Ctrl enfoncée pendant que vous cliquez sur cette icône."
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Abaisser d'un niveau"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Abaisse le titre sélectionné, ainsi que les titres sous-jacents, d'un niveau de plan. Pour appliquer uniquement le changement de niveau de plan au titre sélectionné, maintenez la touche Ctrl enfoncée pendant que vous cliquez sur cette icône."
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Déplacer d'un chapitre vers le haut"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Place le titre sélectionné, avec le texte associé, à un niveau de plan plus haut dans le Navigateur et dans le document. Pour déplacer uniquement le titre sélectionné, c'est-à-dire sans le texte associé, maintenez la touche Ctrl enfoncée pendant que vous cliquez sur cette icône."
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Déplacer d'un chapitre vers le bas"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Déplace le titre sélectionné, avec le texte associé, à un niveau de plan plus bas dans le Navigateur et dans le document. Pour déplacer uniquement le titre sélectionné, c'est-à-dire sans le texte associé, maintenez la touche Ctrl enfoncée pendant que vous cliquez sur cette icône."
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Mode Glisser"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr "Définit les options de glisser et dépose pour les éléments insérés à partir du Navigateur dans le document, par exemple, comme un hyperlien. Cliquez sur cette icône, puis choisissez l'option que vous souhaitez utiliser."
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Document"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Fenêtre active"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Basculer sur la vue document maître"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Bascule entre le mode Masque et le mode Normal, si un document maître est ouvert."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Éditer"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr "Éditez le contenu du composant sélectionné dans la liste du Navigateur. Si la sélection est un fichier, le fichier est ouvert pour édition. Si la sélection est un index, la boîte de dialogue Index s'ouvre."
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Actualiser"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Cliquez sur le contenu que vous souhaitez actualiser."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Insérer"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Insère un fichier, un index ou un nouveau document dans le document maître."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Enregistrer le contenu"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr "Enregistre une copie du contenu des fichiers liés dans le document maître. De cette façon, le contenu actif reste disponible même si les fichiers liés ne sont plus accessibles."
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Déplacer vers le haut"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr "Déplace la sélection d'une position vers le haut dans la liste du Navigateur."
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Déplacer vers le bas"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr "Déplace la sélection d'une position vers le haut dans la liste du Navigateur."
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Sélection"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Index"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Liens"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Tout"
diff --git a/source/fr/wizards/source/resources.po b/source/fr/wizards/source/resources.po
index 1bcb05f8c05..4c8d6d784ee 100644
--- a/source/fr/wizards/source/resources.po
+++ b/source/fr/wizards/source/resources.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-07-12 18:33+0000\n"
+"PO-Revision-Date: 2020-11-17 20:35+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_ui-master/wizardssourceresources/fr/>\n"
"Language: fr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1558734194.000000\n"
#. 8UKfi
@@ -4289,7 +4289,7 @@ msgctxt ""
"CorrespondenceFields_17\n"
"property.text"
msgid "Email"
-msgstr ""
+msgstr "Courriel"
#. w7uK5
#: resources_en_US.properties
diff --git a/source/fur/sc/messages.po b/source/fur/sc/messages.po
index 0b6aa3a921a..e8d1edd2b63 100644
--- a/source/fur/sc/messages.po
+++ b/source/fur/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28531,38 +28531,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr ""
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr ""
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr ""
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr ""
diff --git a/source/fur/sfx2/messages.po b/source/fur/sfx2/messages.po
index bf61194c0c0..d5e0ca213c8 100644
--- a/source/fur/sfx2/messages.po
+++ b/source/fur/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-10-21 19:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1577,286 +1577,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr ""
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr ""
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr ""
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr ""
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr ""
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr ""
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr ""
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4079,6 +4043,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr ""
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/fur/starmath/messages.po b/source/fur/starmath/messages.po
index 885485b98b9..41f48535127 100644
--- a/source/fur/starmath/messages.po
+++ b/source/fur/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-05-08 13:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr ""
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr ""
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr ""
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr ""
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr ""
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr ""
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr ""
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr ""
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr ""
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr ""
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr ""
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr ""
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr ""
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr ""
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr ""
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr ""
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr ""
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr ""
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr ""
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr ""
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr ""
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr ""
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr ""
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr ""
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr ""
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr ""
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr ""
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr ""
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr ""
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr ""
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr ""
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr ""
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr ""
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr ""
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr ""
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr ""
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr ""
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr ""
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr ""
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr ""
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr ""
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr ""
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr ""
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr ""
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr ""
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr ""
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr ""
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr ""
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr ""
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr ""
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr ""
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr ""
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr ""
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr ""
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr ""
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr ""
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr ""
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr ""
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr ""
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr ""
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr ""
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr ""
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr ""
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr ""
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr ""
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr ""
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr ""
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr ""
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr ""
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr ""
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr ""
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr ""
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr ""
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr ""
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr ""
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr ""
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr ""
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr ""
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr ""
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr ""
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr ""
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr ""
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr ""
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr ""
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr ""
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr ""
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr ""
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr ""
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr ""
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr ""
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr ""
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr ""
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr ""
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr ""
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr ""
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr ""
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr ""
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr ""
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr ""
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr ""
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr ""
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr ""
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr ""
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr ""
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr ""
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr ""
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr ""
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr ""
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr ""
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr ""
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr ""
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr ""
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr ""
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr ""
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr ""
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr ""
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr ""
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr ""
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr ""
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr ""
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr ""
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr ""
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr ""
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr ""
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr ""
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr ""
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr ""
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr ""
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr ""
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr ""
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr ""
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr ""
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr ""
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr ""
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr ""
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr ""
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr ""
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr ""
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr ""
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr ""
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr ""
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr ""
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr ""
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr ""
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr ""
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr ""
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr ""
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr ""
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr ""
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr ""
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr ""
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr ""
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr ""
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr ""
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr ""
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr ""
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr ""
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr ""
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr ""
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr ""
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr ""
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr ""
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr ""
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr ""
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr ""
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr ""
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr ""
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr ""
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr ""
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr ""
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr ""
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr ""
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr ""
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr ""
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr ""
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr ""
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr ""
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr ""
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr ""
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr ""
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr ""
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr ""
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr ""
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr ""
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr ""
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr ""
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr ""
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr ""
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr ""
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr ""
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr ""
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr ""
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr ""
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr ""
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr ""
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr ""
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr ""
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr ""
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr ""
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr ""
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr ""
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr ""
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr ""
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr ""
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr ""
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr ""
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr ""
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr ""
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr ""
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr ""
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr ""
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr ""
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr ""
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr ""
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr ""
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr ""
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr ""
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr ""
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr ""
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr ""
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr ""
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr ""
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr ""
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr ""
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr ""
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr ""
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr ""
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr ""
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr ""
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr ""
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr ""
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr ""
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr ""
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr ""
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr ""
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr ""
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr ""
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr ""
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr ""
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr ""
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr ""
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr ""
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr ""
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr ""
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr ""
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr ""
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr ""
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr ""
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr ""
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr ""
diff --git a/source/fur/svtools/messages.po b/source/fur/svtools/messages.po
index 8e8274ffb81..6dea9ca73aa 100644
--- a/source/fur/svtools/messages.po
+++ b/source/fur/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr ""
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr ""
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr ""
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr ""
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr ""
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr ""
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr ""
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr ""
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr ""
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr ""
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr ""
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr ""
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr ""
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr ""
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr ""
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr ""
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr ""
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr ""
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr ""
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr ""
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr ""
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr ""
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr ""
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr ""
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr ""
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr ""
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr ""
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr ""
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr ""
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr ""
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr ""
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr ""
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr ""
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr ""
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr ""
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr ""
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr ""
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr ""
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr ""
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr ""
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr ""
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr ""
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr ""
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr ""
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr ""
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr ""
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr ""
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr ""
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr ""
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr ""
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr ""
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr ""
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr ""
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr ""
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr ""
@@ -501,1234 +501,1234 @@ msgstr ""
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr ""
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr ""
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr ""
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr ""
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr ""
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr ""
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr ""
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr ""
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr ""
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr ""
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr ""
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr ""
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr ""
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr ""
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr ""
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr ""
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr ""
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr ""
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr ""
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr ""
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr ""
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr ""
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr ""
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr ""
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr ""
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr ""
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr ""
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr ""
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr ""
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr ""
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr ""
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr ""
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr ""
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr ""
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr ""
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr ""
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr ""
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr ""
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr ""
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr ""
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr ""
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr ""
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr ""
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr ""
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr ""
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr ""
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr ""
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr ""
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr ""
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr ""
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr ""
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr ""
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr ""
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr ""
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr ""
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr ""
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr ""
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr ""
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr ""
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr ""
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr ""
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr ""
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr ""
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr ""
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr ""
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr ""
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr ""
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr ""
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr ""
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr ""
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr ""
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr ""
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr ""
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr ""
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr ""
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr ""
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr ""
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr ""
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr ""
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr ""
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr ""
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr ""
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr ""
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr ""
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr ""
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr ""
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr ""
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr ""
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr ""
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr ""
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr ""
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr ""
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr ""
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr ""
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr ""
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr ""
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr ""
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr ""
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr ""
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr ""
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr ""
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr ""
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr ""
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr ""
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr ""
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr ""
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr ""
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr ""
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr ""
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr ""
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr ""
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr ""
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr ""
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr ""
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr ""
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr ""
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr ""
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr ""
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr ""
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr ""
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr ""
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr ""
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr ""
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr ""
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr ""
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr ""
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr ""
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr ""
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr ""
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr ""
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr ""
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr ""
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr ""
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr ""
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr ""
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr ""
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr ""
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/fur/svx/messages.po b/source/fur/svx/messages.po
index 04c175dbcdc..cf88babfca9 100644
--- a/source/fur/svx/messages.po
+++ b/source/fur/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-11-13 13:09+0000\n"
"Last-Translator: tmtfx <f.t.public@gmail.com>\n"
"Language-Team: Friulian <https://vm137.documentfoundation.org/projects/libo_ui-master/svxmessages/fur/>\n"
@@ -16303,10 +16303,10 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
+msgid "Comme_nts"
msgstr ""
#. z68pk
diff --git a/source/fur/sw/messages.po b/source/fur/sw/messages.po
index cffc8f09ac3..55455cab4db 100644
--- a/source/fur/sw/messages.po
+++ b/source/fur/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17433,86 +17433,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr ""
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr ""
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr ""
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr ""
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr ""
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr ""
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20028,289 +20034,289 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr ""
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr ""
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr ""
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr ""
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr ""
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr ""
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr ""
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr ""
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr ""
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr ""
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr ""
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr ""
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/fy/cui/messages.po b/source/fy/cui/messages.po
index 1c130cb3840..2223eb14d2c 100644
--- a/source/fy/cui/messages.po
+++ b/source/fy/cui/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-16 12:51+0000\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/fy/>\n"
"Language: fy\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1563478856.000000\n"
#. GyY9M
@@ -3299,7 +3299,7 @@ msgstr "Selektearje opsjes yn Ark ▸ Opsjes ▸ %PRODUCTNAME Writer ▸ Opmaak
#: cui/inc/tipoftheday.hrc:243
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to jump to a particular page by its number? Click the left-most statusbar entry or use Edit ▸ Go To Page… or press %MOD1+G."
-msgstr "Wolle jo nei in beskied side nûmer springe? Klik op de meast linkse ynfier op de tastânbalke of brûk Bewurkje ▸ Gean nei side... of druk op CTRL+G."
+msgstr "Wolle jo nei in beskaat side nûmer springe? Klik op de meast linkse ynfier op de tastânbalke of brûk Bewurkje ▸ Gean nei side... of druk op CTRL+G."
#. ULATG
#: cui/inc/tipoftheday.hrc:244
@@ -3401,7 +3401,7 @@ msgstr "Kinne jo in oanpaste sel syl profyl net feroarje of wiskje? Kontrolearje
#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Moatte jo in searje ynfolje? Selektearje it selberik en Blêd ▸ Sellen folje ▸ Searjes folje en kies tusken lineêr, Ekspotinsjeels, Datum en Autofolje."
#. BiSJM
#. local help missing
@@ -3474,7 +3474,7 @@ msgstr "Nije XSLT en XML filters ûntwikkelje?"
#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General."
-msgstr ""
+msgstr "Druk op Shift+F1 om de beskikbere útwreide arktippen yn dialoochskermen te sjen, as \"Utwreide tips\" net ynskeakele is yn Ark ▸ Opsjes ▸ %PRODUCTNAME ▸ Algemien"
#. hsZPg
#: cui/inc/tipoftheday.hrc:274
@@ -5376,7 +5376,7 @@ msgstr "_Automatysk"
#: cui/uiconfig/ui/baselinksdialog.ui:366
msgctxt "baselinksdialog|extended_tip|AUTOMATIC"
msgid "Automatically updates the contents of the link when you open the file. Any changes made in the source file are then displayed in the file containing the link. Linked graphic files can only be updated manually."
-msgstr ""
+msgstr "De ynhâld fan de keppeling wurdt automatysk fernijd wannear jo de triem iepenje. Elke feroaring yn it boarne triem wurde dan werjûn yn de triem dat de keppeling befettet. Keppele ôfbyldingen kinne allinne mei de hân fernijd wurde."
#. GzGG5
#: cui/uiconfig/ui/baselinksdialog.ui:377
@@ -5388,13 +5388,13 @@ msgstr "Selsbe_hear"
#: cui/uiconfig/ui/baselinksdialog.ui:387
msgctxt "baselinksdialog|extended_tip|MANUAL"
msgid "Only updates the link when you click the Update button."
-msgstr ""
+msgstr "Fernijd de keppeling allinne as jo op de knop Fernije klikke."
#. D2J77
#: cui/uiconfig/ui/baselinksdialog.ui:427
msgctxt "baselinksdialog|extended_tip|BaseLinksDialog"
msgid "Lets you edit the properties of each link in the current document, including the path to the source file. This command is not available if the current document does not contain links to other files."
-msgstr ""
+msgstr "Lit jo de eigenskippen fan de keppelingen yn it aktive dokumint bewurkje, ynklusyf it paad nei de boarne triem. Dizze opdracht is net beskikber as it aktive dokumint gjin keppelingen befettet nei oare triemmen."
#. D264D
#: cui/uiconfig/ui/bitmaptabpage.ui:66
@@ -5406,7 +5406,7 @@ msgstr "Taheakje / ymportearje"
#: cui/uiconfig/ui/bitmaptabpage.ui:72
msgctxt "bitmaptabpage|extended_tip|BTN_IMPORT"
msgid "Locate the bitmap that you want to import, and then click Open. The bitmap is added to the end of the list of available bitmaps."
-msgstr ""
+msgstr "Sykje de bitmap dy't jo ymportearje wolle en klik dan op Iepenje. De bitmap wurdt oan de ein fan de list fan beskikbere bitmappen taheakke."
#. UYRCn
#: cui/uiconfig/ui/bitmaptabpage.ui:90
@@ -5580,7 +5580,7 @@ msgstr "Foarbyld"
#: cui/uiconfig/ui/bitmaptabpage.ui:607
msgctxt "bitmaptabpage|extended_tip|BitmapTabPage"
msgid "Select a bitmap that you want to use as a fill image, or add your own bitmap pattern."
-msgstr ""
+msgstr "Selektearje in bitmap dy't jo brûke wolle as ôfbylding foar't opfoljen of heakje in eigen bitmap patroan ta."
#. AYRA3
#: cui/uiconfig/ui/borderareatransparencydialog.ui:8
@@ -5634,7 +5634,7 @@ msgstr "_Brûker fêststeld:"
#: cui/uiconfig/ui/borderpage.ui:98
msgctxt "borderpage|userdefft"
msgid "Click edge or corner to cycle through three states: set, unchanged, remove."
-msgstr ""
+msgstr "Klik op de kant of hoek om troch de trije tastannen te gean: set, net feroare, wiskje."
#. sRXeg
#: cui/uiconfig/ui/borderpage.ui:111
@@ -5736,7 +5736,7 @@ msgstr "Of_stân:"
#: cui/uiconfig/ui/borderpage.ui:547
msgctxt "borderpage|distanceft"
msgid "Width of shadow"
-msgstr ""
+msgstr "Breedte fan it skaad"
#. gEF6E
#: cui/uiconfig/ui/borderpage.ui:572
@@ -5778,7 +5778,7 @@ msgstr "Wurdôfbrekking"
#: cui/uiconfig/ui/breaknumberoption.ui:95
msgctxt "beforebreak"
msgid "Sets the minimum number of characters of the word to be hyphenated that must remain at the end of the line."
-msgstr ""
+msgstr "Set it minimum tal tekens fan it wurdt dat ôfbrutsen moat wurde en dat oan it ein fan de rigel bliuwe moat."
#. 8Fp43
#: cui/uiconfig/ui/breaknumberoption.ui:106
@@ -5790,7 +5790,7 @@ msgstr "Tekens foar de ôfbrekking"
#: cui/uiconfig/ui/breaknumberoption.ui:139
msgctxt "afterbreak"
msgid "Specifies the minimum number of characters of a hyphenated word required at the next line."
-msgstr ""
+msgstr "Tsjut it minimum tal tekens fan in ôfbrutsen wurd dat nei de folgjende rigel giet."
#. p6cfZ
#: cui/uiconfig/ui/breaknumberoption.ui:150
@@ -5802,7 +5802,7 @@ msgstr "Tekens nei de ôfbrekking"
#: cui/uiconfig/ui/breaknumberoption.ui:183
msgctxt "wordlength"
msgid "Specifies the minimum number of characters required for automatic hyphenation to be applied."
-msgstr ""
+msgstr "Tsjut it minimum tal tekens oan dat nedich is foar it tapassen fan automatyske wurd ôfbrekking."
#. sAo4B
#: cui/uiconfig/ui/breaknumberoption.ui:194
@@ -6036,7 +6036,7 @@ msgstr "Leginda"
#: cui/uiconfig/ui/calloutpage.ui:35
msgctxt "calloutpage|extended_tip|valueset"
msgid "Click the Callout style that you want to apply to the selected callout."
-msgstr ""
+msgstr "Klik op de styl Taljochting dat jo tapasse wolle op de selektearre taljochting."
#. cAZqx
#: cui/uiconfig/ui/calloutpage.ui:66
@@ -6078,13 +6078,13 @@ msgstr "Fertikaal"
#: cui/uiconfig/ui/calloutpage.ui:89
msgctxt "calloutpage|extended_tip|extension"
msgid "Select where you want to extend the callout line from, in relation to the callout box."
-msgstr ""
+msgstr "Selektearje wêr jo de line ferlinge wille yn ferhâlding ta de tekstballon."
#. CGjKD
#: cui/uiconfig/ui/calloutpage.ui:120
msgctxt "calloutpage|extended_tip|length"
msgid "Enter the length of the callout line segment that extends from the callout box to the inflection point of the line."
-msgstr ""
+msgstr "Fier de lingte yn fan de tekstballon ta it bûchpunt fan de line."
#. SFvEw
#: cui/uiconfig/ui/calloutpage.ui:133
@@ -6102,7 +6102,7 @@ msgstr "_Optimaal"
#: cui/uiconfig/ui/calloutpage.ui:160
msgctxt "calloutpage|extended_tip|optimal"
msgid "Click here to display a single-angled line in an optimal way."
-msgstr ""
+msgstr "Klik hjirre yn om in line mei in inkelde hoek optimaal sjen te litten."
#. dD3os
#: cui/uiconfig/ui/calloutpage.ui:180
@@ -6156,13 +6156,13 @@ msgstr "Rjochts"
#: cui/uiconfig/ui/calloutpage.ui:218
msgctxt "calloutpage|extended_tip|position"
msgid "Select where you want to extend the callout line from, in relation to the callout box."
-msgstr ""
+msgstr "Selektearje wêr jo de line ferlinge wille yn ferhâlding ta de tekstballon."
#. rj7LU
#: cui/uiconfig/ui/calloutpage.ui:237
msgctxt "calloutpage|extended_tip|by"
msgid "Select where you want to extend the callout line from, in relation to the callout box."
-msgstr ""
+msgstr "Selektearje wêr jo de line ferlinge wille yn ferhâlding ta de tekstballon."
#. jG4AE
#: cui/uiconfig/ui/calloutpage.ui:262
@@ -6174,7 +6174,7 @@ msgstr "Of_stân:"
#: cui/uiconfig/ui/calloutpage.ui:282
msgctxt "calloutpage|extended_tip|spacing"
msgid "Enter the amount of space that you want to leave between the end of the callout line, and the callout box."
-msgstr ""
+msgstr "Fier de romte yn dy't jo hâlde wolle tusken de tekstballon, en it ein fan de line."
#. wvzCN
#: cui/uiconfig/ui/calloutpage.ui:302
@@ -6198,7 +6198,7 @@ msgstr "Skeane ferbiningsline"
#: cui/uiconfig/ui/calloutpage.ui:321
msgctxt "calloutpage|extended_tip|CalloutPage"
msgid "Click the Callout style that you want to apply to the selected callout."
-msgstr ""
+msgstr "Klik op de styl Taljochting dat jo tapasse wolle op de selektearre taljochting."
#. vQp3A
#: cui/uiconfig/ui/cellalignment.ui:53
@@ -6216,13 +6216,13 @@ msgstr "_Referinsje kant:"
#: cui/uiconfig/ui/cellalignment.ui:86
msgctxt "cellalignment|extended_tip|spinDegrees"
msgid "Enter the rotation angle from 0 to 360 for the text in the selected cell(s)."
-msgstr ""
+msgstr "Fier de rotaasje hoeke yn fan 0 oan't 360 foar de tekst yn de selektearre sel(len)."
#. D2Ebb
#: cui/uiconfig/ui/cellalignment.ui:103
msgctxt "cellalignment|extended_tip|references"
msgid "Specify the cell edge from which to write the rotated text."
-msgstr ""
+msgstr "Tsjut de sel râne oan wêr út de rotearre tekst begjinne moat."
#. Gwudo
#: cui/uiconfig/ui/cellalignment.ui:126
@@ -6234,7 +6234,7 @@ msgstr "Fertikaal stapele"
#: cui/uiconfig/ui/cellalignment.ui:136
msgctxt "cellalignment|extended_tip|checkVertStack"
msgid "Aligns text vertically."
-msgstr ""
+msgstr "Tekst fertikaal rjochtsje."
#. XBFYt
#: cui/uiconfig/ui/cellalignment.ui:147
diff --git a/source/fy/dbaccess/messages.po b/source/fy/dbaccess/messages.po
index 6cff16102f6..a44e31f0f08 100644
--- a/source/fy/dbaccess/messages.po
+++ b/source/fy/dbaccess/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-08-05 13:35+0000\n"
+"PO-Revision-Date: 2020-11-18 15:35+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/fy/>\n"
"Language: fy\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562671484.000000\n"
#. BiN6g
@@ -2524,73 +2524,73 @@ msgstr ""
#: dbaccess/inc/templwin.hrc:41
msgctxt "STRARY_SVT_DOCINFO"
msgid "Title"
-msgstr ""
+msgstr "Titel"
#. zo57j
#: dbaccess/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
msgid "By"
-msgstr ""
+msgstr "Troch"
#. Zh8Ni
#: dbaccess/inc/templwin.hrc:43
msgctxt "STRARY_SVT_DOCINFO"
msgid "Date"
-msgstr ""
+msgstr "Datum"
#. eHFA4
#: dbaccess/inc/templwin.hrc:44
msgctxt "STRARY_SVT_DOCINFO"
msgid "Keywords"
-msgstr ""
+msgstr "Kaaiwurden"
#. eYGnQ
#: dbaccess/inc/templwin.hrc:45
msgctxt "STRARY_SVT_DOCINFO"
msgid "Description"
-msgstr ""
+msgstr "Beskriuwing"
#. Eg2eG
#: dbaccess/inc/templwin.hrc:46
msgctxt "STRARY_SVT_DOCINFO"
msgid "Type"
-msgstr ""
+msgstr "Type"
#. hokZy
#: dbaccess/inc/templwin.hrc:47
msgctxt "STRARY_SVT_DOCINFO"
msgid "Modified on"
-msgstr ""
+msgstr "Feroare op"
#. XMEJb
#: dbaccess/inc/templwin.hrc:48
msgctxt "STRARY_SVT_DOCINFO"
msgid "Modified by"
-msgstr ""
+msgstr "Feroare troch"
#. MWkd5
#: dbaccess/inc/templwin.hrc:49
msgctxt "STRARY_SVT_DOCINFO"
msgid "Printed on"
-msgstr ""
+msgstr "Printe op"
#. BBEEC
#: dbaccess/inc/templwin.hrc:50
msgctxt "STRARY_SVT_DOCINFO"
msgid "Printed by"
-msgstr ""
+msgstr "Printe troch"
#. VCGe3
#: dbaccess/inc/templwin.hrc:51
msgctxt "STRARY_SVT_DOCINFO"
msgid "Subject"
-msgstr ""
+msgstr "Underwerp"
#. HVYdE
#: dbaccess/inc/templwin.hrc:52
msgctxt "STRARY_SVT_DOCINFO"
msgid "Size"
-msgstr ""
+msgstr "Grutte"
#. 4KVZn
#: dbaccess/uiconfig/ui/admindialog.ui:8
@@ -2740,7 +2740,7 @@ msgstr "_Breedte:"
#: dbaccess/uiconfig/ui/colwidthdialog.ui:117
msgctxt "colwidthdialog|extended_tip|value"
msgid "Enter the column width that you want to use."
-msgstr ""
+msgstr "Fier de kolom breedte yn dy't jo brûke wolle."
#. LtAmr
#: dbaccess/uiconfig/ui/colwidthdialog.ui:128
@@ -2752,13 +2752,13 @@ msgstr "_Automatysk"
#: dbaccess/uiconfig/ui/colwidthdialog.ui:137
msgctxt "colwidthdialog|extended_tip|automatic"
msgid "Automatically adjusts the column width based on the current font."
-msgstr ""
+msgstr "Pas automatysk de breedte fan de kolom oan op basis fan it aktive lettertype."
#. enAfe
#: dbaccess/uiconfig/ui/colwidthdialog.ui:168
msgctxt "colwidthdialog|extended_tip|ColWidthDialog"
msgid "Changes the width of the current column, or the selected columns."
-msgstr ""
+msgstr "Feroaret de breedte fan de aktive kolom, of de selektearre kolommen."
#. zBVS9
#: dbaccess/uiconfig/ui/connectionpage.ui:41
@@ -3359,7 +3359,7 @@ msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
"available in this setup."
-msgstr ""
+msgstr "It is net mooglik om in nije gegevensbank oan te meitsjen, omdat HSQLDB en Firebord net beskikber binne yn dizze opset."
#. DQvKi
#: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:43
@@ -3959,7 +3959,7 @@ msgstr "- gjint -"
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:139
msgctxt "queryfilterdialog|extended_tip|field1"
msgid "Specifies the field names from the current table to set them in the argument."
-msgstr ""
+msgstr "Tsjut de fjild nammen fan de aktive tabel oan om se yn it argumint yn te kinnen stellen."
#. 57zBE
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:155
@@ -4025,7 +4025,7 @@ msgstr "net leech"
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:168
msgctxt "queryfilterdialog|extended_tip|cond1"
msgid "Specifies the comparative operators through which the entries in the Field name and Value fields can be linked."
-msgstr ""
+msgstr "Tsjut de lykjende operatoaren oan wêrmei de items yn de fjild namme en wearde fjilden keppele kinne wurde."
#. A8jis
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:183
@@ -4037,7 +4037,7 @@ msgstr "- gjint -"
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:187
msgctxt "queryfilterdialog|extended_tip|field2"
msgid "Specifies the field names from the current table to set them in the argument."
-msgstr ""
+msgstr "Tsjut de fjild nammen fan de aktive tabel oan om se yn it argumint yn te kinnen stellen."
#. FdHSG
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:202
@@ -4049,19 +4049,19 @@ msgstr "- gjint -"
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:206
msgctxt "queryfilterdialog|extended_tip|field3"
msgid "Specifies the field names from the current table to set them in the argument."
-msgstr ""
+msgstr "Tsjut de fjild nammen fan de aktive tabel oan om se yn it argumint yn te kinnen stellen."
#. oCJaY
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:223
msgctxt "queryfilterdialog|extended_tip|cond2"
msgid "Specifies the comparative operators through which the entries in the Field name and Value fields can be linked."
-msgstr ""
+msgstr "Tsjut de lykjende operatoaren oan wêrmei de items yn de fjild namme en wearde fjilden keppele kinne wurde."
#. rY6Pi
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:240
msgctxt "queryfilterdialog|extended_tip|cond3"
msgid "Specifies the comparative operators through which the entries in the Field name and Value fields can be linked."
-msgstr ""
+msgstr "Tsjut de lykjende operatoaren oan wêrmei de items yn de fjild namme en wearde fjilden keppele kinne wurde."
#. tBd3g
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:253
@@ -4073,19 +4073,19 @@ msgstr "Wearde"
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:268
msgctxt "queryfilterdialog|extended_tip|value1"
msgid "Specifies a value to filter the field."
-msgstr ""
+msgstr "Tsjut in wearde oan om it fjild te filterjen."
#. w42mr
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:285
msgctxt "queryfilterdialog|extended_tip|value2"
msgid "Specifies a value to filter the field."
-msgstr ""
+msgstr "Tsjut in wearde oan om it fjild te filterjen."
#. tB93H
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:302
msgctxt "queryfilterdialog|extended_tip|value3"
msgid "Specifies a value to filter the field."
-msgstr ""
+msgstr "Tsjut in wearde oan om it fjild te filterjen."
#. PFZ8z
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:317
@@ -4103,7 +4103,7 @@ msgstr "OF"
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:322
msgctxt "queryfilterdialog|extended_tip|op2"
msgid "For the following arguments, you can choose between the logical operators AND / OR."
-msgstr ""
+msgstr "Foar de folgjende arguminten, kinne jo kieze tusken de logyske operatoaren EN / OF."
#. EaXyP
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:337
@@ -4121,7 +4121,7 @@ msgstr "OF"
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:342
msgctxt "queryfilterdialog|extended_tip|op3"
msgid "For the following arguments, you can choose between the logical operators AND / OR."
-msgstr ""
+msgstr "Foar de folgjende arguminten, kinne jo kieze tusken de logyske operatoaren EN / OF."
#. SESZq
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:362
@@ -4133,7 +4133,7 @@ msgstr "Kritearia"
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:387
msgctxt "queryfilterdialog|extended_tip|QueryFilterDialog"
msgid "Allows you to set the filtering options."
-msgstr ""
+msgstr "hjirmei kinne jo de filter opsjes ynstelle."
#. jFD4L
#: dbaccess/uiconfig/ui/queryfuncmenu.ui:12
@@ -4181,7 +4181,7 @@ msgstr "Ja"
#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:112
msgctxt "querypropertiesdialog|extended_tip|distinct"
msgid "Use distinct values in query."
-msgstr ""
+msgstr "Brûk ferskillende wearden yn de query."
#. rErxt
#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:124
@@ -4193,7 +4193,7 @@ msgstr "Nee"
#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:134
msgctxt "querypropertiesdialog|extended_tip|nondistinct"
msgid "Not use distinct values in query."
-msgstr ""
+msgstr "Brûk gjin ferskillende wearden yn de query."
#. P9quF
#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:154
@@ -4205,13 +4205,13 @@ msgstr "Underskiedende wearden:"
#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:176
msgctxt "querypropertiesdialog|extended_tip|limitbox"
msgid "Adds a Limit to set the maximum number of records to return."
-msgstr ""
+msgstr "Set in limyt om it maksimum tal records fêst te stellen dat weromkomme moat."
#. GoEm9
#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:204
msgctxt "querypropertiesdialog|extended_tip|QueryPropertiesDialog"
msgid "In the Query Properties dialog you can set two properties of the SQL Query, i.e. whether to return distinct values, and whether to limit the result set."
-msgstr ""
+msgstr "Yn it dialoochskerm Query eigenskippen kinne jo twa eigenskippen fan de SQL query ynstelle, d.w.s. of der ôfsûnderlike wearden weromkomme moatte en of it resultaat set beheind moat wurde."
#. gLFLt
#: dbaccess/uiconfig/ui/relationdialog.ui:8
@@ -4337,7 +4337,7 @@ msgstr "_Hichte:"
#: dbaccess/uiconfig/ui/rowheightdialog.ui:117
msgctxt "rowheightdialog|extended_tip|value"
msgid "Enter the row height that you want to use."
-msgstr ""
+msgstr "Fier de rige hichte yn dy't jo brûke wolle."
#. 4QFsD
#: dbaccess/uiconfig/ui/rowheightdialog.ui:128
@@ -4349,13 +4349,13 @@ msgstr "_Automatysk"
#: dbaccess/uiconfig/ui/rowheightdialog.ui:137
msgctxt "rowheightdialog|extended_tip|automatic"
msgid "Adjusts the row height to the size based on the default template. Existing contents may be shown vertically cropped. The height no longer increases automatically when you enter larger contents."
-msgstr ""
+msgstr "Past de rige hichte oan nei de grutte dy basearre is op de hichte fan it standert sjabloan. Besteande ynhâld kin fertikaal bysnien werjûn wurde. De hichte wurdt net automatysk fergrutte as jo mear ynhâld ynfiere."
#. qEa9T
#: dbaccess/uiconfig/ui/rowheightdialog.ui:168
msgctxt "rowheightdialog|extended_tip|RowHeightDialog"
msgid "Changes the height of the current row, or the selected rows."
-msgstr ""
+msgstr "Feroaret de hichte fan de aktive rige, of de selektearre rigen."
#. SD2FQ
#: dbaccess/uiconfig/ui/savedialog.ui:8
@@ -4487,7 +4487,7 @@ msgstr "Oarder fan sortearjen"
#: dbaccess/uiconfig/ui/sortdialog.ui:272
msgctxt "sortdialog|extended_tip|SortDialog"
msgid "Specifies the sort criteria for the data display."
-msgstr ""
+msgstr "Fier hjir de kritearia fan sortearjen foar de gegevens werjefte yn."
#. CsLXB
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:24
@@ -4781,7 +4781,7 @@ msgstr "Tabel of query taheakje"
#: dbaccess/uiconfig/ui/taskwindow.ui:109
msgctxt "taskwindow|STR_DESCRIPTION"
msgid "Description"
-msgstr ""
+msgstr "Beskriuwing"
#. 8b2nn
#: dbaccess/uiconfig/ui/textconnectionsettings.ui:8
@@ -5015,4 +5015,4 @@ msgstr "_Tekenset:"
#: dbaccess/uiconfig/ui/userdetailspage.ui:214
msgctxt "userdetailspage|charsetheader"
msgid "Data Conversion"
-msgstr ""
+msgstr "Gegevens omsetting"
diff --git a/source/fy/desktop/messages.po b/source/fy/desktop/messages.po
index 9be5e0866bd..e9e24e80222 100644
--- a/source/fy/desktop/messages.po
+++ b/source/fy/desktop/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-04 20:46+0000\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/desktopmessages/fy/>\n"
"Language: fy\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1536341248.000000\n"
#. v2iwK
@@ -116,7 +116,7 @@ msgstr "Dialoochskerm biblioteek"
#: desktop/inc/strings.hrc:43
msgctxt "RID_STR_CANNOT_DETERMINE_LIBNAME"
msgid "The library name could not be determined."
-msgstr "De biblioteeknamme kin net beskied wurde."
+msgstr "De biblioteeknamme kin net beskaat wurde."
#. G6SqW
#: desktop/inc/strings.hrc:45
diff --git a/source/fy/extensions/messages.po b/source/fy/extensions/messages.po
index 987e757be37..8f22266fc4d 100644
--- a/source/fy/extensions/messages.po
+++ b/source/fy/extensions/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-07-02 14:00+0000\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/extensionsmessages/fy/>\n"
"Language: fy\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1555849889.000000\n"
#. cBx8W
@@ -2641,7 +2641,7 @@ msgstr ""
#: extensions/inc/strings.hrc:343
msgctxt "RID_BIB_STR_FRAME_TITLE"
msgid "Bibliography Database"
-msgstr "Literatuerlist gegevensboarne"
+msgstr "Literatuerlist gegevensbank"
#. qx7AN
#: extensions/inc/strings.hrc:344
@@ -3095,13 +3095,13 @@ msgstr "Blêdzje..."
#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:86
msgctxt "datasourcepage|extended_tip|browse"
msgid "Specifies the location using a file dialog."
-msgstr ""
+msgstr "Tsjut mei help fan in triem dialoochskerm te lokaasje oan."
#. 7P3GP
#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:109
msgctxt "datasourcepage|extended_tip|location"
msgid "Specifies the location of the database file."
-msgstr ""
+msgstr "Tsjut de lokaasje fan de gegevenstriem."
#. 6LtJa
#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:126
@@ -3113,7 +3113,7 @@ msgstr "Dit adresboek beskikber meitsje foar alle modules yn %PRODUCTNAME."
#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:135
msgctxt "datasourcepage|extended_tip|available"
msgid "Registers the newly created database file in %PRODUCTNAME. The database will then be listed in the Data sources pane (Ctrl+Shift+F4). If this check box is cleared, the database will be available only by opening the database file."
-msgstr ""
+msgstr "Registrearret de nij oanmakke gegevensbank yn %PRODUCTNAME. De gegevensbank sil dan yn it paniel Gegevensboarnen te sjen wêze (Ctrl+Shift+F4). As dit karfakje net selektearre is, is de gegevensbank allinne beskikber troch de gegevenstriem te iepenjen."
#. jbrum
#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:168
@@ -3125,7 +3125,7 @@ msgstr "Titel adresboek"
#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:186
msgctxt "datasourcepage|extended_tip|name"
msgid "Specifies the data source name."
-msgstr ""
+msgstr "Tsjut de name fan de gegevensboarne oan."
#. iHrkL
#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:205
@@ -3137,7 +3137,7 @@ msgstr "Der is al in oare gegevensboarne mei deselde namme. Gegevensboarnen moat
#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:238
msgctxt "datasourcepage|extended_tip|DataSourcePage"
msgid "Specifies a location for the address book file and a name under which the data source will be listed in the data source explorer."
-msgstr ""
+msgstr "Fier hjir in lokaasje yn foar it adresboek triem en in namme wêrmei de gegevensboarne yn de gegevensboarne ferkenner te sjen is."
#. CWNrs
#: extensions/uiconfig/sabpilot/ui/defaultfieldselectionpage.ui:18
@@ -3167,6 +3167,11 @@ msgid ""
"\n"
"Click the button below to open another dialog where you can enter the settings for your data source."
msgstr ""
+"Om de adresgegevens yn jo sjabloanen brûke te kinne, moat %PRODUCTNAME witte hokker fjilden de konkrete gegevens befetsje.\n"
+"\n"
+"Jo kinne bygelyks de e-postadressen bewarre ha yn in fjild mei de namme \"E-post\", \"E-berjocht\", of \"EM\", of noch in oare namme.\n"
+"\n"
+"As jo op de knop hjirûnder klikke, wurdt der in dialoochskerm iepene wêryn jo de ynstellingen foar jo gegevensboarne opjaan kinne."
#. RkyNf
#: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:38
@@ -3178,13 +3183,13 @@ msgstr "Fjild tawizing"
#: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:46
msgctxt "fieldassignpage|extended_tip|assign"
msgid "Opens the Templates: Address Book Assignment dialog."
-msgstr ""
+msgstr "Dizze knop iepenet it dialoochskerm sjabloanen: Adresboek."
#. CuPoK
#: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:77
msgctxt "fieldassignpage|extended_tip|FieldAssignPage"
msgid "Opens a dialog that allows you to specify the field assignment."
-msgstr ""
+msgstr "Hjirmei iepenje jo in dialoochskerm wêryn jo de fjild ferdieling fêststelle."
#. j8AYS
#: extensions/uiconfig/sabpilot/ui/fieldlinkpage.ui:17
@@ -3268,7 +3273,7 @@ msgstr "Besteande fjilden"
#: extensions/uiconfig/sabpilot/ui/gridfieldsselectionpage.ui:401
msgctxt "gridfieldsselectionpage|label2"
msgid "Table Element"
-msgstr ""
+msgstr "Tabel elemint"
#. Xk7cV
#: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:54
@@ -3322,7 +3327,7 @@ msgstr "Hokker _nammen wolle jo oan de opsjefjilden jaan?"
#: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:309
msgctxt "groupradioselectionpage|label2"
msgid "Table Element"
-msgstr ""
+msgstr "Tabel elemint"
#. 3dtcD
#: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:15
@@ -3346,7 +3351,7 @@ msgstr "Ynstellingen"
#: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:43
msgctxt "invokeadminpage|extended_tip|settings"
msgid "Calls a dialog in which you can enter additional settings."
-msgstr ""
+msgstr "Ropt in dialoochskerm op wêryn jo oanfoljende ynstellingen dwaan kinne."
#. CAjBt
#: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:56
@@ -3362,7 +3367,7 @@ msgstr ""
#: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:76
msgctxt "invokeadminpage|extended_tip|InvokeAdminPage"
msgid "Allows you to enter additional settings for LDAP address data and other external data sources."
-msgstr ""
+msgstr "Hjir kinne jo oanfoljende ynstellingen foar LDAP adres gegevens en oare eksterne gegevensboarnen ynfiere."
#. MdQKb
#: extensions/uiconfig/sabpilot/ui/optiondbfieldpage.ui:41
@@ -3426,13 +3431,13 @@ msgstr ""
#: extensions/uiconfig/sabpilot/ui/selecttablepage.ui:77
msgctxt "selecttablepage|extended_tip|table"
msgid "Specifies the table that is to serve as the address book for the %PRODUCTNAME templates."
-msgstr ""
+msgstr "Selektearje de tabel dy as it adresboek foar de %PRODUCTNAME sjabloanen tsjinje moat."
#. F6ySC
#: extensions/uiconfig/sabpilot/ui/selecttablepage.ui:90
msgctxt "selecttablepage|extended_tip|SelectTablePage"
msgid "Specifies a table from the Seamonkey / Netscape address book source that is used as the address book in %PRODUCTNAME."
-msgstr ""
+msgstr "Selektearret in tabel út it adresboek fan SeaMonkey / Netscape dat as adresboek yn %PRODUCTNAME tsjinje moat."
#. bCndk
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:15
@@ -3456,7 +3461,7 @@ msgstr "Evolúsje"
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:52
msgctxt "selecttypepage|extended_tip|evolution"
msgid "Select this option if you already use an address book in Evolution."
-msgstr ""
+msgstr "Selektearje dizze opsje as jo al in adresboek brûke yn Evolution."
#. F6JYD
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:63
@@ -3468,7 +3473,7 @@ msgstr "Groupwise"
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:73
msgctxt "selecttypepage|extended_tip|groupwise"
msgid "Select this option if you already use an address book in Groupwise."
-msgstr ""
+msgstr "Selektearje dizze opsje as jo al in adresboek brûke yn Groupwise."
#. cuXRp
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:84
@@ -3480,7 +3485,7 @@ msgstr "Evolution LDAP"
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:94
msgctxt "selecttypepage|extended_tip|evoldap"
msgid "Select this option if you already use an address book in Evolution LDAP."
-msgstr ""
+msgstr "Selektearje dizze opsje as jo al in adresboek brûke yn Evolution LDAP."
#. hMBCk
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:105
@@ -3492,7 +3497,7 @@ msgstr "Firefox"
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:115
msgctxt "selecttypepage|extended_tip|firefox"
msgid "Select this option if you already use an address book in Firefox or Iceweasel."
-msgstr ""
+msgstr "Selektearje dizze opsje as jo al in adresboek brûke yn Firefox of Iceweasel."
#. C4oTw
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:126
@@ -3504,7 +3509,7 @@ msgstr "Thunderbird"
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:136
msgctxt "selecttypepage|extended_tip|thunderbird"
msgid "Select this option if you already use an address book in Thunderbird or Icedove."
-msgstr ""
+msgstr "Selektearje dizze opsje as jo al in adresboek brûke yn Thunderbird of Icedove."
#. su4jz
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:147
@@ -3516,7 +3521,7 @@ msgstr "KDE adresboek"
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:157
msgctxt "selecttypepage|extended_tip|kde"
msgid "Select this option if you already use an address book in KDE Address book."
-msgstr ""
+msgstr "Selektearje dizze opsje as jo al in adresboek brûke yn KDE Adress book."
#. 2Psrm
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:168
@@ -3528,7 +3533,7 @@ msgstr "Mac OS X adresboek"
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:178
msgctxt "selecttypepage|extended_tip|macosx"
msgid "Select this option if you already use an address book in macOS Address book."
-msgstr ""
+msgstr "Selektearje dizze opsje as jo al in adresboek brûke yn MacOS Adress book."
#. 3EnZE
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:189
@@ -3540,7 +3545,7 @@ msgstr "Oare eksterne gegevensboarne"
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:199
msgctxt "selecttypepage|extended_tip|other"
msgid "Select this option if you want to register another data source as address book in %PRODUCTNAME."
-msgstr ""
+msgstr "Selektearje dizze opsje as jo in oare gegevensboarne as adresboek registrearje wolle yn %PRODUCTNAME."
#. HyBth
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:212
@@ -3552,7 +3557,7 @@ msgstr "Selektearje jo eksterne adres boek type:"
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:232
msgctxt "selecttypepage|extended_tip|SelectTypePage"
msgid "This wizard registers an existing address book as a data source in %PRODUCTNAME."
-msgstr ""
+msgstr "Dizze assistint registrearret in besteand adresbook as in gegevensboarne yn %PRODUCTNAME."
#. f33Eh
#: extensions/uiconfig/sabpilot/ui/tableselectionpage.ui:60
@@ -3810,7 +3815,7 @@ msgstr "Brûker fjild _3"
#: extensions/uiconfig/sbibliography/ui/generalpage.ui:618
msgctxt "generalpage|extended_tip|GeneralPage"
msgid "Insert, delete, edit, and organize records in the bibliography database."
-msgstr ""
+msgstr "Records yn de literatuerlist gegevensbank ynfoegje, wiskje, bewurkje en beheare."
#. 7BG4W
#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:8
@@ -4014,7 +4019,7 @@ msgstr "Kolomnammen"
#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:1058
msgctxt "mappingdialog|extended_tip|MappingDialog"
msgid "Lets you map the column headings to data fields from a different data source. To define a different data source for your bibliography, click the Data Source button on the record's Object bar."
-msgstr ""
+msgstr "Hjirmei kinne jo de kolom koppen oan gegevensfjilden fan in oare gegevensboarne tawize. Wannear jo in oare gegevensboarne foar jo literatuerlist wolle fêststelle, klik jo op de knop Gegevensboarne fan de arkbalke Objekten fan it record."
#. k9B7a
#: extensions/uiconfig/sbibliography/ui/querydialog.ui:30
@@ -4056,13 +4061,13 @@ msgstr "Kolom yndieling"
#: extensions/uiconfig/sbibliography/ui/toolbar.ui:114
msgctxt "toolbar|extended_tip|TBC_BT_COL_ASSIGN"
msgid "Lets you map the column headings to data fields from a different data source. To define a different data source for your bibliography, click the Data Source button on the record's Object bar."
-msgstr ""
+msgstr "Hjirmei kinne jo de kolom koppen oan gegevensfjilden fan in oare gegevensboarne tawize. Wannear jo in oare gegevensboarne foar jo literatuerlist wolle fêststelle, klik jo op de knop Gegevensboarne fan de arkbalke Objekten fan it record."
#. 8s8QS
#: extensions/uiconfig/sbibliography/ui/toolbar.ui:125
msgctxt "toolbar|extended_tip|toolbar"
msgid "Insert, delete, edit, and organize records in the bibliography database."
-msgstr ""
+msgstr "Records yn de literatuerlist gegevensbank ynfoegje, wiskje, bewurkje en beheare."
#. AFbU5
#: extensions/uiconfig/scanner/ui/griddialog.ui:111
@@ -4146,7 +4151,7 @@ msgstr "_Under:"
#: extensions/uiconfig/scanner/ui/sanedialog.ui:276
msgctxt "sanedialog|label1"
msgid "Scan Area"
-msgstr ""
+msgstr "Sken gebiet"
#. FZ7Vw
#: extensions/uiconfig/scanner/ui/sanedialog.ui:335
@@ -4296,7 +4301,7 @@ msgstr "Tab folchoarder"
#: extensions/uiconfig/spropctrlr/ui/taborder.ui:151
msgctxt "taborder|extended_tip|CTRLtree"
msgid "Lists all controls in the form. These controls can be selected with the tab key in the given order from top to bottom."
-msgstr ""
+msgstr "Lit alle bestjoering eleminten yn it formulier sjen. Dizze bestjoering eleminten kinne mei de Tab knop selektearre wurde yn de oarder dy't opjûn is (fan boppe nei ûnderen)."
#. WGPX4
#: extensions/uiconfig/spropctrlr/ui/taborder.ui:171
diff --git a/source/fy/officecfg/registry/data/org/openoffice/Office.po b/source/fy/officecfg/registry/data/org/openoffice/Office.po
index 0b885dd57ef..a1d642ef538 100644
--- a/source/fy/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/fy/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: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-09-10 20:35+0000\n"
+"PO-Revision-Date: 2020-11-19 20:35+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeoffice/fy/>\n"
"Language: fy\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1550516980.000000\n"
#. HhMVS
@@ -344,7 +344,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Display Name"
-msgstr "Namme om sjen te litten"
+msgstr "Namme sjen litte"
#. mTT2H
#: DataAccess.xcu
@@ -1634,7 +1634,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Email (96 DPI): minimize document size for sharing"
-msgstr ""
+msgstr "E-post (96 DPI): dokumint grutte minimalisearje foar it dielen"
#. mzFCD
#: PresentationMinimizer.xcu
@@ -1744,7 +1744,7 @@ msgctxt ""
"Text\n"
"value.text"
msgid "Restart"
-msgstr ""
+msgstr "Opnij starte"
#. zYCFa
#: PresenterScreen.xcu
@@ -1754,7 +1754,7 @@ msgctxt ""
"Text\n"
"value.text"
msgid "Exchange"
-msgstr ""
+msgstr "Wikselje"
#. hAAEf
#: PresenterScreen.xcu
@@ -1764,7 +1764,7 @@ msgctxt ""
"Text\n"
"value.text"
msgid "Help"
-msgstr ""
+msgstr "Help"
#. AqwYo
#: PresenterScreen.xcu
diff --git a/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po
index cae0b1c5a81..d2d96ef7d78 100644
--- a/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fy/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-10-17 08:35+0000\n"
+"PO-Revision-Date: 2020-11-20 14:48+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/fy/>\n"
"Language: fy\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1566238515.000000\n"
#. W5ukN
@@ -584,7 +584,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Freeze First Column"
-msgstr ""
+msgstr "Earste kolom fêstsette"
#. WDbnU
#: CalcCommands.xcu
@@ -594,7 +594,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Freeze First Row"
-msgstr ""
+msgstr "Earste rige fêstsette"
#. Qz2C5
#: CalcCommands.xcu
@@ -8804,7 +8804,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Page Properties..."
-msgstr ""
+msgstr "Side eigenskippen..."
#. W6trc
#: DrawImpressCommands.xcu
@@ -8824,7 +8824,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Slide Properties..."
-msgstr ""
+msgstr "Dia eigenskippen..."
#. bhvTx
#: DrawImpressCommands.xcu
@@ -10624,7 +10624,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Table"
-msgstr ""
+msgstr "Tabel wiskje"
#. Lbfd9
#: DrawImpressCommands.xcu
@@ -13574,7 +13574,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Regular Triangle"
-msgstr ""
+msgstr "Regelmjittige trijehoeke"
#. BUJ28
#: Effects.xcu
@@ -25066,7 +25066,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Shows a dialog to select the user interface"
-msgstr ""
+msgstr "Lit in dialoochskerm sjen om de brûkersynterfaasje te selektearjen"
#. uQVBR
#: GenericCommands.xcu
@@ -25976,7 +25976,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert ~non-breaking space"
-msgstr "hurde ~spaasje ynfoegje"
+msgstr "Hurde ~spaasje ynfoegje"
#. KZXXb
#: GenericCommands.xcu
@@ -28326,7 +28326,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Style Inspector"
-msgstr ""
+msgstr "Styl tafersjochhâlder"
#. GEHrf
#: Sidebar.xcu
@@ -28476,7 +28476,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Style Inspector"
-msgstr ""
+msgstr "Styl tafersjochhâlder"
#. aCGNS
#: Sidebar.xcu
@@ -28546,7 +28546,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Effect"
-msgstr ""
+msgstr "Effekt"
#. GBNW2
#: Sidebar.xcu
@@ -29886,7 +29886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show ~Tracked Changes"
-msgstr ""
+msgstr "Byhâlden ~feroaringen sjen litte"
#. sMgCx
#: WriterCommands.xcu
@@ -29936,7 +29936,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show outline content visibility button"
-msgstr ""
+msgstr "Knop sichtberens fan oersicht ynhâld sjen litte"
#. 9DzFr
#: WriterCommands.xcu
@@ -29946,7 +29946,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show outline content visibility button"
-msgstr ""
+msgstr "Knop sichtberens fan oersicht ynhâld sjen litte"
#. C5mHk
#: WriterCommands.xcu
@@ -29956,7 +29956,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show tracked deletions in margin"
-msgstr ""
+msgstr "Byhâlden wiskjen yn marzje sjen litte"
#. 3GVrG
#: WriterCommands.xcu
@@ -29966,7 +29966,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show tracked deletions in margin"
-msgstr ""
+msgstr "Byhâlden wiskjen yn marzje sjen litte"
#. QFi68
#: WriterCommands.xcu
@@ -31426,7 +31426,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "None"
-msgstr ""
+msgstr "Gjint"
#. SvFa2
#: WriterCommands.xcu
@@ -31436,7 +31436,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Parallel"
-msgstr ""
+msgstr "~Parallel"
#. YFEFD
#: WriterCommands.xcu
@@ -31466,7 +31466,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Through"
-msgstr ""
+msgstr "~Troch"
#. SocUA
#: WriterCommands.xcu
@@ -32696,7 +32696,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Previous Page"
-msgstr ""
+msgstr "Nei foarige side"
#. w4B39
#: WriterCommands.xcu
@@ -32706,7 +32706,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "To Previous Page"
-msgstr ""
+msgstr "Nei foarige side"
#. qEpQx
#: WriterCommands.xcu
@@ -32716,7 +32716,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Next Page"
-msgstr ""
+msgstr "Nei folgjende side"
#. Nx5Ux
#: WriterCommands.xcu
@@ -32726,7 +32726,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "To Next Page"
-msgstr ""
+msgstr "Nei folgjende side"
#. adnz3
#: WriterCommands.xcu
@@ -33016,7 +33016,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Optimal"
-msgstr ""
+msgstr "~Optimaal"
#. EFP2w
#: WriterCommands.xcu
@@ -33226,7 +33226,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Before"
-msgstr ""
+msgstr "Derfoar"
#. LADWG
#: WriterCommands.xcu
@@ -33246,7 +33246,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "After"
-msgstr ""
+msgstr "Dêrnei"
#. b5mCd
#: WriterCommands.xcu
@@ -35206,7 +35206,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toggle Outline Content Visibility"
-msgstr ""
+msgstr "Oersicht ynhâld sichtberens wikselje"
#. mByUW
#: WriterCommands.xcu
@@ -35216,7 +35216,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Fold or unfold outline content in document"
-msgstr ""
+msgstr "Oersicht ynhâld yn it dokumint ynfâldzje of útfâldzje"
#. qaWQG
#: WriterCommands.xcu
@@ -35226,7 +35226,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Inspector Deck"
-msgstr ""
+msgstr "Paniel ûndersiker"
#. joS9f
#: WriterFormWindowState.xcu
diff --git a/source/fy/sc/messages.po b/source/fy/sc/messages.po
index 77e4be943c4..5d61831b3e8 100644
--- a/source/fy/sc/messages.po
+++ b/source/fy/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-08-03 11:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-19 20:36+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/fy/>\n"
"Language: fy\n"
@@ -518,19 +518,19 @@ msgstr "Notysje ferbergje"
#: sc/inc/globstr.hrc:106
msgctxt "STR_UNDO_SHOWALLNOTES"
msgid "Show All Comments"
-msgstr "Alle taljochtingen sjen litte"
+msgstr "Alle notysjes sjen litte"
#. hcrJZ
#: sc/inc/globstr.hrc:107
msgctxt "STR_UNDO_HIDEALLNOTES"
msgid "Hide All Comments"
-msgstr "Alle taljochtingen ferbergje"
+msgstr "Alle notysjes ferbergje"
#. Ngfbt
#: sc/inc/globstr.hrc:108
msgctxt "STR_UNDO_EDITNOTE"
msgid "Edit Comment"
-msgstr "Taljochting bewurkje"
+msgstr "Notysje bewurkje"
#. DoizQ
#: sc/inc/globstr.hrc:109
@@ -1415,7 +1415,7 @@ msgstr "(fereaske)"
#: sc/inc/globstr.hrc:263
msgctxt "STR_NOTES"
msgid "Comments"
-msgstr "Taljochtingen"
+msgstr "Notysjes"
#. GfDDe
#: sc/inc/globstr.hrc:264
@@ -1469,7 +1469,7 @@ msgstr "Dif ymport"
#: sc/inc/globstr.hrc:272
msgctxt "STR_STYLENAME_STANDARD"
msgid "Default"
-msgstr ""
+msgstr "Standert"
#. TG9pD
#: sc/inc/globstr.hrc:273
@@ -1793,7 +1793,7 @@ msgstr "Links nei rjochts"
#: sc/inc/globstr.hrc:325
msgctxt "STR_SCATTR_PAGE_NOTES"
msgid "Comments"
-msgstr "Taljochtingen"
+msgstr "Notysjes"
#. ZhGSA
#: sc/inc/globstr.hrc:326
@@ -17208,7 +17208,7 @@ msgstr "OLE objekten"
#: sc/inc/strings.hrc:154
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
-msgstr "Taljochtingen"
+msgstr "Notysjes"
#. 5UcFo
#: sc/inc/strings.hrc:155
@@ -28624,38 +28624,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Printer ôfmjittingen foar tekst opmaak brûke"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Markearje sele_ksje yn kolom-/rige kopteksten"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Ferwizingen fernije by sortearjen fan it berik fan de sellen"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Ynfier ynstellingen"
@@ -29030,7 +29036,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/sheetprintpage.ui:278
msgctxt "sheetprintpage|checkBTN_NOTES"
msgid "_Comments"
-msgstr "_Taljochtingen"
+msgstr "_Notysjes"
#. UJ7Js
#: sc/uiconfig/scalc/ui/sheetprintpage.ui:287
@@ -30164,7 +30170,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:112
msgctxt "sortoptionspage|includenotes"
msgid "Include boundary column(s) containing only comments"
-msgstr "Grins kolom(en) ynslette dy't allinne taljochtingen befetsje"
+msgstr "Grins kolom(en) ynslette dy't allinne notysjes befetsje"
#. NJ69D
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:127
@@ -31628,7 +31634,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/tpviewpage.ui:75
msgctxt "tpviewpage|annot"
msgid "_Comment indicator"
-msgstr "_Taljochting oantsjutter"
+msgstr "_Notysje oantsjutter"
#. gbz6Y
#: sc/uiconfig/scalc/ui/tpviewpage.ui:84
diff --git a/source/fy/sfx2/messages.po b/source/fy/sfx2/messages.po
index bdfa07a734a..296b651496c 100644
--- a/source/fy/sfx2/messages.po
+++ b/source/fy/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-10-17 08:35+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/fy/>\n"
@@ -1654,286 +1654,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Paniel slute"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Fêstsette"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Los meitsje"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Mear opsjes"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Sydbalke slute"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Sydbalke ynstellingen"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Oanpasse"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Standert ferhelje"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Sydbalke slute"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Bijekoer"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blauwe bôge"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blaudruk plannen"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Helderblau"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Klassyk read"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Boskfûgel"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Ynspiraasje"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Ljochten"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Oerfloedich grien"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Nachtblau"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natuer yllustraasje"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Poatlead"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Avensaasje"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Sinneûndergong"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Yntinsyf"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Gearfetting"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standert"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Modern saaklike brief sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Modern saaklike brief serif"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Nammekaartsje mei logo"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Ienfâldich"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Wiskje"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Alles wiskje"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Wachtwurd lingte"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "It wachtwurd dat jo ynfierd ha, feroarsaket ynteroperabiliteit swierrigens. Fier in wachtwurd yn dat koarter is dan 52 bytes of langer dan 55 bytes."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-klik om ferwizing te iepenjen: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Klik om de ferwizing te iepenjen: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(brûkt troch: %STYLELIST)"
@@ -4164,6 +4128,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Wiskje..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/fy/starmath/messages.po b/source/fy/starmath/messages.po
index 608c01dc35a..61b99f42511 100644
--- a/source/fy/starmath/messages.po
+++ b/source/fy/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-07-02 14:00+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/fy/>\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "of"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+ teken"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "- teken"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+- teken"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "-+ teken"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Booleaansk NET"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Optelling +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Oflûking -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Fermannichfâldiging (.)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Fermannichfâldiging (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Fermannichfâldiging (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Dieling (/)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Dieling (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Dieling (breuk)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Sirkele slash"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Sirkele punt"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Sirkele min"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Sirkele plus"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Tensor produkt"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Booleaansk EN"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Booleaansk OF"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "is lyk oan"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "is net lyk oan"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "is lytser dan"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "is grutter dan"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "is lytser dan of lyk oan"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "is grutter dan of lyk oan"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "is lytser dan of lyk oan"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "is grutter dan of lyk oan"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "is in soad minder dan"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "is in soad grutter dan"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "is fêststeld as"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "is kongruïnt oan"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "is ûngefear lyk oan"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "liket op"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "liket op of is lyk oan"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "is proporsjoneel mei"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "stiet leadrjocht op"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "is parallel oan"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Nei"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Komt oerien mei (links)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Komt oerien mei (rjochts)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "is elemint fan"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "is gjin elemint fan"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "befettet"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Ferieniging"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Krektlyk"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Ferskil"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Subset"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Subset of lyk oan"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Befettet"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Befettet of is lyk oan"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Gjin dielsamling"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Gjin dielsamling of is lyk oan"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Befettet net"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Befettet net of is lyk oan"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Absolute wearde"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Fakulteit"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Fjouwerkantswoartel"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N-de machtswoartel"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Eksponinsjele funksje"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Eksponinsjele funksje"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Natuerlike logaritme"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logaritme"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sinus"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Kosinus"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangens"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Kotangens"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Bôgesinus"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Bôgekosinus"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Bôgetangens"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Bôgekotangens"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Hyperboalyske sinus"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Hyperboalyske kosinus"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Hyperboalyske tangens"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Hyperboalyske kotangens"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Gebiet hyperboalyske sinus"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Gebiet hyperboalyske kosinus"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Gebiet hyperboalyske tangens"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Gebiet hyperboalyske kotangens"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Som"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Som ûnderskriuwen ûnder"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Som boppeskriuwen boppe"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Som boppe-/ûnderskriuwen"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Produkt"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Produkt ûnderskriuwen ûnder"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Produkt boppeskriuwen boppe"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Produkt boppe-/ûnderskriuwen"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Koprodukt"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Koprodukt ûnderskriuwen ûnder"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Koprodukt boppeskriuwen boppe"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Koprodukt boppe-/ûnderskriuwen"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Grins"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Grins ûnderskriuwen ûnder"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Grins boppeskriuwen boppe"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Grins boppe-/ûnderskriuwen"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Undergrins"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Undergrins fan ûnderskriuwen ûnder"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Undergrins fan boppeskriuwen boppe"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Undergrins fan ûnder/boppe skriuwen"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Boppegrins"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Boppegrins fan ûnderskriuwen ûnder"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Boppegrins fan boppeskriuwen boppe"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Boppegrins fan ûnder/boppe skriuwen"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Bestiet der"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Bestiet der net"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Foar alle"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Yntegraal"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Yntegraal ûnderskriuwen ûnder"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Yntegraal boppeskriuwen boppe"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Yntegraal ûnder/boppe skriuwen"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Dûbeld yntegraal"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Dûbeld yntegraal ûnderskriuwen ûnder"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Dûbeld yntegraal boppekriuwen boppe"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Dûbeld yntegraal boppe-/ûnderskriuwen ûnder"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Trijefâldich yntegraal"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Trijefâldich yntegraal ûnderskriuwen ûnder"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Trijefâldich yntegraal boppeskriuwen boppe"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Trijefâldich yntegraal ûnder-/boppeskriuwen"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Bôge yntegraal"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Bôge yntegraal ûnderskriuwen ûnder"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Bôge yntegraal boppekriuwen boppe"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Bôge yntegraal ûnder/boppe skriuwen"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Dûbeld bôge yntegraal"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Dûbeld bôge yntegraal ûnderskriuwen ûnder"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Dûbeld bôge yntegraal boppekriuwen boppe"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Dûbeld bôge yntegraal ûnder/boppe skriuwen"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Trijefâldich bôge yntegraal"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Trijefâldich bôge yntegraal ûnderskriuwen ûnder"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Trijefâldich bôge yntegraal boppeskriuwen boppe"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Trijefâldich bôge yntegraal ûnder-/boppeskriuwen"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Acute Aksint"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Streepke boppe"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Breve"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Omkearde circumflex"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Sirkel"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Punt"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Dûbele punt"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Trijefâldige punt"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Grave aksint"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Circumflex"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tilde"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Fektor pylk"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Harpoen"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Streek ûnder"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Streek boppe"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Streek troch"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Trochsichtich"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Fet"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Skeanprinte"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Grutte feroarje"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Lettertype feroarje"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Swart"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Blau"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Grien"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Read"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Griis"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Limoenkleur"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Kastanjebrún"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Marineblau"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Oliifgrien"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Pears"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Sulver"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Blaugrien/grienblau"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Giel"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "RGB"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Groep heakjes"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Rûne heakjes"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Fjouwerkante heakjes"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Dûbele fjouwerkante heakjes"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Akkoladen"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Punt heakjes"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Boppeste nivo"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Flier"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Inkelde linen"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Dûbele linen"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Operator heakjes"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Rûne heakjes (te skalen)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Fjouwerkante heakjes (te skalen)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Dûbele fjouwerkante heakjes (te skalen)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Akkolade (te skalen)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Punt heakjes (te skalen)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Plafond (te skalen)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Flier (te skalen)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Inkele linen (te skalen)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Dûbele linen (te skalen)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Operator heakjes (te skalen)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Evaluearre op"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Akkolade boppe (te skalen)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Akkolade ûnder (te skalen)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Underskriuwen rjochts"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Macht"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Underskriuwen links"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Underskriuwen links"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Underskriuwen ûnder"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Boppeskriuwen boppe"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Lytse iepening"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Leech"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Nije rigel"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Fertikale stapel (2 eleminten)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Fertikale stapel"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Matriks stapel"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Links rjochtsje"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Sintraal rjochtsje"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Rjochts rjochtsje"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Aleph"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Lege samling"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Reëel doel"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Imaginary diel"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Uneinich"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Foar in part"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Punten in it midden"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Punten nei boppe"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Punten nei ûnder"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Punten ûnder"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Punten fertikaal"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Keppelje"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Dieling (slash)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Dieling (backslash)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Dielt"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Dielt net"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Dûbele pylk links"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Dûbele pylk link en rjochts"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Dûbele pylk rjochts"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Samling fan natuerlike getallen"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Samling fan de hiele getallen"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Samling fan rasjonele getallen"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Samling fan reële getallen"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Samling fan de komplekse getallen"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Lange circumflex"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Lange tilde"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Lange fektor pylk"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Grutte harpoen"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h streep"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda streep"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Pylk nei links"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Pylk nei rjochts"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Pylk nei boppe"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Pylk nei ûnderen"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Gjin spaasje"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Foarôfgeand"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Foarôfgeand of lyk oan"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Foarôfgeand of lykweardich oan"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Opfolgjend"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Opfolgjend of lyk oan"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Opfolgjend of lykweardich oan"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Net foarôfgeand"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Net foarôfgeand"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Unêre/Binêre operatoaren"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Relaasjes"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Set bewurkingen"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funksjes"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operatoaren"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Attributen"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Heakjes"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Opmaak"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Oare"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Foarbylden"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Omtrek"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Lykweardigens fan massa en energy"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "De stelling fan Pythagoras"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Gaus-ferdieling"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standert"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Skeanprinte"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Fet"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "swart"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blau"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "grien"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "read"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "griis"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "Limoen"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "kastanjebrûn"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "navyblau"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliifgrien"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "pears"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "silver"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "grienblau"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "giel"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "ferbergje"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "grutte"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "letterype"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "links"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "Sintraal"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "rjochts"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Kommado's"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formule"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Dokumint wurdt bewarre..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Formule"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "FLATER : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Unferwachts teken"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Unferwachts teken"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' ferwacht"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' ferwacht"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' ferwacht"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' ferwacht"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Linker en rjochter symboalen komme net oerien"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans', of 'serif' ferwacht"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'grutte' folge troch in ûnferwachte teken"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Dûbele rjochting is net tastean"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Dûbele boppe-/ûnderskriuwen is net tastien"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' ferwacht"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Kleur fereaske"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RJOCHTS' ferwacht"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Ynhâld"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titel"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formule tekst"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Râ~nen"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Grutte"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "O~rizjinele grutte"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Oanpasse oan ~side"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skale"
diff --git a/source/fy/svtools/messages.po b/source/fy/svtools/messages.po
index ff803ca9566..92bb8c77726 100644
--- a/source/fy/svtools/messages.po
+++ b/source/fy/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-08-05 13:35+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/fy/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Ungedien meitsje: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Op 'e nij dwaan: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Werhelje: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Net opmakke tekst"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Net opmakke tekst (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bitmap ôfbylding (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Grafyske apparaat ynterfaasje meta triem (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Opmakke tekst (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Opmakke tekst (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME Tekening yndieling"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView bitmap/animation (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Tastân ynformaasje fan Svx ynterne keppeling"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME Keppeling (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape blêdwizer"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star server yndieling"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Start objekt yndieling"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet objekt"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Ynstekker objekt"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 objekt"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 objekt"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 objekt"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 objekt"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 objekt"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 objekt"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 objekt"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StartDraw objekt"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 objekt"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 objekt"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 objekt"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc objekt"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 objekt"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 objekt"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart objekt"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 objekt"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 objekt"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage objekt"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 objekt"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 objekt"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath objekt"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 objekt"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 objekt"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObjekt Paint objekt"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripte HyperText Markup Language (ynfâldige HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange yndieling 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange yndieling 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE keppeling)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word objekt"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet objekt"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office dokumint objekt"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notysjes dokumint ynformaasje"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx dokumint"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 objekt"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Ofbylding objekt"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer objekt"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web objekt"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Master objekt"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw objekt"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress objekt"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc objekt"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart objekt"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math objekt"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows meta triem"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Gegevensboarne objekt"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Gegevensboarne tabel"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL query"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 dialoochskerm"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Keppeling"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML yndieling sûnder taljochtingen"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objekt % koe net ynfoege wurde."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objekt fan triem % koe net ynfoege wurde."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Oare objekten"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Unbekende boarne"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1234 +501,1234 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeryk"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normaal"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Tekenset"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Wurdboek"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Streek"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikaal"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unykoade"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Tillefoanboek"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetysk (alfanumeryk earst)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetysk (alfanumeryk lêst)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeryk"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Wurdboek"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikaal"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Streek"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetysk (alfanumeryk earst, groepearre neffens lettergrepen)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetysk (alfanumeryk earst, groepearre neffens bylûden)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetysk (alfanumeryk lêst, groepearre neffens lettergrepen)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetysk (alfanumeryk lêst, groepearre neffens bylûden)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Licht"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Licht skeanprinte"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Algemien"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Skeanprinte"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Fet"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Fet skeanprinte"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Swart"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Swart skeanprinte"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Boek"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Fet skean"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Fersmelle"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Fersmelle fet"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Fersmelle fet skeanprinte"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Fersmelle fet skean"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Fersmelle skeanprinte"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Fersmelle skeanprinte"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Ekstra licht"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Ekstra licht skeanprinte"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Skeanprinte"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Semy fet"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Semy fet skeanprinte"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Dit lettertype sil brûkt wurde foar sawol jo printer as jo skerm."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Dit is in printer lettertype. De werjefte op it skerm kin ôfwike."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Dizze lettertype styl sil simulearre wurde of de meast yn de buert kommende styl sil brûkt wurde."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Dizze lettertype is net ynstallearre. It tichteby beskikber lettertype sil brûkt wurde."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Ferpleats nei begjin"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Ferpleats nei links"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Ferpleats nei rjochts"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Ferpleats nei ein"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Taheakje"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Horizontale liniaal"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Fertikale liniaal"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 bits drompelwearde"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bit roastere"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 bits griiswearde"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 bits kleur"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 bits griiswearde"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 bits kleur"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 bits wiere kleur"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "De ôfbylding brûkt ûngefear %1 KB ûnthâld."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "De ôfbylding hat ûngefear %1 KB fan ûnthâld nedich en de triem grutte is %2 KB."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "De triem grutte is %1 KB."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "host"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "poarte"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Oare CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Klear"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Skoftet"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Wachtsjen op wiskjen"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Dwaande"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Tarieden"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Wachtsje"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Opwaarmje"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Ferwurkjen"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Printe"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Net ferbûn"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Flater"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Unbekende tsjinner"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Papier klem"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Gjin papier"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Sels papier ynfiere"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Papier swierrigens"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O aktyf"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Postfak út is fol"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Leech toner stân"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Gjin toner"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Side wiskje"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Yngripen troch brûker needsaak"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Net genôch ûnthâld"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Kap iepen"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Enerzjybesparring modus"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Standert printer"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokuminten"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<gjint>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Bedriuw"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Ofdieling"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Foarnamme"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Namme"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Strjitte"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Lân"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Postkoade"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Wenplak"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titel"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posysje"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Oanhef"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Inisjalen"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Slotformule"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Telefoan privee"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Telefoan wurk"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Faks"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-post"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL-adres"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Notysje"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Brûker 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Brûker 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Brûker 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Brûker 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Provinsje"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Telefoan kantoar"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Semifoan"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Bûstillefoan"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Oare telefoan"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalinder"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Utnûgje"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "De ynstellingen fan %PRODUCTNAME binne feroare. Under %PRODUCTNAME - Foarkar - %PRODUCTNAME - Avansearre, selektearje jo de Java runtime environment dy't jo troch %PRODUCTNAME brûke wolle."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "De ynstellingen fan %PRODUCTNAME binne feroare. Under Ark - opsjes - %PRODUCTNAME - Avansearre, selektearje jo de Java runtime environment dy't jo troch %PRODUCTNAME brûke wolle."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME fereasket in Java Runtime environment (JRE) foar it útfieren fan dizze taak. De selektearre JRE is defekt. Selektearje in oare ferzje of ynstallearje in nije JRE en selektearje dizze ûnder %PRODUCTNAME - Foarkar - %PRODUCTNAME - Avansearre."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME fereasket in Java Runtime environment (JRE) foar it útfieren fan dizze taak. De selektearre JRE is defekt. Selektearje in oare ferzje of ynstallearje in nije JRE en selektearje dizze ûnder Ark - Opsjes - %PRODUCTNAME - Avansearre."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE Fereaske"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE selektearje"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "Defekte JRE"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Boarne koade"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Blêdwizer triem"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Ofbyldingen"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfiguraasje triem"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Programma"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Gegevensbank tabel"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Systeem triem"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word dokumint"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Help triem"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML dokumint"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Argyf triem"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Lochboek triem"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice gegevensbank"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 haad dokumint"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice byld"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekst triem"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Keppeling"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 sjabloan"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel dokumint"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel sjabloan"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batch triem"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Triem"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Map"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tekst dokumint"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Rekkenblêd"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presintaasje"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Tekening"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML dokumint"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Haad dokumint"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formule"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Gegevensbank"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 rekkenblêd sjabloan"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 tekenjen sjabloan"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 presintaasje sjabloan"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 tekstdokumint sjabloan"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Lokaal stasjon"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Diskette stasjon"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Kompaktskiif stasjon"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Netwurk ferbining"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint dokumint"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint sjabloan"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Ms PowerPoint presintaasje"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 Formule"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 Diagram"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 Tekening"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 Rekkenblêd"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 Presintaasje"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 Tekstdokumint"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 haad dokumint"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML dokumint"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument gegevensbank"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument Tekening"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument Formule"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument Haad dokumint"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument presintaasje"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument Rekkenblêd"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument Tekst"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument Rekkenblêd sjabloan"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument Tekening sjabloan"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument Presintaasje sjabloan"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument Tekst sjabloan"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME Tafoeging"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell staveringshifker"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen keppelteken"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes synonimenlist"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "List mei negearre wurden"
diff --git a/source/fy/svx/messages.po b/source/fy/svx/messages.po
index 296448c7dcc..2575dedfd72 100644
--- a/source/fy/svx/messages.po
+++ b/source/fy/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-08-04 11:14+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-18 15:35+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/fy/>\n"
"Language: fy\n"
@@ -644,7 +644,7 @@ msgstr "Objekt ferbiningen"
#: include/svx/strings.hrc:129
msgctxt "STR_ObjNameSingulCAPTION"
msgid "Callout"
-msgstr "Leginda"
+msgstr "Taljochting"
#. BdAJu
#: include/svx/strings.hrc:130
@@ -16332,11 +16332,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Joker_tekens"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_Taljochtingen"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/fy/sw/messages.po b/source/fy/sw/messages.po
index b863691c151..5d64f3f9dd4 100644
--- a/source/fy/sw/messages.po
+++ b/source/fy/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-08-05 13:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/fy/>\n"
"Language: fy\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562265656.000000\n"
#. v3oJv
@@ -80,31 +80,31 @@ msgstr "De tekst yndieling jout ekstra betsjutting."
#: sw/inc/AccessibilityCheckStrings.hrc:26
msgctxt "STR_NON_INTERACTIVE_FORMS"
msgid "An input form is not interactive."
-msgstr ""
+msgstr "In ynfier fjild is net ynteraktyf."
#. Z6sHT
#: sw/inc/AccessibilityCheckStrings.hrc:27
msgctxt "STR_FLOATING_TEXT"
msgid "Avoid floating text."
-msgstr ""
+msgstr "Gean swevende tekst út de wei."
#. 77aXx
#: sw/inc/AccessibilityCheckStrings.hrc:28
msgctxt "STR_HEADING_IN_TABLE"
msgid "Tables must not contain headings."
-msgstr ""
+msgstr "Tabellen meie gjin koppen ha."
#. LxJKy
#: sw/inc/AccessibilityCheckStrings.hrc:29
msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
-msgstr ""
+msgstr "Hâld nivo's fan de koppen oardere. Kop nivo %LEVEL_CURRENT% mei net efter %LEVEL_PREV% komme."
#. gkDzg
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr ""
+msgstr "Fontworks yn jo dokuminten mije. Sjoch as jo it brûke om in foarbyld of in oare sinleaze tekst sjen te litten."
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -614,56 +614,56 @@ msgstr "Nûmere alinea's"
#: sw/inc/inspectorproperties.hrc:31
msgctxt "RID_CHAR_DIRECTFORMAT"
msgid "Character Direct Formatting"
-msgstr ""
+msgstr "Teken: rjochtstreekse opmaak"
#. fYAUc
#: sw/inc/inspectorproperties.hrc:32
msgctxt "RID_PARA_DIRECTFORMAT"
msgid "Paragraph Direct Formatting"
-msgstr ""
+msgstr "Alinea: rjochtstreekse opmaak"
#. YUbUQ
#. Format names
#: sw/inc/inspectorproperties.hrc:35
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Color"
-msgstr ""
+msgstr "Kleur"
#. 5Btdu
#: sw/inc/inspectorproperties.hrc:36
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Border Distance"
-msgstr ""
+msgstr "Râne ôfstân"
#. sKjYr
#: sw/inc/inspectorproperties.hrc:37
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Inner Line Width"
-msgstr ""
+msgstr "Binnenste line breedte"
#. yrAyD
#: sw/inc/inspectorproperties.hrc:38
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Line Distance"
-msgstr ""
+msgstr "Line ôfstân"
#. jS4tt
#: sw/inc/inspectorproperties.hrc:39
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Line Style"
-msgstr ""
+msgstr "Line styl"
#. noNDX
#: sw/inc/inspectorproperties.hrc:40
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Line Width"
-msgstr ""
+msgstr "Line dikte"
#. MVL7X
#: sw/inc/inspectorproperties.hrc:41
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Outer Line Width"
-msgstr ""
+msgstr "Bûtenste line breedte"
#. c7Qfp
#: sw/inc/inspectorproperties.hrc:42
@@ -681,1285 +681,1285 @@ msgstr "Underste râne ôfstân"
#: sw/inc/inspectorproperties.hrc:44
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Break Type"
-msgstr ""
+msgstr "Ofbrek type"
#. kFMbA
#: sw/inc/inspectorproperties.hrc:45
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Category"
-msgstr ""
+msgstr "Kategory"
#. cd79Y
#: sw/inc/inspectorproperties.hrc:46
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Cell"
-msgstr ""
+msgstr "Sel"
#. JzYHd
#: sw/inc/inspectorproperties.hrc:47
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Auto Escapement"
-msgstr ""
+msgstr "Teken: automatyske remming"
#. sGjrW
#: sw/inc/inspectorproperties.hrc:48
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Auto Kerning"
-msgstr ""
+msgstr "Teken: Automatysk kerning"
#. jP3gx
#: sw/inc/inspectorproperties.hrc:49
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Auto Style Name"
-msgstr ""
+msgstr "Teken: Automatyske styl namme"
#. BB8yt
#: sw/inc/inspectorproperties.hrc:50
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Back Color"
-msgstr ""
+msgstr "Teken: eftergrûn kleur"
#. op3aQ
#: sw/inc/inspectorproperties.hrc:51
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Back Transparent"
-msgstr ""
+msgstr "Teken: eftergrûn trochsichtich"
#. a6CtM
#: sw/inc/inspectorproperties.hrc:52
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Border Distance"
-msgstr ""
+msgstr "Teken: râne ôfstân"
#. CGu8x
#: sw/inc/inspectorproperties.hrc:53
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Bottom Border"
-msgstr ""
+msgstr "Teken: râne ûnder"
#. s75ej
#: sw/inc/inspectorproperties.hrc:54
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Bottom Border Distance"
-msgstr ""
+msgstr "Teken: ôfstân ta râne ûnder"
#. pZwAM
#: sw/inc/inspectorproperties.hrc:55
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Case Map"
-msgstr ""
+msgstr "Teken: haadletter kaart"
#. AxVck
#: sw/inc/inspectorproperties.hrc:56
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Color"
-msgstr ""
+msgstr "Teken: kleur"
#. FBN8b
#: sw/inc/inspectorproperties.hrc:57
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Combine is On"
-msgstr ""
+msgstr "Teken: kombinearje is ynskeakele"
#. 5kpZt
#: sw/inc/inspectorproperties.hrc:58
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Combine Prefix"
-msgstr ""
+msgstr "Teken: foarheaksel kombinearje"
#. nq7ZN
#: sw/inc/inspectorproperties.hrc:59
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Combine Suffix"
-msgstr ""
+msgstr "Teken: efterheaksel kombinearje"
#. EYEqN
#: sw/inc/inspectorproperties.hrc:60
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Contoured"
-msgstr ""
+msgstr "Teken: kontoer"
#. ZBAH9
#: sw/inc/inspectorproperties.hrc:61
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Crossed Out"
-msgstr ""
+msgstr "Teken: trochstreke"
#. gABwu
#: sw/inc/inspectorproperties.hrc:62
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Difference Height"
-msgstr ""
+msgstr "Teken: hichteferskil"
#. ccULG
#: sw/inc/inspectorproperties.hrc:63
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Difference Height Asian"
-msgstr ""
+msgstr "Teken: hichteferskil Aziatysk"
#. LVABm
#: sw/inc/inspectorproperties.hrc:64
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Difference Height Complex"
-msgstr ""
+msgstr "Teken: hichteferskil CTL"
#. B2CTr
#: sw/inc/inspectorproperties.hrc:65
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Emphasis"
-msgstr ""
+msgstr "Teken: aksint"
#. bXxkA
#: sw/inc/inspectorproperties.hrc:66
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Escapement"
-msgstr ""
+msgstr "Teken: remming"
#. QikGB
#: sw/inc/inspectorproperties.hrc:67
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Escapement Height"
-msgstr ""
+msgstr "Teken: remming nivo"
#. t2UDu
#: sw/inc/inspectorproperties.hrc:68
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Flash"
-msgstr ""
+msgstr "Teken: knipperjend"
#. XXqBJ
#: sw/inc/inspectorproperties.hrc:69
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Char Set"
-msgstr ""
+msgstr "Teken: lettertype set"
#. ZonDP
#: sw/inc/inspectorproperties.hrc:70
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Char Set Asian"
-msgstr ""
+msgstr "Teken: lettertype set Aziatysk"
#. qrfZA
#: sw/inc/inspectorproperties.hrc:71
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Char Set Complex"
-msgstr ""
+msgstr "Teken: Lettertype set kompleks"
#. CGEVw
#: sw/inc/inspectorproperties.hrc:72
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Family"
-msgstr ""
+msgstr "Teken: lettertype famylje"
#. bYGhE
#: sw/inc/inspectorproperties.hrc:73
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Family Asian"
-msgstr ""
+msgstr "Teken: lettertype famylje Aziatysk"
#. 72RGq
#: sw/inc/inspectorproperties.hrc:74
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Family Complex"
-msgstr ""
+msgstr "Teken: lettertype famylje kompleks"
#. Ef9Rc
#: sw/inc/inspectorproperties.hrc:75
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Name"
-msgstr ""
+msgstr "Teken: lettertype namme"
#. EcTvq
#: sw/inc/inspectorproperties.hrc:76
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Name Asian"
-msgstr ""
+msgstr "Teken: lettertype namme Aziatysk"
#. jrLqT
#: sw/inc/inspectorproperties.hrc:77
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Name Complex"
-msgstr ""
+msgstr "Teken: lettertype namme kompleks"
#. WtA4i
#: sw/inc/inspectorproperties.hrc:78
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Pitch"
-msgstr ""
+msgstr "Teken: teken ôfstân"
#. kHGrk
#: sw/inc/inspectorproperties.hrc:79
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Pitch Asian"
-msgstr ""
+msgstr "Teken: teken ôfstân Aziatysk"
#. KVfXe
#: sw/inc/inspectorproperties.hrc:80
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Pitch Complex"
-msgstr ""
+msgstr "Teken: teken ôfstân kompleks"
#. CQWM3
#: sw/inc/inspectorproperties.hrc:81
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Style Name"
-msgstr ""
+msgstr "Teken: lettertype styl namme"
#. h6gAC
#: sw/inc/inspectorproperties.hrc:82
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Style Name Asian"
-msgstr ""
+msgstr "Teken: lettertype styl namme Aziatysk"
#. Tm4Rb
#: sw/inc/inspectorproperties.hrc:83
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Style Name Complex"
-msgstr ""
+msgstr "Teken: lettertype styl namme kompleks"
#. AQzKB
#: sw/inc/inspectorproperties.hrc:84
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Height"
-msgstr ""
+msgstr "Teken: hichte"
#. zqVBR
#: sw/inc/inspectorproperties.hrc:85
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Height Asian"
-msgstr ""
+msgstr "Teken: hichte Aziatysk"
#. FNnH2
#: sw/inc/inspectorproperties.hrc:86
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Height Complex"
-msgstr ""
+msgstr "Teken: hichte kompleks"
#. 3DzPD
#: sw/inc/inspectorproperties.hrc:87
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Hidden"
-msgstr ""
+msgstr "Teken: ferburgen"
#. TkovG
#: sw/inc/inspectorproperties.hrc:88
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Highlight"
-msgstr ""
+msgstr "Teken: beklammet"
#. T44dN
#: sw/inc/inspectorproperties.hrc:89
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Interoperability Grab Bag"
-msgstr ""
+msgstr "Teken: ynteroperabiliteit lok pûde"
#. EzwnG
#: sw/inc/inspectorproperties.hrc:90
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Kerning"
-msgstr ""
+msgstr "Teken: kerning"
#. CFpCB
#: sw/inc/inspectorproperties.hrc:91
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Left Border"
-msgstr ""
+msgstr "Teken: râne links"
#. ZZNYY
#: sw/inc/inspectorproperties.hrc:92
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Left Border Distance"
-msgstr ""
+msgstr "Teken: ôfstân ta râne links"
#. ZAkB6
#: sw/inc/inspectorproperties.hrc:93
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Locale"
-msgstr ""
+msgstr "Teken: lokale"
#. Ju3fR
#: sw/inc/inspectorproperties.hrc:94
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Locale Asian"
-msgstr ""
+msgstr "Teken: lokale Aziatysk"
#. sA8Rk
#: sw/inc/inspectorproperties.hrc:95
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Locale Complex"
-msgstr ""
+msgstr "Teken: lokale kompleks"
#. AAvjB
#: sw/inc/inspectorproperties.hrc:96
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char No Hyphenation"
-msgstr ""
+msgstr "Teken: gjin wurd ôfbrekking"
#. ioDYE
#: sw/inc/inspectorproperties.hrc:97
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Overline"
-msgstr ""
+msgstr "Teken: streep boppe"
#. GBMFT
#: sw/inc/inspectorproperties.hrc:98
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Overline Color"
-msgstr ""
+msgstr "Teken: kleur streep boppe"
#. 5y7T3
#: sw/inc/inspectorproperties.hrc:99
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Overline Has Color"
-msgstr ""
+msgstr "Teken: streep boppe hat kleur"
#. BEeWf
#: sw/inc/inspectorproperties.hrc:100
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Posture"
-msgstr ""
+msgstr "Teken: hâlding"
#. yTFRk
#: sw/inc/inspectorproperties.hrc:101
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Posture Asian"
-msgstr ""
+msgstr "Teken: hâlding Aziatysk"
#. 8WG25
#: sw/inc/inspectorproperties.hrc:102
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Posture Complex"
-msgstr ""
+msgstr "Teken: hâlding kompleks"
#. yuK3c
#: sw/inc/inspectorproperties.hrc:103
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Property Height"
-msgstr ""
+msgstr "Teken: objekt hichte"
#. j4w85
#: sw/inc/inspectorproperties.hrc:104
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Property Height Asian"
-msgstr ""
+msgstr "Teken: objekt hichte Aziatysk"
#. C5Ds3
#: sw/inc/inspectorproperties.hrc:105
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Property Height Complex"
-msgstr ""
+msgstr "Teken: objekt hichte kompleks"
#. ABhRa
#: sw/inc/inspectorproperties.hrc:106
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Relief"
-msgstr ""
+msgstr "Teken: reliëf"
#. BsxCo
#: sw/inc/inspectorproperties.hrc:107
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Right Border"
-msgstr ""
+msgstr "Teken: râne rjochts"
#. jrnRf
#: sw/inc/inspectorproperties.hrc:108
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Right Border Distance"
-msgstr ""
+msgstr "Teken: ôfstân ta râne rjochts"
#. UEpDe
#: sw/inc/inspectorproperties.hrc:109
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Rotation"
-msgstr ""
+msgstr "Teken: rotaasje"
#. jwSQF
#: sw/inc/inspectorproperties.hrc:110
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Rotation is Fit To Line"
-msgstr ""
+msgstr "Teken: rotaasje oanpast oan line"
#. cYG7T
#: sw/inc/inspectorproperties.hrc:111
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Scale Width"
-msgstr ""
+msgstr "Teken: skaal breedte"
#. WFuSd
#: sw/inc/inspectorproperties.hrc:112
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Shading Value"
-msgstr ""
+msgstr "Teken: skaad wearde"
#. 9sRCG
#: sw/inc/inspectorproperties.hrc:113
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Shadow Format"
-msgstr ""
+msgstr "Teken: skaad grutte"
#. tKjaF
#: sw/inc/inspectorproperties.hrc:114
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Shadowed"
-msgstr ""
+msgstr "Teken: skaad"
#. H9st9
#: sw/inc/inspectorproperties.hrc:115
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Strikeout"
-msgstr ""
+msgstr "Teken: trochstreekje"
#. zrLCN
#: sw/inc/inspectorproperties.hrc:116
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Style Name"
-msgstr ""
+msgstr "Teken: styl namme"
#. PN2pE
#: sw/inc/inspectorproperties.hrc:117
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Style Names"
-msgstr ""
+msgstr "Teken: styl nammen"
#. rq2fu
#: sw/inc/inspectorproperties.hrc:118
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Top Border"
-msgstr ""
+msgstr "Teken: râne boppe"
#. SNLiC
#: sw/inc/inspectorproperties.hrc:119
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Top Border Distance"
-msgstr ""
+msgstr "Teken: ôfstân ta râne boppe"
#. ZoAde
#: sw/inc/inspectorproperties.hrc:120
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Transparence"
-msgstr ""
+msgstr "Teken: trochsichtigens"
#. CAJEC
#: sw/inc/inspectorproperties.hrc:121
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Underline"
-msgstr ""
+msgstr "Teken: ûnderstreekje"
#. yGPLz
#: sw/inc/inspectorproperties.hrc:122
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Underline Color"
-msgstr ""
+msgstr "Teken: kleur ûnderstreekje"
#. HmfPF
#: sw/inc/inspectorproperties.hrc:123
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Underline Has Color"
-msgstr ""
+msgstr "Teken: ûnderstreking hat kleur"
#. QRCs4
#: sw/inc/inspectorproperties.hrc:124
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Weight"
-msgstr ""
+msgstr "Teken: dikte"
#. EwWk2
#: sw/inc/inspectorproperties.hrc:125
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Weight Asian"
-msgstr ""
+msgstr "Teken: dikte Aziatysk"
#. nxNQB
#: sw/inc/inspectorproperties.hrc:126
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Weight Complex"
-msgstr ""
+msgstr "Teken: dikte kompleks"
#. D4T2M
#: sw/inc/inspectorproperties.hrc:127
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Word Mode"
-msgstr ""
+msgstr "Teken: wurd modus"
#. z8NA6
#: sw/inc/inspectorproperties.hrc:128
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Continuing Previous Tree"
-msgstr ""
+msgstr "Trochgeand foarige beamstruktuer"
#. 4BCE7
#: sw/inc/inspectorproperties.hrc:129
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Display Name"
-msgstr ""
+msgstr "Namme sjen litte"
#. JXrsY
#: sw/inc/inspectorproperties.hrc:130
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Document Index"
-msgstr ""
+msgstr "Dokumint yndeks"
#. A3nea
#: sw/inc/inspectorproperties.hrc:131
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Document Index Mark"
-msgstr ""
+msgstr "Dokumint yndeks markearring"
#. XgFaZ
#: sw/inc/inspectorproperties.hrc:132
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Drop Cap Char Style Name"
-msgstr ""
+msgstr "inisjalen namme teken styl"
#. BtV5G
#: sw/inc/inspectorproperties.hrc:133
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Drop Cap Format"
-msgstr ""
+msgstr "Grutte inisjalen"
#. SnMZX
#: sw/inc/inspectorproperties.hrc:134
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Drop Cap Whole Word"
-msgstr ""
+msgstr "inisjalen foar hiele wurd"
#. LXhoV
#: sw/inc/inspectorproperties.hrc:135
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Endnote"
-msgstr ""
+msgstr "Einnoat"
#. YmvFY
#: sw/inc/inspectorproperties.hrc:136
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Background"
-msgstr ""
+msgstr "Eftergrûn ynfolje"
#. TvMCc
#: sw/inc/inspectorproperties.hrc:137
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap"
-msgstr ""
+msgstr "Bitmap folje"
#. GWWrC
#: sw/inc/inspectorproperties.hrc:138
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Logical Size"
-msgstr ""
+msgstr "Folling: bitmap logyske grutte"
#. r2Aif
#: sw/inc/inspectorproperties.hrc:139
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Mode"
-msgstr ""
+msgstr "Folling: bitmap modus"
#. FZtcW
#: sw/inc/inspectorproperties.hrc:140
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Name"
-msgstr ""
+msgstr "Folling: namme bitmap"
#. C4jU5
#: sw/inc/inspectorproperties.hrc:141
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Offset X"
-msgstr ""
+msgstr "Folling: bitmap Offset X"
#. w2UVD
#: sw/inc/inspectorproperties.hrc:142
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Offset Y"
-msgstr ""
+msgstr "Folling: bitmap Offset Y"
#. ZTKw7
#: sw/inc/inspectorproperties.hrc:143
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Position Offset X"
-msgstr ""
+msgstr "Folling: bitmap posysje Offset X"
#. BVBvB
#: sw/inc/inspectorproperties.hrc:144
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Position Offset Y"
-msgstr ""
+msgstr "Folling: Bitmap posysje Offset Y"
#. CzVxv
#: sw/inc/inspectorproperties.hrc:145
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Rectangle Point"
-msgstr ""
+msgstr "Folling: bitmap rjochthoeke punt"
#. GrmLm
#: sw/inc/inspectorproperties.hrc:146
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Size X"
-msgstr ""
+msgstr "Folling: bitmap grutte X"
#. stSMW
#: sw/inc/inspectorproperties.hrc:147
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Size Y"
-msgstr ""
+msgstr "Folling: bitmap grutte Y"
#. zJV5G
#: sw/inc/inspectorproperties.hrc:148
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Stretch"
-msgstr ""
+msgstr "Folling: bitmap útrekke"
#. HMq2D
#: sw/inc/inspectorproperties.hrc:149
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Tile"
-msgstr ""
+msgstr "Folling: bitmap tegel"
#. 6iSjs
#: sw/inc/inspectorproperties.hrc:150
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap URL"
-msgstr ""
+msgstr "Folling: bitmap URL"
#. Fd28G
#: sw/inc/inspectorproperties.hrc:151
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Color"
-msgstr ""
+msgstr "Fol kleur"
#. neFA2
#: sw/inc/inspectorproperties.hrc:152
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Color2"
-msgstr ""
+msgstr "Fol kleur 2"
#. 72i4Q
#: sw/inc/inspectorproperties.hrc:153
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Gradient"
-msgstr ""
+msgstr "Folje: kleurferrin"
#. uWcQT
#: sw/inc/inspectorproperties.hrc:154
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Gradient Name"
-msgstr ""
+msgstr "Folje: kleurferrin namme"
#. uazQm
#: sw/inc/inspectorproperties.hrc:155
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Gradient Step Count"
-msgstr ""
+msgstr "Folje: tal stappen kleurferrin"
#. bTjNu
#: sw/inc/inspectorproperties.hrc:156
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Hatch"
-msgstr ""
+msgstr "Folje: arsearje"
#. YCBtr
#: sw/inc/inspectorproperties.hrc:157
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Hatch Name"
-msgstr ""
+msgstr "Folje: Skeanlûk namme"
#. GbQPt
#: sw/inc/inspectorproperties.hrc:158
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Style"
-msgstr ""
+msgstr "Folje: styl"
#. tFYmZ
#: sw/inc/inspectorproperties.hrc:159
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Transparence"
-msgstr ""
+msgstr "Folje: trochsichtigens"
#. H9v5s
#: sw/inc/inspectorproperties.hrc:160
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Transparence Gradient"
-msgstr ""
+msgstr "Folje: trochsichtigens kleurferrin"
#. pZH4P
#: sw/inc/inspectorproperties.hrc:161
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Transparence Gradient Name"
-msgstr ""
+msgstr "Folje: trochsichtigens kleurferrin namme"
#. WqmBo
#: sw/inc/inspectorproperties.hrc:162
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Follow Style"
-msgstr ""
+msgstr "Styl folgje"
#. 32Vgt
#: sw/inc/inspectorproperties.hrc:163
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Footnote"
-msgstr ""
+msgstr "Fuotnoat"
#. NuA4J
#: sw/inc/inspectorproperties.hrc:164
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Hidden"
-msgstr ""
+msgstr "Ferburgen"
#. TwGWU
#: sw/inc/inspectorproperties.hrc:165
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Hyperlink Events"
-msgstr ""
+msgstr "Ferwizing barren"
#. XU6P3
#: sw/inc/inspectorproperties.hrc:166
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Hyperlink Name"
-msgstr ""
+msgstr "Ferwizing namme"
#. qRBxH
#: sw/inc/inspectorproperties.hrc:167
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Hyperlink Target"
-msgstr ""
+msgstr "Ferwizing doel"
#. BoFLZ
#: sw/inc/inspectorproperties.hrc:168
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Hyperlink URL"
-msgstr ""
+msgstr "Ferwizing URL-adres"
#. CbvLt
#: sw/inc/inspectorproperties.hrc:169
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Is Auto Update"
-msgstr ""
+msgstr "is Auto fernije"
#. DYXxe
#: sw/inc/inspectorproperties.hrc:170
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Is Physical"
-msgstr ""
+msgstr "Is psychysk"
#. AdAo8
#: sw/inc/inspectorproperties.hrc:171
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Left Border"
-msgstr ""
+msgstr "Linker râne"
#. tAqBG
#: sw/inc/inspectorproperties.hrc:172
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Left Border Distance"
-msgstr ""
+msgstr "Linker râne ôfstân"
#. 9cGvH
#: sw/inc/inspectorproperties.hrc:173
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "List Auto Format"
-msgstr ""
+msgstr "List: Auto yndieling"
#. fBeTS
#: sw/inc/inspectorproperties.hrc:174
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "List Id"
-msgstr ""
+msgstr "List: ID"
#. b73Zq
#: sw/inc/inspectorproperties.hrc:175
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "List Label String"
-msgstr ""
+msgstr "List: etiket set"
#. n9DQD
#: sw/inc/inspectorproperties.hrc:176
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Nested Text Content"
-msgstr ""
+msgstr "Neste tekst ynhâld"
#. AzBDm
#: sw/inc/inspectorproperties.hrc:177
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Numbering is Number"
-msgstr ""
+msgstr "Nûmering is nûmer"
#. WsqfF
#: sw/inc/inspectorproperties.hrc:178
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Numbering Level"
-msgstr ""
+msgstr "Nûmering nivo"
#. CEkBY
#: sw/inc/inspectorproperties.hrc:179
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Numbering Rules"
-msgstr ""
+msgstr "Nûmering regels"
#. nTMoh
#: sw/inc/inspectorproperties.hrc:180
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Numbering Start Value"
-msgstr ""
+msgstr "Nûmering begjin wearde"
#. KYbBB
#: sw/inc/inspectorproperties.hrc:181
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Numbering Style Name"
-msgstr ""
+msgstr "Nûmering styl namme"
#. zrVDM
#: sw/inc/inspectorproperties.hrc:182
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Outline Content Visible"
-msgstr ""
+msgstr "Oersicht ynhâld sichtber"
#. NNuo4
#: sw/inc/inspectorproperties.hrc:183
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Outline Level"
-msgstr ""
+msgstr "Oersicht nivo"
#. syTbJ
#: sw/inc/inspectorproperties.hrc:184
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Page Desc Name"
-msgstr ""
+msgstr "Side: namme"
#. wLGct
#: sw/inc/inspectorproperties.hrc:185
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Page Number Offset"
-msgstr ""
+msgstr "Side: nûmer ôfstân"
#. ryHzy
#: sw/inc/inspectorproperties.hrc:186
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Page Style Name"
-msgstr ""
+msgstr "Side: styl namme"
#. UyyB6
#: sw/inc/inspectorproperties.hrc:187
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Rsid"
-msgstr ""
+msgstr "Alinea: RSID"
#. xqcEV
#: sw/inc/inspectorproperties.hrc:188
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Adjust"
-msgstr ""
+msgstr "Alinea: oanpasse"
#. SyTxG
#: sw/inc/inspectorproperties.hrc:189
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Auto Style Name"
-msgstr ""
+msgstr "Alinea: Automatyske styl namme"
#. WHaym
#: sw/inc/inspectorproperties.hrc:190
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Color"
-msgstr ""
+msgstr "Alinea: eftergrûn kleur"
#. uKmB5
#: sw/inc/inspectorproperties.hrc:191
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Graphic"
-msgstr ""
+msgstr "Alinea: eftergrûn ôfbylding"
#. f6RGz
#: sw/inc/inspectorproperties.hrc:192
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Graphic Filter"
-msgstr ""
+msgstr "Alinea: eftergrûn ôfbylding filterje"
#. Yy5RY
#: sw/inc/inspectorproperties.hrc:193
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Graphic Location"
-msgstr ""
+msgstr "Alinea: lokaasje eftergrûn ôfbylding"
#. MLDdK
#: sw/inc/inspectorproperties.hrc:194
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Graphic URL"
-msgstr ""
+msgstr "Alinea: eftergrûn ôfbylding URL"
#. HkGF3
#: sw/inc/inspectorproperties.hrc:195
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Transparent"
-msgstr ""
+msgstr "Alinea: eftergrûn trochsichtich"
#. TuYLo
#: sw/inc/inspectorproperties.hrc:196
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Bottom Margin"
-msgstr ""
+msgstr "Alinea: ûnder marzje"
#. r5BAb
#: sw/inc/inspectorproperties.hrc:197
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Bottom Margin Relative"
-msgstr ""
+msgstr "Alinea: relative ûnder marzje"
#. rCWLX
#: sw/inc/inspectorproperties.hrc:198
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Chapter Numbering Level"
-msgstr ""
+msgstr "Alinea: haadstik nûmering nivo"
#. GLxXC
#: sw/inc/inspectorproperties.hrc:199
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Conditional Style Name"
-msgstr ""
+msgstr "Alinea: styl namme mei betingsten"
#. AFGoP
#: sw/inc/inspectorproperties.hrc:200
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Context Margin"
-msgstr ""
+msgstr "Alinea: kontekst marzje"
#. dpsFJ
#: sw/inc/inspectorproperties.hrc:201
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Expand Single Word"
-msgstr ""
+msgstr "Alinea: inkeld wurd útwreidzje"
#. iD2DL
#: sw/inc/inspectorproperties.hrc:202
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para First Line Indent"
-msgstr ""
+msgstr "Alinea: earste rigel ynspringe"
#. wCMnF
#: sw/inc/inspectorproperties.hrc:203
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para First Line Indent Relative"
-msgstr ""
+msgstr "Alinea: earste rigel ynspringe automatysk"
#. z47wS
#: sw/inc/inspectorproperties.hrc:204
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Hyphenation Max Hyphens"
-msgstr ""
+msgstr "Alinea: maksimale ôfbrek streepkes"
#. nFxKY
#: sw/inc/inspectorproperties.hrc:205
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Hyphenation Max Leading Chars"
-msgstr ""
+msgstr "Alinea: tal tekens oan begjin rigel"
#. agdzD
#: sw/inc/inspectorproperties.hrc:206
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Hyphenation Max Trailing Chars"
-msgstr ""
+msgstr "Alinea: tal tekens oan ein rigel"
#. hj7Fp
#: sw/inc/inspectorproperties.hrc:207
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Hyphenation No Caps"
-msgstr ""
+msgstr "Alinea: wurden yn HAADLETTERS net ôfbrekke"
#. 4bemD
#: sw/inc/inspectorproperties.hrc:208
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Interop Grab Bag"
-msgstr ""
+msgstr "Alinea: ynteroperabiliteit lok pûde"
#. fCGA4
#: sw/inc/inspectorproperties.hrc:209
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Auto First Line Indent"
-msgstr ""
+msgstr "Alinea: ynsprong earste rigel is automatysk"
#. Q68Bx
#: sw/inc/inspectorproperties.hrc:210
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Character Distance"
-msgstr ""
+msgstr "Alinea: is teken ôfstân"
#. FGVAd
#: sw/inc/inspectorproperties.hrc:211
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Connect Border"
-msgstr ""
+msgstr "Alinea: is râne ferbine"
#. tBy9h
#: sw/inc/inspectorproperties.hrc:212
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Forbidden Rules"
-msgstr ""
+msgstr "Alinea: is ferbeane regels"
#. yZZSA
#: sw/inc/inspectorproperties.hrc:213
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Hanging Punctuation"
-msgstr ""
+msgstr "Alinea: is ynterpunksje"
#. dDgrE
#: sw/inc/inspectorproperties.hrc:214
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Hyphenation"
-msgstr ""
+msgstr "Alinea: is wurdôfbrekking"
#. mHDWE
#: sw/inc/inspectorproperties.hrc:215
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Numbering Restart"
-msgstr ""
+msgstr "Alinea:is nûmering op 'e nij starte"
#. Mnm2C
#: sw/inc/inspectorproperties.hrc:216
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Keep Together"
-msgstr ""
+msgstr "Alinea: by inoar hâlde"
#. 8Z5AP
#: sw/inc/inspectorproperties.hrc:217
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Last Line Adjust"
-msgstr ""
+msgstr "Alinea: lêste rigel oanpasse"
#. 6CaHh
#: sw/inc/inspectorproperties.hrc:218
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Left Margin"
-msgstr ""
+msgstr "Alinea: linker marzje"
#. ZDnZk
#: sw/inc/inspectorproperties.hrc:219
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Left Margin Relative"
-msgstr ""
+msgstr "Alinea: relative linker marzje"
#. G43XB
#: sw/inc/inspectorproperties.hrc:220
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Line Number Count"
-msgstr ""
+msgstr "Alinea: tal rigel nûmers"
#. EjnTM
#: sw/inc/inspectorproperties.hrc:221
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Line Number Start Value"
-msgstr ""
+msgstr "Alinea: begjinwearde rigel nûmer"
#. eo9RR
#: sw/inc/inspectorproperties.hrc:222
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Line Spacing"
-msgstr ""
+msgstr "Alinea: rigelôfstân"
#. kczeF
#: sw/inc/inspectorproperties.hrc:223
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Orphans"
-msgstr ""
+msgstr "Alinea: wezen"
#. FmuG6
#: sw/inc/inspectorproperties.hrc:224
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Register Mode Active"
-msgstr ""
+msgstr "Alinea: registraasje modus aktyf"
#. Kwp9H
#: sw/inc/inspectorproperties.hrc:225
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Right Margin"
-msgstr ""
+msgstr "Alinea: rjochter marzje"
#. r2ao2
#: sw/inc/inspectorproperties.hrc:226
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Right Margin Relative"
-msgstr ""
+msgstr "Alinea: relative rjochter marzje"
#. FC9mA
#: sw/inc/inspectorproperties.hrc:227
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Shadow Format"
-msgstr ""
+msgstr "Alinea: skaad styl"
#. VXwD2
#: sw/inc/inspectorproperties.hrc:228
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Split"
-msgstr ""
+msgstr "Alinea: spjalte"
#. gXoCF
#: sw/inc/inspectorproperties.hrc:229
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Style Name"
-msgstr ""
+msgstr "Alinea: styl namme"
#. sekLv
#: sw/inc/inspectorproperties.hrc:230
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Tab Stops"
-msgstr ""
+msgstr "Alinea: tab stops"
#. reW9Y
#: sw/inc/inspectorproperties.hrc:231
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Top Margin"
-msgstr ""
+msgstr "Alinea: boppe marzje"
#. wHuj4
#: sw/inc/inspectorproperties.hrc:232
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Top Margin Relative"
-msgstr ""
+msgstr "Alinea: relative boppe marzje"
#. pUjFj
#: sw/inc/inspectorproperties.hrc:233
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para User Defined Attributes"
-msgstr ""
+msgstr "Alinea: brûker definiearre attributen"
#. WvA9C
#: sw/inc/inspectorproperties.hrc:234
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Vertical Alignment"
-msgstr ""
+msgstr "Alinea: fertikale rjochting"
#. u8Jc6
#: sw/inc/inspectorproperties.hrc:235
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Widows"
-msgstr ""
+msgstr "Alinea: finsters"
#. cdw2Q
#: sw/inc/inspectorproperties.hrc:236
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Reference Mark"
-msgstr ""
+msgstr "Referinsje markearring"
#. NDEck
#: sw/inc/inspectorproperties.hrc:237
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Right Border"
-msgstr ""
+msgstr "Rjochter râne"
#. 6rs9g
#: sw/inc/inspectorproperties.hrc:238
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Right Border Distance"
-msgstr ""
+msgstr "Rjochter râne ôfstân"
#. XYhSX
#: sw/inc/inspectorproperties.hrc:239
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Rsid"
-msgstr ""
+msgstr "Rsid"
#. Uoosp
#: sw/inc/inspectorproperties.hrc:240
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Ruby Adjust"
-msgstr ""
+msgstr "Robyn: hâlding"
#. 3WwCU
#: sw/inc/inspectorproperties.hrc:241
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Ruby Char Style Name"
-msgstr ""
+msgstr "Robyn: teken styl namme"
#. DqMAX
#: sw/inc/inspectorproperties.hrc:242
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Ruby is Above"
-msgstr ""
+msgstr "Robyn: is boppe"
#. w8jgs
#: sw/inc/inspectorproperties.hrc:243
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Ruby Position"
-msgstr ""
+msgstr "Robyn: posysje"
#. ZREEa
#: sw/inc/inspectorproperties.hrc:244
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Ruby Text"
-msgstr ""
+msgstr "Robyn: tekst"
#. tJEtt
#: sw/inc/inspectorproperties.hrc:245
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Snap to Grid"
-msgstr ""
+msgstr "Kleevje oan roaster"
#. oDk6s
#: sw/inc/inspectorproperties.hrc:246
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Style Interop Grab Bag"
-msgstr ""
+msgstr "Styl: ynteroperabiliteit lok pûde"
#. PV65u
#: sw/inc/inspectorproperties.hrc:247
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Text Field"
-msgstr ""
+msgstr "Tekst: fjild"
#. a6k8F
#: sw/inc/inspectorproperties.hrc:248
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Text Frame"
-msgstr ""
+msgstr "Tekst: ramt"
#. CNyuR
#: sw/inc/inspectorproperties.hrc:249
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Text Paragraph"
-msgstr ""
+msgstr "Tekst: alinea"
#. nTTEM
#: sw/inc/inspectorproperties.hrc:250
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Text Section"
-msgstr ""
+msgstr "Tekst: diel"
#. VCADG
#: sw/inc/inspectorproperties.hrc:251
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Text Table"
-msgstr ""
+msgstr "Tekst: tabel"
#. hDjMA
#: sw/inc/inspectorproperties.hrc:252
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Text User Defined Attributes"
-msgstr ""
+msgstr "Tekst: brûker definiearre attributen"
#. ZG6rS
#: sw/inc/inspectorproperties.hrc:253
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Top Border"
-msgstr ""
+msgstr "Boppe râne"
#. 6qBJD
#: sw/inc/inspectorproperties.hrc:254
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Top Border Distance"
-msgstr ""
+msgstr "Boppe râne ôfstân"
#. RwtPi
#: sw/inc/inspectorproperties.hrc:255
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Unvisited Char Style Name"
-msgstr ""
+msgstr "Unbesochte teken styl namme"
#. xcMEF
#: sw/inc/inspectorproperties.hrc:256
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Visited Char Style Name"
-msgstr ""
+msgstr "Besochte teken styl namme"
#. YiBym
#: sw/inc/inspectorproperties.hrc:257
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Writing Mode"
-msgstr ""
+msgstr "Skriuw modus"
#. QBR3s
#: sw/inc/mmaddressblockpage.hrc:27
@@ -2427,7 +2427,7 @@ msgstr "Tekst blok"
#: sw/inc/strings.hrc:66
msgctxt "STR_POOLCOLL_TEXT_IDENT"
msgid "First Line Indent"
-msgstr "Earste regel ynsprong"
+msgstr "Earste rigel ynsprong"
#. ReVdk
#: sw/inc/strings.hrc:67
@@ -2895,13 +2895,13 @@ msgstr "Ofbylding"
#: sw/inc/strings.hrc:144
msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS"
msgid "Addressee"
-msgstr ""
+msgstr "Adressearre"
#. PvoVz
#: sw/inc/strings.hrc:145
msgctxt "STR_POOLCOLL_SEND_ADDRESS"
msgid "Sender"
-msgstr ""
+msgstr "Stjoerder"
#. AChE4
#: sw/inc/strings.hrc:146
@@ -3197,7 +3197,7 @@ msgstr "Rjochter side"
#: sw/inc/strings.hrc:196
msgctxt "STR_POOLPAGE_ENVELOPE"
msgid "Envelope"
-msgstr ""
+msgstr "Slúf"
#. jGSGz
#: sw/inc/strings.hrc:197
@@ -5750,49 +5750,49 @@ msgstr "Ut"
#: sw/inc/strings.hrc:646
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Klik om de sichtberens fan de ynhâld om te setten"
#. 44jEc
#: sw/inc/strings.hrc:647
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
-msgstr ""
+msgstr "rjochts klik om sub nivo's mei te nimmen"
#. kDbnu
#: sw/inc/strings.hrc:648
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Klik om de sichtberens fan de ynhâld om te setten"
#. rkD8H
#: sw/inc/strings.hrc:649
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
-msgstr ""
+msgstr "rjochts klik om sub nivo's mei te nimmen"
#. JZgRD
#: sw/inc/strings.hrc:650
msgctxt "STR_OUTLINE_CONTENT"
msgid "Outline Content Visibility"
-msgstr ""
+msgstr "Oersicht ynhâld sichtber"
#. oBH6y
#: sw/inc/strings.hrc:651
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
-msgstr ""
+msgstr "Wikselje"
#. 7UQPv
#: sw/inc/strings.hrc:652
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Show All"
-msgstr ""
+msgstr "Alles sjen litte"
#. ZUuCQ
#: sw/inc/strings.hrc:653
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Hide All"
-msgstr ""
+msgstr "Alles ferbergje"
#. 9Fipd
#: sw/inc/strings.hrc:655
@@ -8012,13 +8012,13 @@ msgstr "Gjin koptekst"
#: sw/inc/strings.hrc:1084
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
-msgstr ""
+msgstr "Optimaal"
#. HEuGy
#: sw/inc/strings.hrc:1085
msgctxt "STR_SURROUND_NONE"
msgid "None"
-msgstr ""
+msgstr "Gjint"
#. 4tA4q
#: sw/inc/strings.hrc:1086
@@ -8030,19 +8030,19 @@ msgstr "Troch"
#: sw/inc/strings.hrc:1087
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
-msgstr ""
+msgstr "Parallel"
#. hyEQ5
#: sw/inc/strings.hrc:1088
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
-msgstr ""
+msgstr "Derfoar"
#. bGBtQ
#: sw/inc/strings.hrc:1089
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
-msgstr ""
+msgstr "Dêrnei"
#. SrG3D
#: sw/inc/strings.hrc:1090
@@ -8138,13 +8138,13 @@ msgstr "Underkant fan rigel"
#: sw/inc/strings.hrc:1105
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
-msgstr ""
+msgstr "Side rigel ôfstân"
#. Cui3U
#: sw/inc/strings.hrc:1106
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
-msgstr ""
+msgstr "Gjin side rigel ôfstân"
#. 4RL9X
#: sw/inc/strings.hrc:1107
@@ -8252,7 +8252,7 @@ msgstr "rigels net telle"
#: sw/inc/strings.hrc:1124
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
-msgstr "tellen regels op 'e nij begjinne by: "
+msgstr "tellen rigels op 'e nij begjinne by: "
#. 7Q8qC
#: sw/inc/strings.hrc:1125
@@ -9776,13 +9776,13 @@ msgstr "Yn de gearfetting ferskynt it selektearre tal alinea's út de opnommen o
#: sw/uiconfig/swriter/ui/abstractdialog.ui:170
msgctxt "abstractdialog|extended_tip|outlines"
msgid "Enter the extent of the outline levels to be copied to the new document."
-msgstr ""
+msgstr "Fier hjir yn hoefolle oersicht nivo's nei it nije dokumint kopiearre moatte wurde."
#. ELZAp
#: sw/uiconfig/swriter/ui/abstractdialog.ui:187
msgctxt "abstractdialog|extended_tip|paras"
msgid "Specify the maximum number of consecutive paragraphs to be included in the AutoAbstract document after each heading."
-msgstr ""
+msgstr "Jou it maksimum tal oanienskeakele alinea's oan, nei elke kop, om oer te nimmen yn it AutoGearfetting dokumint."
#. G6YVz
#: sw/uiconfig/swriter/ui/abstractdialog.ui:204
@@ -9794,7 +9794,7 @@ msgstr "Eigenskippen"
#: sw/uiconfig/swriter/ui/abstractdialog.ui:229
msgctxt "abstractdialog|extended_tip|AbstractDialog"
msgid "Copies the headings and a number of subsequent paragraphs in the active document to a new AutoAbstract text document. An AutoAbstract is useful for obtaining an overview of long documents."
-msgstr ""
+msgstr "Kopiearret de koppen en in tal dêrop folgjende alinea's yn it aktive dokumint nei in nije AutoGearfetting tekst dokumint. In AutoGearfetting is brûkber om in oersicht fan lange dokuminten te krijen."
#. rFSF5
#: sw/uiconfig/swriter/ui/addentrydialog.ui:8
@@ -9830,7 +9830,7 @@ msgstr "Adres _eleminten"
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:173
msgctxt "addressblockdialog|extended_tip|addresses"
msgid "Select a field and drag the field to the other list."
-msgstr ""
+msgstr "Selektearje in fjild en sleep it nei de oare list."
#. mQ55L
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:189
@@ -9848,7 +9848,7 @@ msgstr "Omheech ferpleatse"
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:217
msgctxt "addressblockdialog|extended_tip|up"
msgid "Select an item in the list and click an arrow button to move the item."
-msgstr ""
+msgstr "Selektearje in item yn de list en klik op in pylk toets om it item te ferpleatsen."
#. WaKFt
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:231
@@ -9860,7 +9860,7 @@ msgstr "Ferpleats nei links"
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:235
msgctxt "addressblockdialog|extended_tip|left"
msgid "Select an item in the list and click an arrow button to move the item."
-msgstr ""
+msgstr "Selektearje in item yn de list en klik op in pylk toets om it item te ferpleatsen."
#. 8SHCH
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:249
@@ -9872,7 +9872,7 @@ msgstr "Ferpleats nei rjochts"
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:253
msgctxt "addressblockdialog|extended_tip|right"
msgid "Select an item in the list and click an arrow button to move the item."
-msgstr ""
+msgstr "Selektearje in item yn de list en klik op in pylk toets om it item te ferpleatsen."
#. 3qGSH
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:267
@@ -9884,7 +9884,7 @@ msgstr "Omleech ferpleatse"
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:271
msgctxt "addressblockdialog|extended_tip|down"
msgid "Select an item in the list and click an arrow button to move the item."
-msgstr ""
+msgstr "Selektearje in item yn de list en klik op in pylk toets om it item te ferpleatsen."
#. VeEDs
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:305
@@ -9902,19 +9902,19 @@ msgstr "2. De oanhef oanpasse"
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:342
msgctxt "addressblockdialog|extended_tip|custom"
msgid "Select a value from the list for the salutation and the punctuation mark fields."
-msgstr ""
+msgstr "Selektearje in wearde út de list foar de oanhef- en de punktuaasje fjilden."
#. X4p3v
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:373
msgctxt "addressblockdialog|extended_tip|addressdest"
msgid "Arrange the fields by drag-and-drop or use the arrow buttons."
-msgstr ""
+msgstr "Oarderje de fjilden mei slepe en delsette, of brûk de pylk toetsen."
#. ZJVnT
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:406
msgctxt "addressblockdialog|extended_tip|addrpreview"
msgid "Displays a preview of the first database record with the current salutation layout."
-msgstr ""
+msgstr "Lit in foarbyld sjen fan it earste gegevensbank record nei de aktive yndieling foar de oanhef."
#. HQ7GB
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:431
@@ -9926,13 +9926,13 @@ msgstr "Ut it adres weismite"
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:435
msgctxt "addressblockdialog|extended_tip|fromaddr"
msgid "Removes the selected field from the other list."
-msgstr ""
+msgstr "Sil it selektearre fjild fan de oare list wiskje."
#. GzXkX
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:452
msgctxt "addressblockdialog|extended_tip|toaddr"
msgid "Adds the selected field from the list of salutation elements to the other list. You can add a field more than once."
-msgstr ""
+msgstr "Sil it selektearre fjild op de list oanhef eleminten oan de oare list taheakje. Jo kinne in fjild meardere kearen taheakje."
#. WAm7A
#: sw/uiconfig/swriter/ui/alreadyexistsdialog.ui:7
@@ -9980,13 +9980,13 @@ msgstr "Oplossing ôfbrekke"
#: sw/uiconfig/swriter/ui/annotationmenu.ui:42
msgctxt "annotationmenu|resolvethread"
msgid "Resolve Thread"
-msgstr ""
+msgstr "Tried oplost"
#. gE5Sy
#: sw/uiconfig/swriter/ui/annotationmenu.ui:50
msgctxt "annotationmenu|unresolvethread"
msgid "Unresolve Thread"
-msgstr ""
+msgstr "Net oploste tried"
#. qAYam
#: sw/uiconfig/swriter/ui/annotationmenu.ui:58
@@ -9998,7 +9998,7 @@ msgstr "Taljochting _wiskje"
#: sw/uiconfig/swriter/ui/annotationmenu.ui:66
msgctxt "annotationmenu|deletethread"
msgid "Delete _Comment Thread"
-msgstr ""
+msgstr "Notysje w_iskje fan tried"
#. z2NAS
#: sw/uiconfig/swriter/ui/annotationmenu.ui:74
@@ -10052,13 +10052,13 @@ msgstr "_Alinea ein:"
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:159
msgctxt "asciifilterdialog|extended_tip|charset"
msgid "Specifies the character set of the file for export or import."
-msgstr ""
+msgstr "Tsjut de tekenset fan de triem oan foar eksport of ymport."
#. gabV8
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:175
msgctxt "asciifilterdialog|extended_tip|font"
msgid "By setting a default font, you specify that the text should be displayed in a specific font. The default fonts can only be selected when importing."
-msgstr ""
+msgstr "Troch in standert lettertype te selektearjen, jouwe jo oan dat de tekst yn in spesifisearre lettertype werjûn moat wurde. De standert lettertype kin allinne by it ymportearjen selektearre wurde."
#. Vd7Uv
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:192
@@ -10070,7 +10070,7 @@ msgstr "_CR & LF"
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:202
msgctxt "asciifilterdialog|extended_tip|crlf"
msgid "Produces a \"Carriage Return\" and a \"Linefeed\". This option is the default."
-msgstr ""
+msgstr "Dizze opsje jout in \"carriage Return\" en in \"Linefeed\". Dizze opsje is standert."
#. WuYz5
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:214
@@ -10082,7 +10082,7 @@ msgstr "C_R"
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:225
msgctxt "asciifilterdialog|extended_tip|cr"
msgid "Produces a \"Carriage Return\" as the paragraph break."
-msgstr ""
+msgstr "Jout in \"Carriage Return\" as de alinea ôfbrekking."
#. 9ckGF
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:237
@@ -10094,13 +10094,13 @@ msgstr "_LF"
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:248
msgctxt "asciifilterdialog|extended_tip|lf"
msgid "Produces a \"Linefeed\" as the paragraph break."
-msgstr ""
+msgstr "Jout in \"Linefeed\" as de alinea ôfbrekking."
#. jWeWy
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:278
msgctxt "asciifilterdialog|extended_tip|language"
msgid "Specifies the language of the text, if this has not already been defined. This setting is only available when importing."
-msgstr ""
+msgstr "Jou de taal fan de tekst oan, as dit noch net fêststeld is. Dizze ynstelling is allinne beskikber by it ymportearjen."
#. BMvpA
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:289
@@ -10136,7 +10136,7 @@ msgstr "De fjilden fan jo gegevensboarne oanwize, sadat se mei de adres eleminte
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:160
msgctxt "assignfieldsdialog|extended_tip|FIELDS"
msgid "Select a field name in your database for each logical address element."
-msgstr ""
+msgstr "Selektearje in fjild namme yn jo gegevensbank foar elk logysk adres elemint."
#. B8UUd
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:191
@@ -10166,13 +10166,13 @@ msgstr "Adres blok foarbyld"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:269
msgctxt "assignfieldsdialog|extended_tip|PREVIEW"
msgid "Displays a preview of the values of the first data record."
-msgstr ""
+msgstr "Lit in foarbyld sjen fan de wearden fan de earste gegevens record."
#. VHDRJ
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:302
msgctxt "assignfieldsdialog|extended_tip|AssignFieldsDialog"
msgid "Matches the logical field names of the layout dialog to the field names in your database when you create new address blocks or salutations."
-msgstr ""
+msgstr "Ferliket de logyske fjild nammen fan it yndieling dialoochskerm mei de fjild nammen yn jo gegevensbank as jo nije adres blokken of in begroeting meitsje."
#. RhjgE
#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:92
@@ -10196,7 +10196,7 @@ msgstr "Links"
#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:207
msgctxt "assignstylesdialog|extended_tip|left"
msgid "Moves the selected paragraph style up one level in the index hierarchy."
-msgstr ""
+msgstr "Ferpleatst it selektearre alinea styl ien nivo heger yn de yndeks hierargy."
#. ScVY5
#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:222
@@ -10214,7 +10214,7 @@ msgstr "Rjochts"
#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:227
msgctxt "assignstylesdialog|extended_tip|right"
msgid "Moves the selected paragraph style down one level in the index hierarchy."
-msgstr ""
+msgstr "Ferpleatst it selektearre alinea styl ien nivo leger yn de yndeks hierargy."
#. tF4xa
#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:273
@@ -10232,7 +10232,7 @@ msgstr "Stilen"
#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:490
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
-msgstr ""
+msgstr "Makket yndeks items fan spesifike alinea stilen."
#. hDDjU
#: sw/uiconfig/swriter/ui/attachnamedialog.ui:7
@@ -10274,7 +10274,7 @@ msgstr "De útgeande post tsjinner (SMTP) fereasket in fer_ifikaasje"
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:101
msgctxt "extended_tip|authentication"
msgid "Enables the authentication that is required to send email by SMTP."
-msgstr ""
+msgstr "Skeakelet de ferifikaasje yn dy't fereaske is om e-post mei SMTP te ferstjoeren."
#. 5F7CW
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:113
@@ -10286,7 +10286,7 @@ msgstr "De útgeande post tsjinner (SMTP) fereasket in a_parte ferifikaasje"
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:124
msgctxt "extended_tip|separateauthentication"
msgid "Select if your SMTP server requires a user name and password."
-msgstr ""
+msgstr "Selektearje as jo SMTP tsjinner in brûkersnamme en wachtwurd fereasket."
#. 4Y4mH
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:139
@@ -10298,7 +10298,7 @@ msgstr "Utgeande post tsjinner:"
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:157
msgctxt "extended_tip|username"
msgid "Enter the user name for the SMTP server."
-msgstr ""
+msgstr "Fier de brûkersnamme foar de SMTP tsjinner yn."
#. G9RDY
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:171
@@ -10310,7 +10310,7 @@ msgstr "_Brûkersnamme:"
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:192
msgctxt "extended_tip|outpassword"
msgid "Enter the password for the user name."
-msgstr ""
+msgstr "Fier it wachtwurd foar de brûkersnamme yn."
#. Sd4zx
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:206
@@ -10328,7 +10328,7 @@ msgstr "De útgeande post tsjinner brûkt deselde ferifikaasje as de _ynkommende
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:230
msgctxt "extended_tip|smtpafterpop"
msgid "Select if you are required to first read your email before you can send email."
-msgstr ""
+msgstr "Selektearje as jo earst jo e-post lêze moat foardat jo e-post ferstjoere kinne."
#. hguDR
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:245
@@ -10340,7 +10340,7 @@ msgstr "Ynkommende post tsjinner:"
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:263
msgctxt "extended_tip|server"
msgid "Enter the server name of your POP 3 or IMAP mail server."
-msgstr ""
+msgstr "Fier de tsjinner namme fan jo POP 3 of IMAP mail tsjinner yn."
#. 2Kevy
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:277
@@ -10352,7 +10352,7 @@ msgstr "Tsjinner _namme:"
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:296
msgctxt "extended_tip|port"
msgid "Enter the port on the POP3 or IMAP server."
-msgstr ""
+msgstr "Fier de poarte op de POP3 of IMAP tsjinner yn."
#. DVAwX
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:309
@@ -10376,7 +10376,7 @@ msgstr "_POP3"
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:344
msgctxt "extended_tip|pop3"
msgid "Specifies that the incoming mail server uses POP 3."
-msgstr ""
+msgstr "Jout oan dat de tsjinner foar ynkommende e-post brûkme makket fan POP 3."
#. b9FGk
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:355
@@ -10388,19 +10388,19 @@ msgstr "_IMAP"
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:366
msgctxt "extended_tip|imap"
msgid "Specifies that the incoming mail server uses IMAP."
-msgstr ""
+msgstr "Jout oan dat de tsjinner foar ynkommende e-post brûkme makket fan IMAP."
#. 6rQFw
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:384
msgctxt "extended_tip|inusername"
msgid "Enter the user name for the IMAP server."
-msgstr ""
+msgstr "Fier de brûkersnamme foar de IMAP tsjinner yn."
#. YWCC2
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:404
msgctxt "extended_tip|inpassword"
msgid "Enter the password."
-msgstr ""
+msgstr "Fier it wachtwurd yn."
#. eEGih
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:418
@@ -10424,37 +10424,37 @@ msgstr "AutoOpmaak"
#: sw/uiconfig/swriter/ui/autoformattable.ui:39
msgctxt "autoformattable|extended_tip|cancel"
msgid "Closes dialog and discards all changes."
-msgstr ""
+msgstr "Slút it dialoochskerm en negearret alle feroaringen."
#. V6Tpf
#: sw/uiconfig/swriter/ui/autoformattable.ui:60
msgctxt "autoformattable|extended_tip|ok"
msgid "Saves all changes and closes dialog."
-msgstr ""
+msgstr "Bewarret alle feroaringen en slút it dialoochskerm."
#. NTY8D
#: sw/uiconfig/swriter/ui/autoformattable.ui:135
msgctxt "autoformattable|extended_tip|preview"
msgid "Displays a preview of the current selection."
-msgstr ""
+msgstr "Lit in foarbyld sjen fan de aktive seleksje."
#. q7HjF
#: sw/uiconfig/swriter/ui/autoformattable.ui:177
msgctxt "autoformattable|extended_tip|formatlb"
msgid "Lists the available formatting styles for tables. Click the format that you want to apply, and then click OK."
-msgstr ""
+msgstr "Lit de beskikbere stilen foar tabellen sjen. Klik op de styl dat jo tapasse wolle en dêrnei op Okee."
#. s8u6x
#: sw/uiconfig/swriter/ui/autoformattable.ui:210
msgctxt "autoformattable|extended_tip|add"
msgid "Adds a new table style to the list."
-msgstr ""
+msgstr "Foeget in nije tabel styl ta oan de list."
#. DYbCK
#: sw/uiconfig/swriter/ui/autoformattable.ui:229
msgctxt "autoformattable|extended_tip|remove"
msgid "Deletes the selected element or elements after confirmation."
-msgstr ""
+msgstr "Wisket it selektearre elemint of eleminten (nei befêstiging)."
#. YNp3m
#: sw/uiconfig/swriter/ui/autoformattable.ui:241
@@ -10478,7 +10478,7 @@ msgstr "Getal notaasje"
#: sw/uiconfig/swriter/ui/autoformattable.ui:309
msgctxt "autoformattable|extended_tip|numformatcb"
msgid "Includes numbering formats in the selected table style."
-msgstr ""
+msgstr "Foeget nûmering styl yn de selektearre tabel styl yn."
#. 6jMct
#: sw/uiconfig/swriter/ui/autoformattable.ui:320
@@ -10490,7 +10490,7 @@ msgstr "Rânen"
#: sw/uiconfig/swriter/ui/autoformattable.ui:329
msgctxt "autoformattable|extended_tip|bordercb"
msgid "Includes border styles in the selected table style."
-msgstr ""
+msgstr "Foeget râne stilen ta oan selektearre tabel styl."
#. FV6mC
#: sw/uiconfig/swriter/ui/autoformattable.ui:340
@@ -10502,7 +10502,7 @@ msgstr "Lettertype"
#: sw/uiconfig/swriter/ui/autoformattable.ui:349
msgctxt "autoformattable|extended_tip|fontcb"
msgid "Includes font formatting in the selected table style."
-msgstr ""
+msgstr "Foeget lettertype opmaak ta oan de selektearre tabel styl."
#. BG3bD
#: sw/uiconfig/swriter/ui/autoformattable.ui:360
@@ -10514,7 +10514,7 @@ msgstr "Patroan"
#: sw/uiconfig/swriter/ui/autoformattable.ui:369
msgctxt "autoformattable|extended_tip|patterncb"
msgid "Includes background styles in the selected table style."
-msgstr ""
+msgstr "Foeget eftergrûn stilen ta oan selektearre tabel opmaak styl."
#. iSuf5
#: sw/uiconfig/swriter/ui/autoformattable.ui:380
@@ -10526,7 +10526,7 @@ msgstr "Rjochting"
#: sw/uiconfig/swriter/ui/autoformattable.ui:389
msgctxt "autoformattable|extended_tip|alignmentcb"
msgid "Includes alignment settings in the selected table style."
-msgstr ""
+msgstr "Foeget rjochtsje ynstellingen ta oan selektearre tabel styl."
#. pR75z
#: sw/uiconfig/swriter/ui/autoformattable.ui:409
@@ -10538,7 +10538,7 @@ msgstr "Opmaak"
#: sw/uiconfig/swriter/ui/autoformattable.ui:442
msgctxt "autoformattable|extended_tip|AutoFormatTableDialog"
msgid "Automatically applies formats to the current table, including fonts, shading, and borders."
-msgstr ""
+msgstr "Past automatysk yndieling op de aktive tabel ta, ynklusyf lettertypen , skaad en rânen."
#. RoSFi
#: sw/uiconfig/swriter/ui/autotext.ui:12
@@ -10550,7 +10550,7 @@ msgstr "_Nij"
#: sw/uiconfig/swriter/ui/autotext.ui:16
msgctxt "autotext|extended_tip|new"
msgid "Creates a new AutoText category using the name that you entered in the Name box."
-msgstr ""
+msgstr "Makket in nije AutoTekst kategory mei de namme dy't jo yn it fak Namme ynfierd ha."
#. 25P7a
#: sw/uiconfig/swriter/ui/autotext.ui:25
@@ -10562,7 +10562,7 @@ msgstr "Nij (allinne tekst)"
#: sw/uiconfig/swriter/ui/autotext.ui:29
msgctxt "autotext|extended_tip|newtext"
msgid "Creates a new AutoText entry only from the text in the selection that you made in the current document. Graphics, tables and other objects are not included. You must first enter a name before you see this command."
-msgstr ""
+msgstr "Makket allinne fan de tekst yn de seleksje yn it aktive dokumint in nij AutoText item. Ofbyldingen, tabellen en oare objekten wurde net opnaam. Jo moatte earst in namme ynfiere foardat jo dizze opdracht sjogge."
#. YWzFB
#: sw/uiconfig/swriter/ui/autotext.ui:38
@@ -10574,7 +10574,7 @@ msgstr "_Kopiearje"
#: sw/uiconfig/swriter/ui/autotext.ui:42
msgctxt "autotext|extended_tip|copy"
msgid "Copies the selected AutoText to the clipboard."
-msgstr ""
+msgstr "Kopiearret it selektearre AutoTekst nei it klamboerd."
#. MxnC4
#: sw/uiconfig/swriter/ui/autotext.ui:51
@@ -10586,7 +10586,7 @@ msgstr "Ferfange"
#: sw/uiconfig/swriter/ui/autotext.ui:55
msgctxt "autotext|extended_tip|replace"
msgid "Replaces the contents of the selected AutoText entry with the selection that was made in the current document."
-msgstr ""
+msgstr "Ferfangt de ynhâld fan it selektearre AutoTekst item troch de seleksje dat makke is yn it aktive dokumint."
#. KEn5J
#: sw/uiconfig/swriter/ui/autotext.ui:64
@@ -10604,7 +10604,7 @@ msgstr "Omneame..."
#: sw/uiconfig/swriter/ui/autotext.ui:76
msgctxt "autotext|extended_tip|rename"
msgid "Changes the name of the selected AutoText category to the name that you enter in the Name box."
-msgstr ""
+msgstr "Feroaret de namme fan de selektearre AutoTekst kategory nei de namme dy't jo yn it fak Namme ynfiere."
#. 2g8DF
#: sw/uiconfig/swriter/ui/autotext.ui:85
@@ -10622,7 +10622,7 @@ msgstr "_Bewurkje"
#: sw/uiconfig/swriter/ui/autotext.ui:103
msgctxt "autotext|extended_tip|edit"
msgid "Opens the selected AutoText entry for editing in a separate document. Make the changes that you want, choose File - Save AutoText, and then choose File - Close."
-msgstr ""
+msgstr "Iepenet de selektearre AutoTekst ynfier foar bewurking yn in apart dokumint. Meitsje de feroaring dy't jo wolle, kies Triem - AutoTekst bewarje en dan Triem - Slute."
#. Kg5xa
#: sw/uiconfig/swriter/ui/autotext.ui:118
@@ -10634,7 +10634,7 @@ msgstr "M_akro..."
#: sw/uiconfig/swriter/ui/autotext.ui:122
msgctxt "autotext|extended_tip|macro"
msgid "Opens the Assign Macro dialog, where you attach a macro to the selected AutoText entry."
-msgstr ""
+msgstr "Iepenet it dialoochskerm Makro tawize, wêryn jo in makro oan it selektearre AutoTekst item taheakje kinne."
#. oKb9y
#: sw/uiconfig/swriter/ui/autotext.ui:137
@@ -10646,7 +10646,7 @@ msgstr "_Ymportearje..."
#: sw/uiconfig/swriter/ui/autotext.ui:141
msgctxt "autotext|extended_tip|import"
msgid "Opens a dialog where you can select the MS 97/2000/XP Word document or template, containing the AutoText entries that you want to import."
-msgstr ""
+msgstr "Iepenet in dialoochskerm wêryn jo it dokumint of it sjabloan foar MS 97/2000/XP selektearje kinne mei de AutoTekst items dy't ymportearje wolle."
#. WDD5f
#: sw/uiconfig/swriter/ui/autotext.ui:158
@@ -10664,7 +10664,7 @@ msgstr "Autote_kst"
#: sw/uiconfig/swriter/ui/autotext.ui:186
msgctxt "autotext|extended_tip|autotext"
msgid "Click to display additional AutoText commands, for example, to create a new AutoText entry from a text selection in the current document."
-msgstr ""
+msgstr "Klik om oanfoljende AutoTekst opdrachten sjen te litten, lykas foar it meitsjen fan in nije AutoTekst item út in tekst seleksje yn it aktive dokumint."
#. hXXv3
#: sw/uiconfig/swriter/ui/autotext.ui:198
@@ -10676,7 +10676,7 @@ msgstr "Kate_goryen..."
#: sw/uiconfig/swriter/ui/autotext.ui:205
msgctxt "autotext|extended_tip|categories"
msgid "Adds, renames, or deletes AutoText categories."
-msgstr ""
+msgstr "Hjirmei kinne jo AutoTekst kategoryen taheakje, omneame of wiskje."
#. 6fErD
#: sw/uiconfig/swriter/ui/autotext.ui:217
@@ -10688,7 +10688,7 @@ msgstr "_Paad..."
#: sw/uiconfig/swriter/ui/autotext.ui:224
msgctxt "autotext|extended_tip|path"
msgid "Opens the Edit Paths dialog, where you can select the directory to store AutoText."
-msgstr ""
+msgstr "Iepenet it dialoochskerm Paden bewurkje, wêryn jo de map selektearje kinne om AutoTekst te bewarjen."
#. DCz3b
#: sw/uiconfig/swriter/ui/autotext.ui:250
@@ -10706,7 +10706,7 @@ msgstr "_Triem systeem"
#: sw/uiconfig/swriter/ui/autotext.ui:325
msgctxt "autotext|extended_tip|relfile"
msgid "Links to AutoText directories on your computer are relative."
-msgstr ""
+msgstr "Keppelingen nei AutoTekst mappen op jo kompjûter binne relatyf."
#. MCtWy
#: sw/uiconfig/swriter/ui/autotext.ui:336
@@ -10718,7 +10718,7 @@ msgstr "Ynter_net"
#: sw/uiconfig/swriter/ui/autotext.ui:345
msgctxt "autotext|extended_tip|relnet"
msgid "Links to files on the Internet are relative."
-msgstr ""
+msgstr "Keppelingen nei triemmen op it ynternet binne relatyf."
#. LEwb8
#: sw/uiconfig/swriter/ui/autotext.ui:362
@@ -10748,13 +10748,13 @@ msgstr "Fluchtoets:"
#: sw/uiconfig/swriter/ui/autotext.ui:448
msgctxt "autotext|extended_tip|name"
msgid "Displays the name of the selected AutoText category. To change the name of the category, type a new name, and then click Rename. To create a new category, type a name, and then click New."
-msgstr ""
+msgstr "Jout de namme fan de selektearre AutoTekst kategory. Fier in nije namme yn en klik op Omneame om de namme fan de kategory te feroarjen. Wolle jo in nije kategory oanmeitsje, dan fiere jo in namme yn klikke jo dan op Nij."
#. Ye7DD
#: sw/uiconfig/swriter/ui/autotext.ui:467
msgctxt "autotext|extended_tip|shortname"
msgid "Displays the shortcut for the selected AutoText entry. If you are creating a new AutoText entry, type the shortcut that you want to use for the entry."
-msgstr ""
+msgstr "Jout de ôfkoarting foar it selektearre AutoTekst item. As jo in nij AutoTekst item meitsje, fiere jo de fluchtoets yn dy't jo foar it item brûke wolle,"
#. NBAos
#: sw/uiconfig/swriter/ui/autotext.ui:517
@@ -10772,7 +10772,7 @@ msgstr "Foarbyld"
#: sw/uiconfig/swriter/ui/autotext.ui:589
msgctxt "autotext|extended_tip|AutoTextDialog"
msgid "Creates, edits, or inserts AutoText. You can store formatted text, text with graphics, tables, and fields as AutoText. To quickly insert AutoText, type the shortcut for the AutoText in your document, and then press F3."
-msgstr ""
+msgstr "Hjirmei kinne jo AutoTekst meitsje, bewurkje of ynfoegje. Jo kinne opmakke tekst, tekst mei ôfbyldingen, tabellen en fjilden bewarje as AutoTekst. Fier de ôfkoarting yn foar de AutoTekst yn jo dokumint en druk op F3 om fluch AutoTekst yn te foegjen."
#. bBcSd
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:8
@@ -10784,19 +10784,19 @@ msgstr "Item foar literatuerlist ynfoegje"
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:42
msgctxt "bibliographyentry|extended_tip|new"
msgid "Opens the Define Bibliography Entry dialog, where you can create a new bibliography record. This record is only stored in the document. To add a record to the bibliography database, choose Tools - Bibliography Database."
-msgstr ""
+msgstr "Iepenet it dialoochskerm Item foar literatuerlist fêststelle, wêr jo in nije literatuerlist record meitsje kinne. Dit record wurdt allinne yn it dokumint bewarre. Wolle jo in record oan de literatuerlist gegevensbank taheakje, gean dan nei Ark - Literatuerlist gegevensbank."
#. xHxhn
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:61
msgctxt "bibliographyentry|extended_tip|edit"
msgid "Opens the Define Bibliography Entry dialog where you can edit the selected bibliography record."
-msgstr ""
+msgstr "Iepenet it dialoochskerm Item foar literatuerlist fêststelle, wêr jo de selektearre literatuerlist record bewurkje kinne."
#. zo8CS
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:80
msgctxt "bibliographyentry|extended_tip|close"
msgid "Closes the dialog."
-msgstr ""
+msgstr "Slút it dialoochskerm."
#. sQJ4e
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:92
@@ -10808,7 +10808,7 @@ msgstr "Ynfoegje"
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:100
msgctxt "bibliographyentry|extended_tip|insert"
msgid "Inserts the bibliographic reference into the document. If you created a new record, you must also insert it as an entry, otherwise the record is lost when you close the document."
-msgstr ""
+msgstr "Foeget de literatuer ferwizing yn it dokumint yn. As jo in nij record oanmakke ha, moatte jo dizze ek as item ynfoegje, oars giet it record ferlern wannear jo it dokumint slute."
#. JT2A7
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:112
@@ -10826,7 +10826,7 @@ msgstr "Bibliografyske gegevensbank"
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:163
msgctxt "bibliographyentry|extended_tip|frombibliography"
msgid "Inserts a reference from the bibliography database."
-msgstr ""
+msgstr "Foeget in ferwizing yn fanút de Literatuerlist gegevensbank."
#. BFK8W
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:174
@@ -10838,7 +10838,7 @@ msgstr "Dokumint ynhâld"
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:184
msgctxt "bibliographyentry|extended_tip|fromdocument"
msgid "Inserts a reference from the bibliography records that are stored in the current document."
-msgstr ""
+msgstr "Foeget in ferwizing yn út de Literatuerlist record dy't yn it aktive dokumint bewarre binne."
#. AhW2w
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:201
@@ -10862,13 +10862,13 @@ msgstr "Titel"
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:286
msgctxt "bibliographyentry|extended_tip|entrylb"
msgid "Select the short name of the bibliography record that you want to insert."
-msgstr ""
+msgstr "Selektearje in koarte namme út de literatuerlist records dy't jo ynfoegje wolle."
#. YYgLc
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:302
msgctxt "bibliographyentry|extended_tip|entryed"
msgid "Select the short name of the bibliography record that you want to insert."
-msgstr ""
+msgstr "Selektearje in koarte namme út de literatuerlist records dy't jo ynfoegje wolle."
#. AAmDi
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:315
@@ -10886,7 +10886,7 @@ msgstr "Ynfier"
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:360
msgctxt "bibliographyentry|extended_tip|BibliographyEntryDialog"
msgid "Inserts a bibliography reference."
-msgstr ""
+msgstr "Foeget in item foar de literatuerlist yn."
#. 7gBGN
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:8
@@ -10994,7 +10994,7 @@ msgstr "Foarnamme"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:130
msgctxt "extended tip | company"
msgid "Type the name of your company in this field."
-msgstr ""
+msgstr "Fier yn dit fjild de namme fan jo bedriuw yn."
#. 7PLeB
#: sw/uiconfig/swriter/ui/businessdatapage.ui:160
@@ -11006,7 +11006,7 @@ msgstr "Titel"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:161
msgctxt "extended tip | position"
msgid "Type your position in the company in this field."
-msgstr ""
+msgstr "Fier hjir jo posysje yn it bedriuw yn."
#. KckUP
#: sw/uiconfig/swriter/ui/businessdatapage.ui:190
@@ -11018,7 +11018,7 @@ msgstr "Privee tillefoannûmer"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:191
msgctxt "extended tip | fax"
msgid "Type company fax number in this field."
-msgstr ""
+msgstr "Fier yn dit fjild it faksnûmer fan it bedriuw yn."
#. iGBqW
#: sw/uiconfig/swriter/ui/businessdatapage.ui:222
@@ -11030,7 +11030,7 @@ msgstr "Faksnûmer"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:223
msgctxt "extended tips | url"
msgid "Company homepage"
-msgstr ""
+msgstr "Bedriuwswebside"
#. JBxqb
#: sw/uiconfig/swriter/ui/businessdatapage.ui:240
@@ -11042,7 +11042,7 @@ msgstr "e-postadres"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:241
msgctxt "extended tip | email"
msgid "Type your company email address."
-msgstr ""
+msgstr "Fier jo saaklike e-postadres yn."
#. CCKWa
#: sw/uiconfig/swriter/ui/businessdatapage.ui:260
@@ -11060,7 +11060,7 @@ msgstr "Namme"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:285
msgctxt "extended tips | company2"
msgid "Company second line"
-msgstr ""
+msgstr "Twadde rigel bedriuw"
#. Po3B3
#: sw/uiconfig/swriter/ui/businessdatapage.ui:304
@@ -11078,7 +11078,7 @@ msgstr "Stêd"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:329
msgctxt "extended tip | icity"
msgid "Type the company city"
-msgstr ""
+msgstr "Fier de stêd fan it bedriuw yn"
#. ytCQe
#: sw/uiconfig/swriter/ui/businessdatapage.ui:346
@@ -11090,25 +11090,25 @@ msgstr "Postkoade"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:347
msgctxt "extended tip | izip"
msgid "Type company ZIP in this field."
-msgstr ""
+msgstr "Fier yn dit fjild de postkoade fan it bedriuw yn."
#. iVLAA
#: sw/uiconfig/swriter/ui/businessdatapage.ui:376
msgctxt "extended tips | slogan"
msgid "Company slogan"
-msgstr ""
+msgstr "Bedriuwsslogan"
#. GAi2c
#: sw/uiconfig/swriter/ui/businessdatapage.ui:406
msgctxt "extended tips | country"
msgid "Company country"
-msgstr ""
+msgstr "Lân fan bedriuw"
#. ZFNQd
#: sw/uiconfig/swriter/ui/businessdatapage.ui:423
msgctxt "extended tip | state"
msgid "Type company state."
-msgstr ""
+msgstr "De provinsje fan it bedriuw."
#. yvuE2
#: sw/uiconfig/swriter/ui/businessdatapage.ui:442
@@ -11126,7 +11126,7 @@ msgstr "Titel"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:468
msgctxt "extended tips | phone"
msgid "Type business phone"
-msgstr ""
+msgstr "In saaklik telefoannûmer"
#. BGbZN
#: sw/uiconfig/swriter/ui/businessdatapage.ui:485
@@ -11138,7 +11138,7 @@ msgstr "Posysje"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:486
msgctxt "extended tips | mobile"
msgid "Type company mobile"
-msgstr ""
+msgstr "In saaklik mobyl nûmer"
#. 9TjDF
#: sw/uiconfig/swriter/ui/businessdatapage.ui:505
@@ -11150,7 +11150,7 @@ msgstr "Strjitte:"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:529
msgctxt "extended tip | street"
msgid "Type the name of company street in this field."
-msgstr ""
+msgstr "Fier yn dit fjild de strjitte fan it bedriuw yn."
#. RTBTC
#: sw/uiconfig/swriter/ui/businessdatapage.ui:552
@@ -11162,7 +11162,7 @@ msgstr "Saaklike gegevens"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:560
msgctxt "businessdatapage|extended_tip|BusinessDataPage"
msgid "Contains contact information for business cards that use a layout from a 'Business Card, Work' category. Business card layouts are selected on the Business Cards tab."
-msgstr ""
+msgstr "Befettet kontakt ynformaasje foar fisitekaartsjes dy't in yndieling fan in 'Visitekaartsje, Wurk' kategory brûke. Op de ljepper Visitekaartsjes kinne jo yndielingen fan visitekaartsjes selektearje."
#. EtgDz
#: sw/uiconfig/swriter/ui/cannotsavelabeldialog.ui:7
@@ -11198,13 +11198,13 @@ msgstr "Byskrift opsjes"
#: sw/uiconfig/swriter/ui/captionoptions.ui:111
msgctxt "captionoptions|extended_tip|level"
msgid "Select the number of outline levels from the top of the chapter hierarchy down to include in the caption label."
-msgstr ""
+msgstr "Selektearje it tal oersichtsnivo's, fan ôf de boppekant fan de haadstik hierargy nei ûnderen, dat yn it byskrift label opnaam moat wurde."
#. PDD8Q
#: sw/uiconfig/swriter/ui/captionoptions.ui:128
msgctxt "captionoptions|extended_tip|separator"
msgid "Enter the character that you want to insert between the chapter number and the caption number."
-msgstr ""
+msgstr "Fier it teken yn dat jo ynfoegje wolle tusken it haadstik nûmer en it byskrift nûmer."
#. 2h7sy
#: sw/uiconfig/swriter/ui/captionoptions.ui:141
@@ -11234,7 +11234,7 @@ msgstr "Tekenstyl:"
#: sw/uiconfig/swriter/ui/captionoptions.ui:228
msgctxt "captionoptions|extended_tip|style"
msgid "Specifies the character style."
-msgstr ""
+msgstr "Spesifisearret it teken styl."
#. cwobC
#: sw/uiconfig/swriter/ui/captionoptions.ui:239
@@ -11246,7 +11246,7 @@ msgstr "_Râne en skaad tapasse"
#: sw/uiconfig/swriter/ui/captionoptions.ui:249
msgctxt "captionoptions|extended_tip|border_and_shadow"
msgid "Applies the border and shadow of the object to the caption frame."
-msgstr ""
+msgstr "Pas de râne en skaad oan fan it objekt op de titel ramt."
#. 2Fy5S
#: sw/uiconfig/swriter/ui/captionoptions.ui:267
@@ -11288,7 +11288,7 @@ msgstr "Adres"
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:75
msgctxt "cardmediumpage|extended_tip|address"
msgid "Creates a label with your return address. Text that is currently in the Label text box is overwritten."
-msgstr ""
+msgstr "Makket in lebel mei jo weromadres. Tekst dy't yn it tekstfak Lebel stiet wurdt oerskreaun."
#. HH2Su
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:89
@@ -11300,7 +11300,7 @@ msgstr "Lebel tekst:"
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:120
msgctxt "cardmediumpage|extended_tip|textview"
msgid "Enter the text that you want to appear on the label. You can also insert a database field."
-msgstr ""
+msgstr "Fier de tekst yn dy't jo werjaan wolle op it lebel. Jo kinne ek in gegevensbank fjild ynfoegje."
#. xjPBY
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:156
@@ -11312,7 +11312,7 @@ msgstr "Gegevensbank:"
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:173
msgctxt "cardmediumpage|extended_tip|database"
msgid "Select the database that you want to use as the data source for your label."
-msgstr ""
+msgstr "Selektearje de gegevensbank dy de fjilden befettet dy jo brûke foar jo lebel."
#. G2Vhh
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:200
@@ -11324,7 +11324,7 @@ msgstr "Tabel:"
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:217
msgctxt "cardmediumpage|extended_tip|table"
msgid "Select the database table containing the field(s) that you want to use in your label."
-msgstr ""
+msgstr "Selektearje de gegevens tabel dy de fjilden befettet dy jo brûke wolle yn jo lebel."
#. LB3gM
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:244
@@ -11336,7 +11336,7 @@ msgstr "Gegevensbank fjild:"
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:261
msgctxt "cardmediumpage|extended_tip|field"
msgid "Select the database field that you want, and then click the arrow to the left of this box to insert the field into the Label text box."
-msgstr ""
+msgstr "Selektearje it winske fjild en klik op de pylkknop links fan it fak om it selektearre fjild yn it tekstfjild lebel yn te foegjen."
#. VfLpb
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:287
@@ -11348,7 +11348,7 @@ msgstr "Ynfoegje"
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:293
msgctxt "cardmediumpage|extended_tip|insert"
msgid "Select the database field that you want, and then click the arrow to the left of this box to insert the field into the Label text box."
-msgstr ""
+msgstr "Selektearje it winske fjild en klik op de pylkknop links fan it fak om it selektearre fjild yn it tekstfjild lebel yn te foegjen."
#. Y9YPN
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:310
@@ -11366,7 +11366,7 @@ msgstr "_Trochrinnend"
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:370
msgctxt "cardmediumpage|extended_tip|continuous"
msgid "Prints labels on continuous paper."
-msgstr ""
+msgstr "Print lebels op kettingpapier."
#. iqG7v
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:381
@@ -11390,19 +11390,19 @@ msgstr "_Type:"
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:446
msgctxt "cardmediumpage|extended_tip|brand"
msgid "Select the brand of paper that you want to use."
-msgstr ""
+msgstr "Selektearje it papiermerk dat jo brûke wolle."
#. T3wp9
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:463
msgctxt "cardmediumpage|extended_tip|type"
msgid "Select the size format that you want to use. The available formats depend on the brand on what you selected in the Brand list. If you want to use a custom label format, select [User], and then click the Format tab to define the format."
-msgstr ""
+msgstr "Selektearje de grutte dy't jo brûke wolle. De beskikbere formaten binne ôfhinklik fan it merk dat jo selektearre ha yn de list Merk. As jo in selsmakke lebel grutte brûke wolle, kieze jo [Brûker], en klik dan op de ljepper Formaat om dat formaat te brûken."
#. DCFRk
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:491
msgctxt "cardmediumpage|extended_tip|formatinfo"
msgid "The paper type and the dimensions of the business card are displayed at the bottom of the Format area."
-msgstr ""
+msgstr "It papier type en de ôfmjittingen fan it visitekaartsje wurde oan de ûnderkant fan it gebiet Grutte werjûn."
#. 3zCCN
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:518
@@ -11414,7 +11414,7 @@ msgstr "Opmaak"
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:533
msgctxt "cardmediumpage|extended_tip|CardMediumPage"
msgid "Specify the label text and choose the paper size for the label."
-msgstr ""
+msgstr "Jou de lebeltekst en opmaak hjir oan."
#. J96RD
#: sw/uiconfig/swriter/ui/ccdialog.ui:8
@@ -11444,13 +11444,13 @@ msgstr "Taljochting: set in puntkomma (;) om e-postadressen te skieden."
#: sw/uiconfig/swriter/ui/ccdialog.ui:149
msgctxt "ccdialog|extended_tip|cc"
msgid "Enter the recipients of email copies, separated by a semicolon (;)."
-msgstr ""
+msgstr "Fier de ûntfangers fan e-post kopyen yn, skieden troch in puntkomma (;)."
#. BCsoU
#: sw/uiconfig/swriter/ui/ccdialog.ui:166
msgctxt "ccdialog|extended_tip|bcc"
msgid "Enter the recipients of email blind copies, separated by a semicolon (;)."
-msgstr ""
+msgstr "Fier de ûntfangers fan bline e-post kopyen yn, skieden troch in puntkomma (;)."
#. P3CcW
#: sw/uiconfig/swriter/ui/ccdialog.ui:183
@@ -11540,25 +11540,25 @@ msgstr "Barren..."
#: sw/uiconfig/swriter/ui/charurlpage.ui:95
msgctxt "charurlpage|extended_tip|eventpb"
msgid "Specify an event that triggers when you click the hyperlink."
-msgstr ""
+msgstr "Jout in barren oan dat útfierd wurdt wannear jo op de ferwizing klikke."
#. MhJbE
#: sw/uiconfig/swriter/ui/charurlpage.ui:112
msgctxt "charurlpage|extended_tip|urled"
msgid "Enter a URL for the file that you want to open when you click the hyperlink."
-msgstr ""
+msgstr "Fier in URL-adres yn foar de triem dy't jo iepenje wolle wannear jo op de ferwizing klikke."
#. YGnoF
#: sw/uiconfig/swriter/ui/charurlpage.ui:129
msgctxt "charurlpage|extended_tip|nameed"
msgid "Enter a name for the hyperlink."
-msgstr ""
+msgstr "Fier in namme yn foar de ferwizing."
#. grQbi
#: sw/uiconfig/swriter/ui/charurlpage.ui:146
msgctxt "charurlpage|extended_tip|texted"
msgid "Enter the text that you want to display for the hyperlink."
-msgstr ""
+msgstr "Fier de tekst yn dy't jo werjaan wolle foar de ferwizing."
#. BmLb8
#: sw/uiconfig/swriter/ui/charurlpage.ui:157
@@ -11570,13 +11570,13 @@ msgstr "Blêdzje..."
#: sw/uiconfig/swriter/ui/charurlpage.ui:164
msgctxt "charurlpage|extended_tip|urlpb"
msgid "Locate the file that you want to link to, and then click Open."
-msgstr ""
+msgstr "Sykje de triem dy't jo keppelje wolle en klik dan op Iepenje."
#. ha6rk
#: sw/uiconfig/swriter/ui/charurlpage.ui:186
msgctxt "charurlpage|extended_tip|targetfrmlb"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list."
-msgstr ""
+msgstr "Fier de namme fan it ramt yn wêryn jo it keppele triem iepenje wolle of selektearje in foarôf definiearre ramt yn de list."
#. CQvaG
#: sw/uiconfig/swriter/ui/charurlpage.ui:218
@@ -11600,13 +11600,13 @@ msgstr "Net besochte keppelingen:"
#: sw/uiconfig/swriter/ui/charurlpage.ui:284
msgctxt "charurlpage|extended_tip|visitedlb"
msgid "Select a formatting style to use for visited links from the list. To add or modify a style in this list, close this dialog, and click the Styles icon on the Formatting toolbar."
-msgstr ""
+msgstr "Selektearje in yndieling styl dat jo brûke wolle foar de besochte keppelingen. As jo in styl yn de list feroarje of oan de list taheakje wolle, slút dan dit dialoochskerm en klik op it ikoan stilen en opmaak op de arkbalke Opmaak."
#. w7Cdu
#: sw/uiconfig/swriter/ui/charurlpage.ui:299
msgctxt "charurlpage|extended_tip|unvisitedlb"
msgid "Select a formatting style to use for unvisited links from the list. To add or modify a style in this list, close this dialog, and click the Styles icon on the Formatting toolbar."
-msgstr ""
+msgstr "Selektearje in yndieling styl dat jo brûke wolle foar de net besochte keppelingen. As jo in styl yn de list feroarje of oan de list taheakje wolle, slút dan dit dialoochskerm en klik op it ikoan stilen en opmaak op de arkbalke Opmaak."
#. 43fvG
#: sw/uiconfig/swriter/ui/charurlpage.ui:316
@@ -11618,7 +11618,7 @@ msgstr "Tekenstyl"
#: sw/uiconfig/swriter/ui/charurlpage.ui:331
msgctxt "charurlpage|extended_tip|CharURLPage"
msgid "Assigns a new hyperlink or edits the selected hyperlink."
-msgstr ""
+msgstr "Wiist in nije ferwizing ta of bewurket de selektearre ferwizing."
#. 3mgNE
#: sw/uiconfig/swriter/ui/columndialog.ui:8
@@ -11636,7 +11636,7 @@ msgstr "Auto _breedte"
#: sw/uiconfig/swriter/ui/columnpage.ui:97
msgctxt "columnpage|extended_tip|autowidth"
msgid "Creates columns of equal width."
-msgstr ""
+msgstr "Makket kolommen even breed."
#. FNRLQ
#: sw/uiconfig/swriter/ui/columnpage.ui:127
@@ -11654,19 +11654,19 @@ msgstr "Breedte:"
#: sw/uiconfig/swriter/ui/columnpage.ui:212
msgctxt "columnpage|extended_tip|width3mf"
msgid "Enter the width of the column."
-msgstr ""
+msgstr "Fier de breedte fan de kolom yn."
#. ForRd
#: sw/uiconfig/swriter/ui/columnpage.ui:235
msgctxt "columnpage|extended_tip|width2mf"
msgid "Enter the width of the column."
-msgstr ""
+msgstr "Fier de breedte fan de kolom yn."
#. hrHx7
#: sw/uiconfig/swriter/ui/columnpage.ui:258
msgctxt "columnpage|extended_tip|width1mf"
msgid "Enter the width of the column."
-msgstr ""
+msgstr "Fier de breedte fan de kolom yn."
#. nD3AU
#: sw/uiconfig/swriter/ui/columnpage.ui:271
@@ -11678,25 +11678,25 @@ msgstr "Ofstân:"
#: sw/uiconfig/swriter/ui/columnpage.ui:303
msgctxt "columnpage|extended_tip|spacing1mf"
msgid "Enter the amount of space that you want to leave between the columns."
-msgstr ""
+msgstr "Fier de romte yn dy't tusken de kolommen wêze moat."
#. CwCXd
#: sw/uiconfig/swriter/ui/columnpage.ui:325
msgctxt "columnpage|extended_tip|spacing2mf"
msgid "Enter the amount of space that you want to leave between the columns."
-msgstr ""
+msgstr "Fier de romte yn dy't tusken de kolommen wêze moat."
#. j8J9w
#: sw/uiconfig/swriter/ui/columnpage.ui:352
msgctxt "columnpage|extended_tip|back"
msgid "Moves the column display one column to the left."
-msgstr ""
+msgstr "Ferpleatst de kolom werjefte ien kolom nei links."
#. EDA5k
#: sw/uiconfig/swriter/ui/columnpage.ui:372
msgctxt "columnpage|extended_tip|next"
msgid "Moves the column display one column to the right."
-msgstr ""
+msgstr "Ferpleatst de kolom werjefte ien kolom nei rjochts."
#. Xn7wn
#: sw/uiconfig/swriter/ui/columnpage.ui:408
@@ -11732,7 +11732,7 @@ msgstr "_Posysje:"
#: sw/uiconfig/swriter/ui/columnpage.ui:511
msgctxt "columnpage|extended_tip|linestylelb"
msgid "Select the formatting style for the column separator line. If you do not want a separator line, choose \"None\"."
-msgstr ""
+msgstr "Selektearje de styl foar de kolom skieding line. As jo skieding line wolle, klikke jo op 'Gjint'."
#. DcSGt
#: sw/uiconfig/swriter/ui/columnpage.ui:525
@@ -11756,13 +11756,13 @@ msgstr "Under"
#: sw/uiconfig/swriter/ui/columnpage.ui:531
msgctxt "columnpage|extended_tip|lineposlb"
msgid "Select the vertical alignment of the separator line. This option is only available if Height value of the line is less than 100%."
-msgstr ""
+msgstr "Selektearje de fertikale rjochting fan de skieding line. Dizze opsje is allinne beskikber as de wearde Hichte fan de line lytser is dan 100%."
#. FMShH
#: sw/uiconfig/swriter/ui/columnpage.ui:548
msgctxt "columnpage|extended_tip|lineheightmf"
msgid "Enter the length of the separator line as a percentage of the height of the column area."
-msgstr ""
+msgstr "Fier de lingte fan de skieding line yn as in persintaazje fan de hichte fan it kolom gebiet."
#. kkGNR
#: sw/uiconfig/swriter/ui/columnpage.ui:591
@@ -11786,7 +11786,7 @@ msgstr "Kolommen:"
#: sw/uiconfig/swriter/ui/columnpage.ui:699
msgctxt "columnpage|extended_tip|colsnf"
msgid "Enter the number of columns that you want in the page, frame, or section."
-msgstr ""
+msgstr "Fier it tal kolommen dat jo wolle yn de side, ramt of seksje."
#. X9vG6
#: sw/uiconfig/swriter/ui/columnpage.ui:722
@@ -11798,7 +11798,7 @@ msgstr "Ynhâld lykweardich ferdiele oer alle _kolommen"
#: sw/uiconfig/swriter/ui/columnpage.ui:731
msgctxt "columnpage|extended_tip|balance"
msgid "Distributes the text in multi-column sections. The text flows into all columns to the same height. The height of the section adjusts automatically."
-msgstr ""
+msgstr "Ferdielt de tekst yn dielen mei meardere kolommen. De tekst floeit binnen de kolommen ta deselde hichte. De hichte fan it tekst diel past him automatysk oan."
#. bV6Pg
#: sw/uiconfig/swriter/ui/columnpage.ui:751
@@ -11834,7 +11834,7 @@ msgstr "Side styl: "
#: sw/uiconfig/swriter/ui/columnpage.ui:759
msgctxt "columnpage|extended_tip|applytolb"
msgid "Select the item that you want to apply the column layout to."
-msgstr ""
+msgstr "Selektearje it item wêrop de kolom yndieling tapast wurde moat."
#. AJFqx
#: sw/uiconfig/swriter/ui/columnpage.ui:772
@@ -11852,7 +11852,7 @@ msgstr "Te_kst rjochting:"
#: sw/uiconfig/swriter/ui/columnpage.ui:843
msgctxt "columnpage|extended_tip|valueset"
msgid "Enter the number of columns that you want in the page, frame, or section."
-msgstr ""
+msgstr "Fier it tal kolommen dat jo wolle yn de side, ramt of seksje."
#. fEbMc
#: sw/uiconfig/swriter/ui/columnpage.ui:860
@@ -11864,7 +11864,7 @@ msgstr "Ynstellingen"
#: sw/uiconfig/swriter/ui/columnpage.ui:915
msgctxt "columnpage|extended_tip|ColumnPage"
msgid "Specifies the number of columns and the column layout for a page style, frame, or section."
-msgstr ""
+msgstr "Beskaat it tal kolommen en de kolom yndieling foar de side styl, ramt if seksje."
#. gVCEJ
#: sw/uiconfig/swriter/ui/columnwidth.ui:15
@@ -11888,13 +11888,13 @@ msgstr "Breedte:"
#: sw/uiconfig/swriter/ui/columnwidth.ui:138
msgctxt "columnwidth|extended_tip|column"
msgid "Enter the column number of the column you want to change the width of."
-msgstr ""
+msgstr "Fier it kolom nûmer yn fan de kolom wêrfoar jo de breedte feroarje wolle."
#. mATJY
#: sw/uiconfig/swriter/ui/columnwidth.ui:155
msgctxt "columnwidth|extended_tip|width"
msgid "Enter the width that you want for the selected column(s)."
-msgstr ""
+msgstr "Fier de breedte yn dy't jo brûke wolle foar de selektearre kolom(men)."
#. A9Zr4
#: sw/uiconfig/swriter/ui/columnwidth.ui:172
@@ -11906,7 +11906,7 @@ msgstr "Breedte"
#: sw/uiconfig/swriter/ui/columnwidth.ui:197
msgctxt "columnwidth|extended_tip|ColumnWidthDialog"
msgid "Changes the width of the selected column(s)."
-msgstr ""
+msgstr "Feroaret de breedte fan de selektearre kolom(men)."
#. zF38j
#: sw/uiconfig/swriter/ui/conditionpage.ui:59
@@ -11918,7 +11918,7 @@ msgstr "_Styl mei betingsten"
#: sw/uiconfig/swriter/ui/conditionpage.ui:72
msgctxt "conditionpage|extended_tip|condstyle"
msgid "Check this box to define a new style as a conditional style."
-msgstr ""
+msgstr "Selektearje dit fakje om in nije styl as in styl mei betingsten fêst te lizzen."
#. X8yvA
#: sw/uiconfig/swriter/ui/conditionpage.ui:106
@@ -11936,19 +11936,19 @@ msgstr "Tapaste stilen"
#: sw/uiconfig/swriter/ui/conditionpage.ui:133
msgctxt "conditionpage|extended_tip|links"
msgid "Here you can see the %PRODUCTNAME predefined contexts, including outline levels 1 to 10, numbering/bullets levels 1 to 10, table header, table contents, section, border, footnote, header and footer."
-msgstr ""
+msgstr "Hjir kinne jo de konteksten dy foarôf yn %PRODUCTNAME fêstlein binne, ynklusyf de oersichtnivo's 1 oant 10, nûmering/opsommingstekens nivo 1 oant 10, koptekst tabel, ynhâld tabel, seksje, ramt, fuotnoat, koptekst en fuottekst."
#. nDZqL
#: sw/uiconfig/swriter/ui/conditionpage.ui:162
msgctxt "conditionpage|extended_tip|remove"
msgid "Click here to remove the current context assigned to the selected style."
-msgstr ""
+msgstr "Klik hjir om de aktive kontekst, tawiisd oan it selektearre styl, te wiskjen."
#. U248V
#: sw/uiconfig/swriter/ui/conditionpage.ui:182
msgctxt "conditionpage|extended_tip|apply"
msgid "Click Apply to apply the selected Paragraph Style to the defined context."
-msgstr ""
+msgstr "Klik op tapasse om it selektearre alinea styl ta te passen op de fêstleine kontekst."
#. xC6d7
#: sw/uiconfig/swriter/ui/conditionpage.ui:230
@@ -11960,7 +11960,7 @@ msgstr "Alinea stilen"
#: sw/uiconfig/swriter/ui/conditionpage.ui:241
msgctxt "conditionpage|extended_tip|styles"
msgid "A list of all Paragraph Styles which can be assigned to a context is contained in the list box."
-msgstr ""
+msgstr "Alle alinea stilen dy tawiisd kinne wurde oan in kontekst binne opnaam yn de karlist."
#. xExAz
#: sw/uiconfig/swriter/ui/conditionpage.ui:259
@@ -12152,7 +12152,7 @@ msgstr "Tabs"
#: sw/uiconfig/swriter/ui/converttexttable.ui:124
msgctxt "converttexttable|extended_tip|tabs"
msgid "Converts the text to a table using tabs as column markers."
-msgstr ""
+msgstr "Set tekst om nei in lebel mei tabs as kolom markearring."
#. uPkEG
#: sw/uiconfig/swriter/ui/converttexttable.ui:135
@@ -12164,7 +12164,7 @@ msgstr "Puntkomma's"
#: sw/uiconfig/swriter/ui/converttexttable.ui:145
msgctxt "converttexttable|extended_tip|semicolons"
msgid "Converts the text to a table using semi-colons (;) as column markers."
-msgstr ""
+msgstr "Set tekst om nei in tabel mei puntkomma (;) as kolom markearring."
#. fucq3
#: sw/uiconfig/swriter/ui/converttexttable.ui:157
@@ -12176,7 +12176,7 @@ msgstr "Alinea"
#: sw/uiconfig/swriter/ui/converttexttable.ui:167
msgctxt "converttexttable|extended_tip|paragraph"
msgid "Converts the text to a table using paragraphs as column markers."
-msgstr ""
+msgstr "Set tekst om nei in tabel mei alinea's as kolom markearring."
#. zN6Mx
#: sw/uiconfig/swriter/ui/converttexttable.ui:178
@@ -12188,7 +12188,7 @@ msgstr "Oare:"
#: sw/uiconfig/swriter/ui/converttexttable.ui:191
msgctxt "converttexttable|extended_tip|other"
msgid "Converts the text to a table using the character that you type in the box as a column marker."
-msgstr ""
+msgstr "Set tekst om nei in tabel mei help fan teken dat jo as kolom markearring yn it fak ynfiere."
#. GQnda
#: sw/uiconfig/swriter/ui/converttexttable.ui:208
@@ -12206,7 +12206,7 @@ msgstr "Symboal"
#: sw/uiconfig/swriter/ui/converttexttable.ui:215
msgctxt "converttexttable|extended_tip|othered"
msgid "Type the character that you want to use as a column marker."
-msgstr ""
+msgstr "Fier it teken yn dat jo brûke wolle as kolom markearring."
#. apGyF
#: sw/uiconfig/swriter/ui/converttexttable.ui:226
@@ -12218,7 +12218,7 @@ msgstr "Alle kolommen deselde breedte"
#: sw/uiconfig/swriter/ui/converttexttable.ui:235
msgctxt "converttexttable|extended_tip|keepcolumn"
msgid "Creates columns of equal width, regardless of the position of the column marker."
-msgstr ""
+msgstr "Makket kolommen mei deselde breedte, nettsjinsteande de posysje fan de kolom markearring."
#. UbhJY
#: sw/uiconfig/swriter/ui/converttexttable.ui:253
@@ -17438,86 +17438,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Algemien"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "Kop_tekst"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Koprigen op nije _siden werhelje"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "De tabel net oer siden spjalte"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "_Koprigen:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Opsjes"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Stilen"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20031,289 +20037,289 @@ msgid "Text"
msgstr "Text"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Model werjefte wikselje"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Ynhâld navigaasje werjefte"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Koptekst"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Fuottekst"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Anker<->Tekst"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Werrinnering ynstelle"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Koprigel nivo's werjûn"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Karfakje oan/út"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Heger nivo"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Leger nivo"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Haadstik heger"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Haadstik leger"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Sleep modus"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Dokumint"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Aktyf finster"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Model werjefte wikselje"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Bewurkje"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Fernije"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Ynfoegje"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Ynhâld ek bewarje"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Omheech ferpleatse"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Omleech ferpleatse"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Seleksje"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Yndeksen"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Keppelingen"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Alle"
@@ -26417,7 +26423,7 @@ msgstr "Tekens sûnder spaasjes:"
#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:129
msgctxt "statisticsinfopage|lineft"
msgid "Lines:"
-msgstr "Regels:"
+msgstr "Rigels:"
#. xEDWN
#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:240
diff --git a/source/fy/xmlsecurity/messages.po b/source/fy/xmlsecurity/messages.po
index 0076cef97fc..6419453c139 100644
--- a/source/fy/xmlsecurity/messages.po
+++ b/source/fy/xmlsecurity/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:44+0100\n"
-"PO-Revision-Date: 2020-09-10 20:35+0000\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://weblate.documentfoundation.org/projects/libo_ui-master/xmlsecuritymessages/fy/>\n"
"Language: fy\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1557661253.000000\n"
#. EyJrF
@@ -244,19 +244,19 @@ msgstr "Wearde"
#: xmlsecurity/uiconfig/ui/certdetails.ui:73
msgctxt "extended_tip|tablecontainer"
msgid "The Details page of the View Certificate dialog displays detailed information about the certificate."
-msgstr ""
+msgstr "Op de Details side fan it dialoochskerm Sertifikaat werjaan sjogge jo detaillearre ynformaasje oer it sertifikaat."
#. xcuF8
#: xmlsecurity/uiconfig/ui/certdetails.ui:101
msgctxt "extended_tip|valuedetails"
msgid "Use the value list box to view values and copy them to the clipboard."
-msgstr ""
+msgstr "Brûk de wearde karlist om wearden te besjen en nei it klamboerd te kopiearjen."
#. JXgjT
#: xmlsecurity/uiconfig/ui/certdetails.ui:115
msgctxt "extended_tip|CertDetails"
msgid "The Details page of the View Certificate dialog displays detailed information about the certificate."
-msgstr ""
+msgstr "Op de Details side fan it dialoochskerm Sertifikaat werjaan sjogge jo detaillearre ynformaasje oer it sertifikaat."
#. UWBqm
#: xmlsecurity/uiconfig/ui/certgeneral.ui:33
@@ -268,7 +268,7 @@ msgstr "Sertifikaat ynformaasje"
#: xmlsecurity/uiconfig/ui/certgeneral.ui:46
msgctxt "extended_tip|box1"
msgid "The General page of the View Certificate dialog displays basic information about the certificate."
-msgstr ""
+msgstr "Op de Algemiene side fan it dialoochskerm Sertifikaat werjaan sjogge jo detaillearre ynformaasje oer it sertifikaat."
#. WzmFd
#: xmlsecurity/uiconfig/ui/certgeneral.ui:75
@@ -322,7 +322,7 @@ msgstr "Sertifikaat besjen..."
#: xmlsecurity/uiconfig/ui/certpage.ui:93
msgctxt "extended_tip|signatures"
msgid "The Certificate Path page of the View Certificate dialog displays the location and the status of the certificate."
-msgstr ""
+msgstr "Op de Sertifisearring paad side fan it dialoochskerm Sertifikaat werjaan sjogge jo de lokaasje en tastân fan it sertifikaat."
#. BC28t
#: xmlsecurity/uiconfig/ui/certpage.ui:123
@@ -334,7 +334,7 @@ msgstr "Tastân sertifisearring"
#: xmlsecurity/uiconfig/ui/certpage.ui:149
msgctxt "extended_tip|status"
msgid "The Certificate Path page of the View Certificate dialog displays the location and the status of the certificate."
-msgstr ""
+msgstr "Op de Sertifisearring paad side fan it dialoochskerm Sertifikaat werjaan sjogge jo de lokaasje en tastân fan it sertifikaat."
#. Cvs6c
#: xmlsecurity/uiconfig/ui/certpage.ui:171
@@ -352,7 +352,7 @@ msgstr "It sertifikaat koe net falidearre wurde."
#: xmlsecurity/uiconfig/ui/certpage.ui:193
msgctxt "extended_tip|CertPage"
msgid "The Certificate Path page of the View Certificate dialog displays the location and the status of the certificate."
-msgstr ""
+msgstr "Op de Sertifisearring paad side fan it dialoochskerm Sertifikaat werjaan sjogge jo de lokaasje en tastân fan it sertifikaat."
#. mWRAG
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:26
@@ -400,7 +400,7 @@ msgstr "Type ûndertekening"
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:196
msgctxt "digitalsignaturesdialog|extended_tip|signatures"
msgid "Lists the digital signatures for the current document."
-msgstr ""
+msgstr "Lit de digitale ûndertekeningen foar it aktive dokumint sjen."
#. GAMdr
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:216
@@ -412,7 +412,7 @@ msgstr "Sertifikaat besjen..."
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:222
msgctxt "digitalsignaturesdialog|extended_tip|view"
msgid "Opens the View Certificate dialog."
-msgstr ""
+msgstr "Iepenet it dialoochskerm Sertifikaat werjaan."
#. uM8mn
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:234
@@ -424,7 +424,7 @@ msgstr "Dokumint ûndertekenje..."
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:241
msgctxt "digitalsignaturesdialog|extended_tip|sign"
msgid "Opens the Select Certificate dialog."
-msgstr ""
+msgstr "Iepenet it dialoochskerm Sertifikaat selektearje."
#. hFd4m
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:253
@@ -436,7 +436,7 @@ msgstr "Wiskje"
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:259
msgctxt "digitalsignaturesdialog|extended_tip|remove"
msgid "Removes the selected signature from the list. Removes all subsequent signatures as well, in case of PDF."
-msgstr ""
+msgstr "Wisket de selektearre ûndertekening út de list. By PDF wisket it ek alle opfolgjende ûndertekeningen."
#. yQ9ju
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:271
@@ -490,13 +490,13 @@ msgstr "Brûk AdES konfoarme ûndertekening wannear der in kar is"
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:498
msgctxt "digitalsignaturesdialog|extended_tip|adescompliant"
msgid "Prefers creating XAdES signatures for ODF and OOXML, PAdES signatures for PDF."
-msgstr ""
+msgstr "XAdES ûndertekeningen ha de foarkar foar ODF en OOXML, PAdER ûndertekeningen foar PDF."
#. znY8A
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:525
msgctxt "digitalsignaturesdialog|extended_tip|DigitalSignaturesDialog"
msgid "Adds and removes digital signatures to and from your document. You can also use the dialog to view certificates."
-msgstr ""
+msgstr "Hjir kinne jo digitale ûndertekeningen oan jo dokumint taheakje of wiskje. Jo kinne dit dialoochskerm ek brûke om sertifikaten te besjen."
#. 2qiqv
#: xmlsecurity/uiconfig/ui/macrosecuritydialog.ui:8
@@ -532,7 +532,7 @@ msgstr ""
#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:31
msgctxt "extended_tip|low"
msgid "A macro can be set to auto-start, and it can perform potentially damaging actions, as for example delete or rename files. This setting is not recommended when you open documents from other authors."
-msgstr ""
+msgstr "In makro kin sa ynsteld wêze dat dizze automatysk start en in makro kin mooglik skeadlike aksjes útfiere, lykas it wiskjen of omneamen fan triemmen. It is oan te rieden dizze ynstelling út te setten wannear jo dokuminten fan oare skriuwers iepenet."
#. F9QCX
#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:42
@@ -548,7 +548,7 @@ msgstr ""
#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:54
msgctxt "extended_tip|med"
msgid "Trusted sources can be set on the Trusted Sources tab page. Signed macros from a trusted source are allowed to run. In addition, any macro from a trusted file location is allowed to run. All other macros require your confirmation."
-msgstr ""
+msgstr "Op de ljepper Betroubere boarnen kinne jo dizze boarnen ynstelle. Makro's mei in digitale ûndertekening út betroubere boarnen kinne útfierd wurde. Dêrneist kinne alle makro's dy't fan in betroubere boarne weikomme, útfierd wurde. Foar alle makro's is jo befêstiging nedich."
#. 2DyAP
#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:65
@@ -566,7 +566,7 @@ msgstr ""
#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:78
msgctxt "extended_tip|high"
msgid "Trusted sources can be set on the Trusted Sources tab page. Only signed macros from a trusted source are allowed to run. In addition, any macro from a trusted file location is allowed to run."
-msgstr ""
+msgstr "Op de ljepper Betroubere boarnen kinne jo dizze boarnen ynstelle. Makro's mei in digitale ûndertekening út betroubere boarnen kinne útfierd wurde. Dêrneist kinne alle makro's dy't fan in betroubere boarne weikomme, útfierd wurde."
#. SDdW5
#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:89
@@ -584,7 +584,7 @@ msgstr ""
#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:102
msgctxt "extended_tip|vhigh"
msgid "Trusted file locations can be set on the Trusted Sources tab page. Any macro from a trusted file location is allowed to run."
-msgstr ""
+msgstr "Op de ljepper Betroude boarnen kinne jo betroude triem lokaasje ynstelle. Alle makro's dy fan in betroude triem lokaasje komme, kinne útfierd wurde."
#. 5kj8c
#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:68
@@ -596,13 +596,13 @@ msgstr "_Besjen..."
#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:75
msgctxt "extended_tip|viewcert"
msgid "Opens the View Certificate dialog for the selected certificate."
-msgstr ""
+msgstr "Iepenet it dialoochskerm Sertifikaat werjaan foar it selektearre sertifikaat"
#. WADee
#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:94
msgctxt "extended_tip|removecert"
msgid "Removes the selected certificate from the list of trusted certificates."
-msgstr ""
+msgstr "Wisket it selektearre sertifikaat út de list mei betroude sertifikaten."
#. Y7LGC
#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:134
@@ -626,7 +626,7 @@ msgstr "Ferrin datum"
#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:171
msgctxt "extended_tip|certificates"
msgid "Lists the trusted certificates."
-msgstr ""
+msgstr "Lit de betroude sertifikaten sjen."
#. xWF8D
#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:206
@@ -650,19 +650,19 @@ msgstr "Ta_heakje..."
#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:275
msgctxt "extended_tip|addfile"
msgid "Opens a folder selection dialog. Select a folder from which all macros are allowed to execute."
-msgstr ""
+msgstr "Iepenet in dialoochskerm foar map seleksje. Selektearje in map fan wêr alle makro's útfierd kinne wurde."
#. jSg2w
#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:294
msgctxt "extended_tip|removefile"
msgid "Removes the selected folder from the list of trusted file locations."
-msgstr ""
+msgstr "Wisket de selektearre map út de list fan betroude triem lokaasjes."
#. yZBo6
#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:345
msgctxt "extended_tip|locations"
msgid "Document macros are only executed if they have been opened from one of the following locations."
-msgstr ""
+msgstr "Dokumint makro's wurde allinne útfierd as se iepene wurde fan út ien fan de folgjende lokaasjes."
#. irXcj
#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:383
@@ -722,7 +722,7 @@ msgstr "Sertifikaat brûkme"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:210
msgctxt "selectcertificatedialog|extended_tip|signatures"
msgid "Select the certificate that you want to digitally sign the current document with."
-msgstr ""
+msgstr "Selektearje it sertifikaat wêrmei jo it aktive dokumint digitaal ûndertekenje wolle."
#. uwjMQ
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:223
@@ -734,7 +734,7 @@ msgstr "Sertifikaat besjen..."
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:230
msgctxt "selectcertificatedialog|extended_tip|viewcert"
msgid "Opens the View Certificate dialog where you can examine the selected certificate."
-msgstr ""
+msgstr "Iepenet it dialoochskerm Sertifikaat werjaan wêr jo it selektearre sertifikaat kinne trochnimme."
#. dbgmP
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:248
@@ -746,13 +746,13 @@ msgstr "Beskriuwing:"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:263
msgctxt "selectcertificatedialog|extended_tip|description"
msgid "Type a purpose for the signature."
-msgstr ""
+msgstr "Fier in doel foar de ûndertekening yn."
#. snAQh
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:298
msgctxt "selectcertificatedialog|extended_tip|SelectCertificateDialog"
msgid "Select the certificate that you want to digitally sign the current document with."
-msgstr ""
+msgstr "Selektearje it sertifikaat wêrmei jo it aktive dokumint digitaal ûndertekenje wolle."
#. nBkSy
#: xmlsecurity/uiconfig/ui/viewcertdialog.ui:8
diff --git a/source/ga/sc/messages.po b/source/ga/sc/messages.po
index bb7e46e58d7..506449306cf 100644
--- a/source/ga/sc/messages.po
+++ b/source/ga/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-03-20 13:54+0000\n"
"Last-Translator: Séamus Ó Ciardhuáin <sociardhuain@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28633,38 +28633,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Úsáid méadraigh phrintéara le haghaidh formáidiú téacs"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Aibhsigh rogh_nú i gceanntásc colúin/ró"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Nuashonraigh na tagairtí nuair a shórtálann tú raon ceall"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Socruithe Ionchurtha"
diff --git a/source/ga/sfx2/messages.po b/source/ga/sfx2/messages.po
index 8b452cc8f7f..b3d50345bcb 100644
--- a/source/ga/sfx2/messages.po
+++ b/source/ga/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2019-03-07 15:25+0000\n"
"Last-Translator: Séamus Ó Ciardhuáin <sociardhuain@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1641,286 +1641,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Dún an Pána"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Cuir i nDuga"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Tóg as Duga"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Níos Mó Roghanna"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Dún an Barra Taoibh"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Socruithe an Bharra Taoibh"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Saincheapadh"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Fill ar na Réamhshocruithe"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Dún an Barra Taoibh"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Coirceog"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Cuar Gorm"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Gormchló"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Gealghorm"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Dearg Galánta"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fócas"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Éan coille"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspioráid"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Soilse"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Glas Méith"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Ceannchathair"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Gorm an Mheán Oíche"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Léaráid Nádúir"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Peann Luaidhe"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Pianó"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Punann"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Dul chun cinn"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Luí Gréine"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Seanlaethanta"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Gléineach"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Résumé"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Réamhshocrú"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Nua-Aimseartha"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Litir ghnó nua-aimseartha, sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Litir ghnó nua-aimseartha, serif"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Cárta gnó le lógó"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Bain"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Glan Uile"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Fad an fhocail faire"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Is cúis le fadhbanna comh-inoibritheachta é an focal faire a chuir tú isteach. Ba chóir duit focal faire níos giorra ná 52 beart nó níos faide ná 55 beart a roghnú."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4142,6 +4106,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Scrios..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/ga/starmath/messages.po b/source/ga/starmath/messages.po
index 92f1cab388a..b1095f97882 100644
--- a/source/ga/starmath/messages.po
+++ b/source/ga/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-05-08 13:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "nó"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Sín +"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Sín -"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Sín +-"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Sín -+"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "NOT Boole"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Suimiú +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Dealú -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Iolrú (Ponc)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Iolrú (×)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Iolrú (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Roinnt (Slais)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Roinnt (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Roinnt (Codán)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Slais i gCiorcal"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Ponc i gCiorcal"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Míneas i gCiorcal"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Plus i gCiorcal"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Iolrach Teinseora"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "AND Boole"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "OR Boole"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Cothrom Le"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Ní Cothrom Le"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Níos Lú Ná"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Níos Mó Ná"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Níos Lú Ná, Nó Cothrom Le"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Níos Mó Ná, Nó Cothrom Le"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Níos Lú Ná, Nó Cothrom Le"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Níos Mó Ná, Nó Cothrom Le"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "I bhFad Níos Lú Ná"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "I bhFad Níos Mó Ná"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Sainmhínithe Mar"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Is Iomchuí Le"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Is neaschothrom le"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Is Cosúil Le"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Is cosúil nó cothrom le"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Is Comhréireach Le"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Is Ortagánach Le"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Is Comhthreomhar Le"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "I dtreo"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Comhfhreagraíonn le (Ar Chlé)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Comhfhreagraíonn le (Ar Dheis)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "atá i"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "nach bhfuil i"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "ar leis"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Aontas"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Idirmhír"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Difríocht"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Fo-thacar"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Fo-Thacar Nó Cothrom Le"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "For-thacar"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "For-thacar Nó Cothrom Le"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Nach bhfuil ina fho-thacar"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Nach bhfuil ina fho-thacar nó cothrom le"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Nach bhfuil ina fhor-thacar"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Nach bhfuil ina fhor-thacar nó cothrom le"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Luach Uimhriúil"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Iolrán"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Fréamh Chearnach"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "Fréamh N-ú"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Feidhm Easpónantúil"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Feidhm Easpónantúil"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Logartam Aiceanta"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logartam"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Síneas"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Comhshíneas"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangant"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Comhthangant"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arcshíneas"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arc-chomhshíneas"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arcthangant"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arc-chomhthangant"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Síneas Hipearbóileach"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Comhshíneas Hipearbóileach"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Tangant Hipearbóileach"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Comhthangant Hipearbóileach"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Síneas Hipearbóileach Inbhéartach"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Comhshíneas Hipearbóileach Inbhéartach"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Tangant Hipearbóileach Inbhéartach"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Comhthangant Hipearbóileach Inbhéartach"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Suim"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Foscript Faoin tSuim"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Forscript ar an tSuim"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Forscript/Foscript na Suime"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Iolrach"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Foscript Faoin Iolrach"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Forscript ar an Iolrach"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Forscript/Forscript an Iolraigh"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Comhiolrach"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Foscript faoin Chomhiolrach"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Forscript ar an gComhiolrach"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Forscript/Foscript an Chomhiolraigh"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Teorainn"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Foscript faoin Teorainn"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Forscript ar an Teorainn"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Forscript/Foscript na Teorann"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Teorainn Íochtarach"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Foscript faoin Teorainn Íochtarach"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Forscript ar an Teorainn Íochtarach"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Forscript/Foscript na Teorann Íochtaraí"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Teorainn Uachtarach"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Foscript faoin Teorainn Uachtarach"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Forscript ar an Teorainn Uachtarach"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Forscript/Foscript na Teorann Uachtaraí"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Is Ann"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Ní Ann"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Do gach"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Suimeálaí"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Foscript faoin Suimeálaí"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Forscript ar an Suimeálaí"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Forscript/Foscript an tSuimeálaí"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Suimeálaí Dúbailte"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Foscript faoin Suimeálaí Dúbailte"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Forscript ar an Suimeálaí Dúbailte"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Forscript/Foscript an tSuimeálaí Dhúbailte"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Suimeálaí Triarach"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Foscript faoin Suimeálaí Triarach"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Forscript ar an Suimeálaí Triarach"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Forscript/Foscript an tSuimeálaí Thriaraigh"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Cuarshuimeálaí"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Foscript faoin Chuarshuimeálaí"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Forscript ar an gCuarshuimeálaí"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Forscript/Foscript an Chuarshuimeálaí"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Cuarshuimeálaí Dúbailte"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Foscript faoin Chuarshuimeálaí Dúbailte"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Forscript ar an gCuarshuimeálaí Dúbailte"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Forscript/Foscript an Chuarshuimeálaí Dhúbailte"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Cuarshuimeálaí Triarach"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Foscript faoin Chuarshuimeálaí Triarach"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Forscript ar an gCuarshuimeálaí Triarach"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Forscript/Foscript an Chuarshuimeálaí Thriaraigh"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Agúid"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Líne Thuas"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Comhartha Giorrachta"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Cuairín Droim Ar Ais"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Ciorcal"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Ponc"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Ponc Dúbailte"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Ponc Triarach"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Graif"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Cuairín"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tilde"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Saighead Veicteora"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Líne Faoi"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Líne Thart"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Líne Tríd"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Trédhearcach"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Cló Trom"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Cló Iodálach"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Athraigh an méid"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Athraigh an Cló"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Dath Dubh"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Dath Gorm"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Dath Uaine"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Dath Dearg"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Dath Liath"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Dath Líoma"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Dath Marún"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Dath Dúghorm"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Dath na hOlóige"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Dath Corcra"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Dath Airgid"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Dath Gormghlas"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Dath Buí"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Lúibíní Grúpa"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Lúibíní Cruinne"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Lúibíní Cearnacha"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Lúibíní Dúbailte Cearnacha"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Lúibíní Slabhracha"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Lúibíní Uilleacha"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Mullach Uachtarach"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Urlár"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Línte Aonair"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Línte Dúbailte"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Lúibíní Oibríochta"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Lúibíní Cruinne (Inscálaithe)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Lúibíní Cearnacha (Inscálaithe)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Lúibíní Dúbailte Cearnacha (Inscálaithe)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Lúibíní Slabhracha (Inscálaithe)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Lúibíní Uilleacha (Inscálaithe)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Mullach (Inscálaithe)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Urlár (Inscálaithe)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Línte Aonair (Inscálaithe)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Línte Dúbailte (Inscálaithe)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Lúibíní Oibríochta (Inscálaithe)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Luacháilte Ag"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Barr Lúibíní Slabhracha (Inscálaithe)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Bun Lúibíní Slabhracha (Inscálaithe)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Foscript Ar Dheis"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Cumhacht"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Foscript Ar Chlé"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Forscript Ar Chlé"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Foscript Faoi"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Forscript Thuas"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Bearna Bheag"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Bán"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Líne Nua"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Cruach Ingearach (2 Bhall)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Cruach Ingearach"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Cruach de Mhaitrísí"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Ailínigh Ar Chlé"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Ailínigh Sa Lár"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Ailínigh Ar Dheis"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Aleph"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Tacar Folamh"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Cuid Réadach"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Páirt Shamhailteach"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Éigríoch"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Neamhiomlán"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstraß p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Lárphoncanna"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Poncanna go Barr"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Poncanna go Bun"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Poncanna ag an mBun"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Poncanna Go hIngearach"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Comhchaitéinigh"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Roinnt (slais leathan)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Roinnt (frithshlais leathan)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "a roinneann"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "nach roinneann"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Saighead Dhúbailte Chlé"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Saighead Dhúbailte Dheas agus Chlé"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Saighead Dhúbailte Dheas"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Na hUimhreacha Aiceanta"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Na Slánuimhreacha"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Na hUimhreacha Cóimheasta"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Na Réaduimhreacha"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Na hUimhreacha Coimpléascacha"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Cuairín Mór"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Tilde Mór"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Saighead Mhór Veicteora"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h-Barra"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda-Barra"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Saighead Chlé"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Saighead Dheas"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Saighead Suas"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Saighead Síos"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Gan spás"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Roimh"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Roimh nó cothrom le"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Roimh nó coibhéiseach le"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Tar éis"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Tar éis nó cothrom le"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Tar éis nó coibhéiseach le"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Níl roimh"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Níl tar éis"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Oibreoirí Aonártha/Dénártha"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Gaolta"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Oibríochtaí ar Thacair"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Feidhmeanna"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Oibreoirí"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Tréithe"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Lúibíní"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formáidí"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Eile"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Samplaí"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Caighdeánach"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Cló Iodálach"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Trom"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "dubh"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "gorm"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "uaine"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "dearg"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "liath"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "líoma"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "marún"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "dúghorm"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "dath na holóige"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "corcra"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "airgead"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "gormghlas"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "buí"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "folaigh"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "méid"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "cló"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "ar chlé"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "sa lár"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "ar dheis"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Orduithe"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Foirmle"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Cáipéis á sábháil..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Foirmle %PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "EARRÁID : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Carachtar gan choinne"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Teaghrán comharthach gan súil leis"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Bhíothas ag súil le '{'"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Bhíothas ag súil le '}'"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Bhíothas ag súil le '('"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Bhíothas ag súil le ')'"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Siombailí ar chlé agus ar dheis mí-oiriúnaithe"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Bhíothas ag súil le 'fixed', 'sans', nó 'serif'"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "Teaghrán comharthach gan súil leis tar éis 'size'"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Ní cheadaítear ailíniú dúblach"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Ní cheadaítear foscripteanna/forscripteanna dúbailte"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Bhíothas ag súil le '#'"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Dath de dhíth"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Bhíothas ag súil le 'RIGHT'"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Inneachar"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Teideal"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Téacs na ~foirmle"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Im~línte"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Méid"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Bun~mhéid"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Laghdaigh go dtí an ~leathanach"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Scálú"
diff --git a/source/ga/svtools/messages.po b/source/ga/svtools/messages.po
index 823511751a9..33ca3f16a57 100644
--- a/source/ga/svtools/messages.po
+++ b/source/ga/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-03-20 13:43+0000\n"
"Last-Translator: Séamus Ó Ciardhuáin <sociardhuain@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Cealaigh: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "A~rís: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Téacs neamhfhormáidithe"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Téacs neamhfhormáidithe (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Mapa Giotán (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Meiteachomhad Graphics Device Interface (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Formáid líníochta %PRODUCTNAME"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Eolas Stádais ó Nasc Inmheánach Svx"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Nasc %PRODUCTNAME (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Leabharmharc Netscape"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Formáid Star server"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Formáid Star object"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Réad Feidhmchláirín"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Réad Breiseáin"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Réad StarWriter 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Réad StarWriter 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Réad StarWriter 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Réad StarWriter/Web 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Réad StarWriter/Web 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Réad StarWriter/Master 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Réad StarWriter/Master 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Réad StarDraw"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Réad StarDraw 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Réad StarImpress 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Réad StarDraw 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Réad StarCalc"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Réad StarCalc 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Réad StarCalc 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Réad StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Réad StarChart 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Réad StarChart 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Réad StarImage"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Réad StarImage 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Réad StarImage 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Réad StarMath"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Réad StarMath 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Réad StarMath 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Réad StarObject Paint"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Hypertext Markup Language (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (nasc DDE)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Réad Microsoft Word"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Réad StarFrameSet"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Réad cáipéise Office"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Faisnéis na cáipéise nótaí"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Cáipéis Sfx"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Réad StarChart 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Réad Grafaice"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Réad Writer ó OpenOffice.org 1.0"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Réad Writer/Web ó OpenOffice.org 1.0"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Réad Writer/Master ó OpenOffice.org 1.0"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Réad Draw ó OpenOffice.org 1.0"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Réad Impress ó OpenOffice.org 1.0"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Réad Calc ó OpenOffice.org 1.0"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Réad Chart ó OpenOffice.org 1.0"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Réad Math ó OpenOffice.org 1.0"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Meiteachomhad Windows"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Réad foinse sonraí"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tábla foinse sonraí"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Iarratas SQL"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Dialóg OpenOffice.org 1.0"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Nasc"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Formáid HTML gan nótaí"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Níorbh fhéidir an réad % a ionsá."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Níorbh fhéidir an réad ón chomhad % a ionsá."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Réada breise"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Foinse anaithnid"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Beart"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "kB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1234 +501,1234 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfa-Uimhriúil"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Gnáth"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Tacar carachtar"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Foclóir"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Stríoc"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Fréamh"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Leabhar teileafóin"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Foghrach (alfa-uimhriúil ar dtús)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Foghrach (alfa-uimhriúil ar deireadh)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfa-Uimhriúil"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Foclóir"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Fréamh"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Stríoc"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Foghrach (alfa-uimhriúil ar dtús, grúpáilte de réir siollaí)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Foghrach (alfa-uimhriúil ar dtús, grúpáilte de réir consan)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Foghrach (alfa-uimhriúil ar deireadh, grúpáilte de réir siollaí)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Foghrach (alfa-uimhriúil ar deireadh, grúpáilte de réir consan)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Éadrom"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Cló Iodálach Éadrom"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Gnách"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Cló Iodálach"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Trom"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Iodálach Trom"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Dubh"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Iodálach Dubh"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Leabhar"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Trom Fiar"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Comhdhlúite"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Comhdhlúite Trom"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Comhdhlúite Trom Iodálach"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Comhdhlúite Trom Fiar"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Comhdhlúite Iodálach"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Comhdhlúite Fiar"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "An-Éadrom"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "An-Éadrom Iodálach"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Fiar"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Leath-throm"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Leath-throm Iodálach"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Úsáidfear an cló céanna ar do phrintéir agus ar do scáileán."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Is cló printéara í seo. Seans go mbeidh an íomhá ar an scáileán difriúil."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Insamhlófar an stíl cló seo nó úsáidfear an stíl is gaire di."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Níl an cló seo suiteáilte. Úsáidfear an cló is gaire dó."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Bog go dtí an Baile"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Bog Faoi Chlé"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Bog Faoi Dheis"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Bog go dtí an Deireadh"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Cuir Leis"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Rialóir Cothrománach"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Rialóir Ingearach"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Tairseach 1 ghiotáin"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Díodánach 1-ghiotán"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Liathscála 4-ghiotán"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Dath 4-ghiotán"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Liathscála 8-ngiotán"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Dath 8-ngiotán"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Fíordhath 24-giotán"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Tá thart ar %1 KB cuimhne ag teastáil le haghaidh an íomhá seo."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Tá thart ar %1 KB cuimhne ag teastáil le haghaidh an íomhá seo; %2 KB méid an chomhaid."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "%1 KB méid an chomhaid."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "óstríomhaire"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "CMIS Eile"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Réidh"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Sos"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Ag feitheamh le scriosadh"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Gafa"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Á Thúsú"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Ar Feitheamh"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Á théamh"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Á Phróiseáil"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Á Phriontáil"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "As Líne"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Earráid"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Freastalaí Anaithnid"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Tranglam páipéir"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Níl go leor páipéar ann"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Fotha láimhe"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Fadhb le páipéar"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/A gníomhach"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Bosca aschur lán"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Tonóir gann"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Gan tonóir"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Scrios Leathanach"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Idirghabháil úsáideora de dhíth"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Cuimhne easnamhach"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Cumhdach oscailte"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Mód sábhála cumhachta"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Printéir réamhshocraithe"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d cáipéis"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<gan luach>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Comhlacht"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Roinn"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Ainm"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Sloinne"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Sráid"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Tír"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Cód Poist"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Cathair"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Teideal"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Post"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Beannú"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Túslitreacha"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Beannú deiridh dea-mhéine"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Fón: Baile"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Fón: Obair"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Ríomhphost"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nóta"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Úsáideoir 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Úsáideoir 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Úsáideoir 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Úsáideoir 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Aitheantas"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Stát"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Fón: Oifig"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Glaoire"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Fón Póca"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Fón: Eile"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Féilire"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Tabhair cuireadh"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ $user$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Athraíodh cumraíocht %PRODUCTNAME. Faoi %PRODUCTNAME - Sainroghanna - %PRODUCTNAME - Casta, roghnaigh an timpeallacht amrite Java gur mian leat a bheith úsáidte ag %PRODUCTNAME."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Athraíodh cumraíocht %PRODUCTNAME. Faoi Uirlisí - Roghanna - %PRODUCTNAME - Casta, roghnaigh an timpeallacht amrite Java gur mian leat a bheith úsáidte ag %PRODUCTNAME."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "Tá timpeallacht amrite Java (JRE) de dhíth ar %PRODUCTNAME chun an tasc seo a chur i gcrích. Ach tá fadhbanna leis an JRE roghnaithe. Roghnaigh leagan eile, nó déan suiteáil ar JRE nua agus roghnaigh faoi %PRODUCTNAME - Sainroghanna - %PRODUCTNAME - Casta é."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "Tá timpeallacht amrite Java (JRE) de dhíth ar %PRODUCTNAME chun an tasc seo a chur i gcrích. Ach tá fadhbanna leis an JRE roghnaithe. Roghnaigh leagan eile, nó déan suiteáil ar JRE nua agus roghnaigh faoi Uirlisí - Roghanna - %PRODUCTNAME - Casta é."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE De Dhíth"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Roghnaigh JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE lochtach"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Bunchód"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Comhad leabharmharc"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafaic"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Comhad cumraíochta"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Feidhmchlár"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tábla bunachair sonraí"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Comhad córais"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Cáipéis Microsoft Word"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Comhad cabhrach"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Cáipéis HTML"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Comhad cartlainne"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Logchomhad"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Bunachar Sonraí StarOffice"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Máistircháipéis StarWriter 4.0 / 5.0"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Íomhá StarOffice"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Comhad Téacs"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Nasc"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Teimpléad StarOffice 3.0 - 5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Cáipéis Microsoft Excel"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Teimpléad Microsoft Excel"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Baisc-chomad"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Comhad"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Fillteán"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Cáipéis Téacs"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Scarbhileog"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Láithreoireacht"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Líníocht"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Cáipéis HTML"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Máistircháipéis"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Foirmle"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Bunachar Sonraí"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Teimpléad Scarbhileoige OpenOffice.org 1.0"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Teimpléad Líníochta OpenOffice.org 1.0"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Teimpléad Láithreoireachta OpenOffice.org 1.0"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Teimpléad Cáipéise Téacs OpenOffice.org 1.0"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Tiomántán logánta"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Tiomántán diosca"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Tiomántán CD-ROM"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Ceangal líonra"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Cáipéis Microsoft PowerPoint"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Teimpléad Microsoft PowerPoint"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Seó Microsoft PowerPoint"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Foirmle OpenOffice.org 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Cairt OpenOffice.org 1.0"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Líníocht OpenOffice.org 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Scarbhileog OpenOffice.org 1.0"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Láithreoireacht OpenOffice.org 1.0"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Cáipéis Téacs OpenOffice.org 1.0"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Máistircháipéis OpenOffice.org 1.0"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Cáipéis MathML"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Bunachar Sonraí OpenDocument"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Líníocht OpenDocument"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Foirmle OpenDocument"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Máistircháipéis OpenDocument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Láithreoireacht OpenDocument"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Scarbhileog OpenDocument"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Téacs OpenDocument"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Teimpléad Scarbhileoige OpenDocument"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Teimpléad Líníochta OpenDocument"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Teimpléad Láithreoireachta OpenDocument"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Teimpléad Téacs OpenDocument"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Eisínteacht %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Litreoir Hunspell"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Fleiscínitheoir Libhyphen"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Teasáras MyThes"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/ga/svx/messages.po b/source/ga/svx/messages.po
index 077e4047edd..adda95e23e1 100644
--- a/source/ga/svx/messages.po
+++ b/source/ga/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-02-19 23:16+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Irish <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/ga/>\n"
@@ -16332,11 +16332,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Saoró_ga"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_Nótaí"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/ga/sw/messages.po b/source/ga/sw/messages.po
index 4c914bc77d1..a1655804db6 100644
--- a/source/ga/sw/messages.po
+++ b/source/ga/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-03-07 16:04+0000\n"
"Last-Translator: Séamus Ó Ciardhuáin <sociardhuain@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17457,86 +17457,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Ginearálta"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "Ceanntei_deal"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "_Ataispeáin rónna ceannteidil ar leathanaigh nua"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Ná _roinn tábla trasna leathanach"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Ceann_rónna:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Roghanna"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Stíleanna"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20050,289 +20056,289 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Scoránaigh an Máistiramharc"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Amharc Nascleanúna Inneachair"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Ceanntásc"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Buntásc"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Ancaire<->Téacs"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Socraigh Meabhrúchán"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Leibhéil na gCeannteideal ar Taispeáint"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Bosca Liosta Ann/As"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Leibhéal Níos Airde"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Leibhéal Níos Ísle"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Ardaigh an Chaibidil"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Ísligh an Chaibidil"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Mód Tarraingthe"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Cáipéis"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Fuinneog Ghníomhach"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Scoránaigh an Máistiramharc"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Eagar"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Nuashonraigh"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Ionsáigh"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Sábháil an tÁbhar freisin"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Bog Suas"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Bog Síos"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/gd/sc/messages.po b/source/gd/sc/messages.po
index 838a8072e80..db108e236ca 100644
--- a/source/gd/sc/messages.po
+++ b/source/gd/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-08-21 09:49+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28632,38 +28632,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Cleachd meatraigeach a' chlò-bhualadair airson fòrmatadh an teacsa"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "_Comharraich na thagh thu ann am bannan-cinn cholbhan/ràghan"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Ùraich na reifreans nuair a nithear seòrsachadh rainse cheallan"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Roghainnean an ion-chuir"
diff --git a/source/gd/sfx2/messages.po b/source/gd/sfx2/messages.po
index 30a38483796..e0294c39af4 100644
--- a/source/gd/sfx2/messages.po
+++ b/source/gd/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2019-08-21 09:40+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1641,286 +1641,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Dùin an leòsan"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Docaich"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Dì-dhocaich"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Barrachd roghainnean"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Dùin deic a' bhàir-thaoibh"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Roghainnean a’ bhàr-taoibh"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Gnàthachadh"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Aisig na roghainnean bunaiteach"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Dùin am bàr-taoibh"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Sgeap"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Lùb ghorm"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Lethbhreac-gorm"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Gorm soilleir"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Dearg leòmach"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fòcas"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Eun na coille"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Brosnachadh"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Solais"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Uaine ’s torrach"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Baile mòr"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Gorm meadhan na h-oidhche"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Sealladh nàdair"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Peansail"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piàna"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Adhartas"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Laighe na grèine"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Na làithean a dh’aom"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Beòthail"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Résumé"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Bunaiteach"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Ùr-nòsach"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Litir gnìomhachais ùr-nòsach sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Litir gnìomhachais ùr-nòsach le serifs"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Cairt-ghnìomhachais le suaicheantas"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Thoir air falbh"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Falamhaich na h-uile"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Faid an fhacail-fhaire"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Tha am facal-faire a chuir thu a-steach ag adhbharachadh duilgheadasan eadar-obrachadh. Cuir a-steach fear a tha nas giorra na 52 bytes no fear a tha nas fhaide na 55 bytes."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4142,6 +4106,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Sguab às..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/gd/starmath/messages.po b/source/gd/starmath/messages.po
index 8591772c681..04c5a831f58 100644
--- a/source/gd/starmath/messages.po
+++ b/source/gd/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2019-08-21 09:35+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "no"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Comharra +"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Comharra -"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Comharra +-"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Comharra -+"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "NOT Booleanach"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Cur ris +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Toirt air falbh -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Iomadachadh (Dotag)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Iomadachadh (x )"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Iomadachadh (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Roinneadh (Slais)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Roinneadh (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Roinneadh (Bloigh)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Slais mun a bheil cearcall"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Dotag mun a bheil cearcall"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Minus mun a bheil cearcall"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Plus mun a bheil cearcall"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Bathar teinseoir"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "AND Booleanach"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "OR Booleanach"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "a tha co-ionnann ri"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "nach eil co-ionnann ri"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "a tha nas lugha na"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "a tha nas motha na"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "a tha nas lugha no co-ionnann ri"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "a tha nas motha na no co-ionnann ri"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "a tha nas lugha no co-ionnann ri"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "a tha nas motha na no co-ionnann ri"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "a tha fada nas lugha na"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "a tha fada nas motha na"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "agus seo an deifinisean aige"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "a tha co-chòrdach ri"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "a tha mu thuaiream co-ionnann ri"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "a tha coltach ris"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "a tha coltach ri no co-ionnann ri"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "a tha co-rèireach ri"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "a tha ortogonach ri"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "a tha co-shìnte ri"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Gu ruige"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "A’ co-fhreagairt ri (clì)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "A’ co-fhreagairt ri (deas)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "a tha ann an"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "nach eil ann an"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "aig a bheil"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Aonadh"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Eadar-ghearradh"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Diofar"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "fo-sheata"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "fo-sheata no co-ionnann ri"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "os-sheata"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "os-sheata no co-ionnann ri"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "nach eil 'na fho-sheata"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "nach eil 'na fho-sheata no co-ionnann ri"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "nach eil 'na os-sheata"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "nach eil 'na os-sheata no co-ionnann ri"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Luach absaloideach"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Factarail"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Freumh ceàrnagach"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "Nmh freumh"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Foincsean easbonantail"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Foincsean easbonantail"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Log-àireamh nàdarra"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Log-àireamh"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sìneas"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Co-shìneas"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Beantan"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Co-bheantan"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arc-shìneas"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arc-cho-shìneas"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arc-bheantan"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arc-cho-bheantan"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Sìneas os-bhoileach"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Co-shìneas os-bhoileach"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Beantan os-bhoileach"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Co-bheantan os-bhoileach"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Sìneas os-bhoileach àrainne"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Co-shìneas os-bhoileach àrainne"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Beantan os-bhoileach àrainne"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Co-bheantan os-bhoileach àrainne"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Suim"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Suim fo-sgrìobhte aig a’ bhonn"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Suim os-sgrìobhte aig a' bharr"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Suim fo/os-sgrìobhte"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Toradh"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Toradh fo-sgrìobhte aig a' bhonn"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Toradh os-sgrìobhte aig a' bharr"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Toradh fo/os-sgrìobhte"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Co-thoradh"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Co-thoradh fo-sgrìobhte aig a' bhonn"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Co-thoradh os-sgrìobhte aig a' bharr"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Co-thoradh fo/os-sgrìobhte"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Limes"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Limes fo-sgrìobhte aig a' bhonn"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Limes os-sgrìobhte aig a' bharr"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Limes fo/os-sgrìobhte"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Crìoch ìochdarach"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Crìoch ìochdarach, fo-sgrìobhte ’s aig a’ bhonn"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Crìoch ìochdarach, os-sgrìobhte aig a’ bharr"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Crìoch ìochdarach, fo-sgrìobhte ’s os-sgrìobhte"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Crìoch uachdarach"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Crìoch uachdarach, fo-sgrìobhte ’s aig a’ bhonn"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Crìoch uachdarach, os-sgrìobhte aig a’ bharr"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Crìoch uachdarach, fo-sgrìobhte ’s os-sgrìobhte"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "tha na leanas ann"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "chan eil na leanas ann"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "airson a h-uile"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Innteagrail"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Innteagrail fo-sgrìobhte aig a' bhonn"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Innteagrail os-sgrìobhte aig a' bharr"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Innteagrail fo/os-sgrìobhte"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Innteagrail dhùbailte"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Innteagrail dhùbailte fo-sgrìobhte aig a' bhonn"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Innteagrail dhùbailte os-sgrìobhte aig a' bharr"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Innteagrail dhùbailte fo/os-sgrìobhte"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Innteagrail thrìbilte"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Innteagrail thrìbilte fo-sgrìobhte aig a' bhonn"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Innteagrail thrìbilte os-sgrìobhte aig a' bharr"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Innteagrail thrìbilte fo/os-sgrìobhte"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Innteagrail lùbach"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Innteagrail lùbach fo-sgrìobhte aig a' bhonn"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Innteagrail lùbach os-sgrìobhte aig a' bharr"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Innteagrail lùbach fo/os-sgrìobhte"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Innteagrail lùbach dhùbailte"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Innteagrail lùbach dhùbailte fo-sgrìobhte aig a' bhonn"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Innteagrail lùbach dhùbailte os-sgrìobhte aig a' bharr"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Innteagrail lùbach dhùbailte fo/os-sgrìobhte"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Innteagrail lùbach thrìbilte"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Innteagrail lùbach thrìbilte fo-sgrìobhte aig a' bhonn"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Innteagrail lùbach thrìbilte os-sgrìobhte aig a' bharr"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Innteagrail lùbach thrìbilte fo/os-sgrìobhte"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Stràc geur"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Loidhne os a chionn"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Breve"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Cuairt-lùb contrarra"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Cearcall"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Dotag"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Dotag dhùbailte"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Dotag thrìbilte"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Stràc trom"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Cuairt-lùb"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tonn"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Saighead vector"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Muirgheadh"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Loidhne foidhe"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Loidhne thairis air"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Loidhne troimhe"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Trìd-shoilleir"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Cruth-clò trom"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Cruth-clò Eadailteach"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Atharraich am meud"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Atharraich an cruth-clò"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Dath dubh"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Dath gorm"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Dath uaine"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Dath dearg"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Dath: Liath"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Dath: Lìomaideag"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Dath: Ciar-dhonn"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Dath: Nèibhidh"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Dath: Crann-ola"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Dath: Purpaidh"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Dath: Airgead"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Dath: Crann-lach"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Dath buidhe"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Bracaidean buidhinn"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Bracaidean cruinne"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Bracaidean ceàrnagach"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Bracaidean ceàrnagach dùbailte"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Bracaidean dualach"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Bracaidean biorach"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Mullach uachdarach"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Làr"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Loidhnichean singilte"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Loidhnichean dùbailte"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Bracaidean gnìomharaiche"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Bracaidean cruinne (so-sgèilichte)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Bracaidean ceàrnagach (so-sgèilichte)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Bracaidean ceàrnagach dùbailte (so-sgèilichte)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Bracaidean dualach (so-sgèilichte)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Bracaidean biorach (so-sgèilichte)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Mullach (so-sgèilichte)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Làr (so-sgèilichte)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Loidhnichean singilte (so-sgèilichte)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Loidhnichean dùbailte (so-sgèilichte)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Bracaidean gnìomharaiche (so-sgèilichte)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Air a luachadh"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Bracaidean gu h-àrd (so-sgèilichte)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Bracaidean gu h-ìosal (so-sgèilichte)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Fo-sgrìobhte air an taobh deas"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Cumhachd"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Fo-sgrìobhte air an taobh chlì"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Os-sgrìobhte air an taobh chlì"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Fo-sgrìobhte aig a' bhun"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Os-sgrìobhte aig a' bharr"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Beàrn bheag"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Bàn"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Loidhne ùr"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Stac inghearach (2 eileamaid)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Stac inghearach"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Stac meatraigs"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Co-thaobhaich ris an làimh chlì"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Co-thaobhaich ris a' mheadhan"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Co-thaobhaich ris an làimh dheas"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Aleph"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Seata bàn"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "An fhìor-phàirt"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "A' phàirt mhac-meanmnach"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Neo-chrìochnachd"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Pàirteach"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Dotagan sa mheadhan"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Dotagan dhan bharr"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Dotagan dhan bhonn"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Dotagan aig a' bhonn"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Dotagan inghearach"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Co-chuibhrich"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Roinneadh (slais leathann)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Roinneadh (slais leathann chontrarra)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "a roinneas"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "nach roinn"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Saighead dhùbailte chlì"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Saighead dhùbailte chlì is dheas"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Saighead dhùbailte dheas"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Seata àireamhan nàdarra"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Seata àireamhan slàna"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Seata àireamhan reusanta"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Seata fhìor-àireamhan"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Seata àireamhan iom-fhillte"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Cuairt-lùb mhòr"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Tonn mòr"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Saighead vector mhòr"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Muirgheadh mhòr"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "Bàr h"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Bàr λ"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Saighead chlì"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Saighead dheas"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Saighead suas"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Saighead sìos"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Gun àite bhàn"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "a tha roimhe"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "a tha ro no co-ionnann ris na leanas"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "a tha ro no coimheasach ris a leanas"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "a tha an dèidh"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "a tha an dèidh no co-ionnann ri"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "a tha an dèidh no coimheasach ri"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "nach eil ro"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "nach eil an dèidh"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Gnìomharaichean aonaraidh/bìnearaidh"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Dàimhean"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Suidhich na gnìomhan"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Foincseanan"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Gnìomharaichean"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Buadhan"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Bracaidean"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Fòrmatan"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Eile"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Buill-eisimpleir"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Cuairt-thomhas"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Co-ionnannachd tomaid is cumhachd"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Teòirim Phythagoras"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Sgaoileadh Gaussach"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Stannardach"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Eadailteach"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Trom"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "dubh"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "gorm"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "uaine"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "dearg"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "liath"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "dath na liomaideig"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "ciar-dhonn"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "gorm a' chabhlaich"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "donn-uaine na dearc-ola"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "purpaidh"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "airgid"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "dath na crann-lach"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "buidhe"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "falaich"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "meud"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "cruth-clò"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "clì"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "meadhan"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "deas"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Àitheantan"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Foirmle"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "A' sàbhaladh na sgrìobhainne..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Foirmle %PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Caractar ris nach robh dùil"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Tòcan ris nach robh dùil"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Bha dùil ri '{'"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Bha dùil ri '}'"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Bha dùil ri '('"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Bha dùil ri ')'"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Tha comharra clì ’s deas ann nach eil a’ freagairt ri chèile"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Tha dùil ri 'fixed', 'sans' no 'serif'"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' ’ga leantainn le comharra ris nach eil dùil"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Chan eil co-thaobhadh dùbailte ceadaichte"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Chan eil fo/os-sgrìobhadh dùbailte ceadaichte"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Bha dùil ri '#'"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Tha feum air dath"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Bha dùil ri 'RIGHT'"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Susbaint"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Tiotal"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Teacsa ~foirmle"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "I~omallan"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Meud"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Am ~meud tùsail"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Co-~fhreagair ris an duilleag"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Sgèileadh"
diff --git a/source/gd/svtools/messages.po b/source/gd/svtools/messages.po
index c78880383b3..762eb4ec72b 100644
--- a/source/gd/svtools/messages.po
+++ b/source/gd/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-08-21 09:32+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Neo-dhèan: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Ath-dhèan: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Ath-dhèa~n: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Teacsa gun fhòrmatadh"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Teacsa gun fhòrmatadh (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Dealbh Bitmap (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface metafile (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich Text Formatting (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich Text Formatting (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Fòrmat tarraing %PRODUCTNAME"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Bitmap/beòthachadh StarView (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Fiosrachadh staid o Svx Internal Link"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Ceangal %PRODUCTNAME (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Comharra-lìn Netscape"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Fòrmat frithealaiche Star"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Fòrmat oibseact Star"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Oibseact aplaid"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Oibseact plugain"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Oibseact StarWriter 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Oibseact StarWriter 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Oibseact StarWriter 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Oibseact StarWriter/lìn 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Oibseact StarWriter/lìn 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Oibseact StarWriter/Master 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Oibseact StarWriter/Master 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Oibseact StarDraw"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Oibseact StarDraw 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Oibseact StarImpress 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Oibseact StarDraw 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Oibseact StarCalc"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Oibseact StarCalc 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Oibseact StarCalc 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Oibseact StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Oibseact StarChart 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Oibseact StarChart 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Oibseact StarImage"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Oibseact StarImage 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Oibseact StarImage 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Oibseact StarMath"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Oibseact StarMath 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Oibseact StarMath 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Oibseact peant StarObject"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE link)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Oibseact Microsoft Word"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Oibseact StarFrameSet"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Oibseact sgrìobhainn Office"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Fiosrachadh sgrìobhainn Notes"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sgrìobhainn Sfx"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Oibseact StarChart 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Oibseact ghrafaigean"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Oibseact OpenOffice.org 1.0 Writer"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Oibseact OpenOffice.org 1.0 Writer/Web"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Oibseact OpenOffice.org 1.0 Writer/Master"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Oibseact OpenOffice.org 1.0 Draw"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Oibseact OpenOffice.org 1.0 Impress"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Oibseact OpenOffice.org 1.0 Calc"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Oibseact OpenOffice.org 1.0 Chart"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Oibseact OpenOffice.org 1.0 Math"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows Metafile"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Oibseact tùs dàta"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Clàr tùs dàta"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Iarrtas SQL"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Còmhradh OpenOffice.org 1.0"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Ceangal"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Fòrmat HTML as aonais nam beachdan"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Cha b’ urrainn dhuinn an t-oibseact % a chur a-steach."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Cha b’ urrainn dhuinn an t-oibseact a chur a-steach on fhaidhle %."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Oibseactan a bharrachd"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Tùs neo-aithnichte"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Baidht"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1234 +501,1234 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Litrichean is àireamhan"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Àbhaisteach"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Seata charactaran"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Faclair"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Stràc"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Taobh na cèille"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Leabhar fòn"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Foineataigeach (litrichean is àireamhan an toiseach)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Foineataigeach (litrichean is àireamhan aig an deireadh)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Litrichean is àireamhan"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Faclair"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Taobh na cèille"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Stràc"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Foineataigeach (litrichean is àireamhan an toiseach, ann am buidhnean a-rèir lidean)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Foineataigeach (litrichean is àireamhan an toiseach, ann am buidhnean a-rèir chonsan)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Foineataigeach (litrichean is àireamhan aig an deireadh, ann am buidhnean a-rèir lidean)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Foineataigeach (litrichean is àireamhan aig an deireadh, ann am buidhnean a-rèir chonsan)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Aotrom"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Eadailteach aotrom"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Àbhaisteach"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Eadailteach"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Trom"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Eadailteach trom"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Dubh"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Eadailteach dubh"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Leabhar"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Trom is claon"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Co-dhlùthaichte"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Co-dhlùthaichte ’s trom"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Co-dhlùthaichte, trom is Eadailteach"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Co-dhlùthaichte, trom is claon"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Co-dhlùthaichte is Eadailteach"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Co-dhlùthaichte ’s claon"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Glè aotrom"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Glè aotrom is Eadailteach"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Claon"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Leth-throm"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Leth-throm is Eadailteach"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Thèid an dearbh-chruth-clò a chleachdadh an dà chuid air a' chlò-bhualadair 's air an sgrìn agad."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Seo cruth-clò clò-bhualadair. Faodaidh gum bi coltas eile air air an sgrìn."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Thèid stoidhle a' chruth-chlò seo a leigeil air no thèid an stoidhle as fhaisge air a chleachdadh."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Cha deach an cruth-chlò a stàladh. Thèid am fear as fhaisge air a chleachdadh."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Gluais dhachaidh"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Gluais gun taobh chlì"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Gluais gun taobh deas"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Gluais gun deireadh"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Cuir ris"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Rùilear còmhnard"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Rùilear inghearach"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Stairsneach 1 bhiot"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bhiot le dithering"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Liath-sgèile 4 biot"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Dathan 4 biot"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Liath-sgèile 8 biot"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Dathan 8 biot"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Fìor-dhathan 24 biot"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Feumaidh an dealbh mu %1 KB a chuimhne."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Feumaidh an dealbh mu %1 KB a chuimhne agus tha am faidhle %2 KB a mheud."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Tha am faidhle %1 KB a mheud."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "òstair"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "CMIS eile"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Deiseil"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "'Na stad"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Ri sguabadh às"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Trang"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "'Ga ullachadh"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "A' feitheamh"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "'Ga bhlàthachadh"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "'Ga phròiseasadh"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "'Ga chlò-bhualadh"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Far loidhne"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Mearachd"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Frithealaiche neo-aithnichte"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Dùmhlachd pàipeir"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Chan eil pàipear gu leòr ann"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Biadhadh a làimh"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Duilgheadas leis a' phàipear"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O gnìomhach"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Tha an treidhe a-mach làn"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Tha an tònair a' fàs gann"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Gun tònair"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Sguab às an duilleag"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Feumaidh an cleachdaiche rud a dhèanamh"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Gainnead cuimhne"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Tha an còmhdachadh fosgailte"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Modh sàbhaladh na cumhachd"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "An clò-bhualadair bunaiteach"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "Sgrìobhainnean %d"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<chan eil gin>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Companaidh"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Roinn"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Ainm"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Sloinneadh"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Sràid"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Dùthaich"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Còd puist"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Baile"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Tiotal"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Dreuchd"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Cruth an t-seòlaidh"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Tùs-litrichean"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Dùrachdan deiridh"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Fòn: Dachaigh"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Fòn: Obair"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Facs"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Post-d"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nòta"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Cleachdaiche 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Cleachdaiche 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Cleachdaiche 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Cleachdaiche 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Sgìre/Còigeamh"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Fòn: Oifis"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pèidsear"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Fòn-làimhe"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Fòn-làimhe: Eile"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Mìosachan"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Thoir cuireadh"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ aig $user$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Chaidh rèiteachadh %PRODUCTNAME atharrachadh. Rach gu %PRODUCTNAME - Roghainnean - %PRODUCTNAME - Tagh an Java Runtime Environment a chleachdas %PRODUCTNAME."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Dh'atharraich rèiteachadh %PRODUCTNAME. Tagh an Java Runtime Environment a bu toigh leat a chleachdadh ann an %PRODUCTNAME fo Innealan - Roghainnean - %PRODUCTNAME."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "Feumaidh %PRODUCTNAME Java Runtime Environment (JRE) mus dèan e seo. Tha an JRE a thagh thu lochdach. Tagh tionndadh eile no stàlaich JRE ùr agus tagh e ann an %PRODUCTNAME - Roghainnean - %PRODUCTNAME."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "Feumaidh %PRODUCTNAME Java Runtime Environment (JRE) gus seo a dhèanamh. Tha an JRE a thagh thu lochdach. Tagh tionndadh eile no stàlaich JRE ùr agus tagh e fo Innealan - Roghainnean - %PRODUCTNAME."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Feum air JRE"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Tagh an JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "Tha an JRE lochdach"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "An còd tùsail"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Faidhle nan comharra-lìn"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafaigean"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Am faidhle rèiteachaidh"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplacaid"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Clàr an stòir-dhàta"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Faidhle an t-siostaim"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Sgrìobhainn MS Word"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Faidhle na cobharach"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Sgrìobhainn HTML"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Faidhle na tasg-lainne"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Faidhle an loga"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Stòr-dàta StarOffice"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Prìomh-sgrìobhainn StarWriter 4.0 / 5.0"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Ìomhaigh StarOffice"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Faidhle teacsa"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Ceangal"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Teamplaid StarOffice 3.0 - 5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Sgrìobhainn MS Excel"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Teamplaid MS Excel"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Faidhle Batch"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Faidhle"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Pasgan"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Sgrìobhainn teacsa"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Cliath-dhuilleag"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Taisbeanadh"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Tarraing"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Sgrìobhainn HTML"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Prìomh-sgrìobhainn"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Foirmle"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Stòr-dàta"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Teamplaid cliath-dhuilleige OpenOffice.org 1.0"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Teamplaid tarraing OpenOffice.org 1.0"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Teamplaid taisbeanaidh OpenOffice.org 1.0"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Teamplaid sgrìobhainn teacsa OpenOffice.org 1.0"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Draibh ionadail"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Draibh diosga"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Draibh CD-ROM"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Ceangal lìonraidh"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Sgrìobhainn MS PowerPoint"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Teamplaid MS PowerPoint"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint Show"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Foirmle OpenOffice.org 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Cairt OpenOffice.org 1.0"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Tarraing OpenOffice.org 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Cliath-dhuilleag OpenOffice.org 1.0"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Taisbeanadh OpenOffice.org 1.0"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Sgrìobhainn teacsa OpenOffice.org 1.0"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Prìomh-sgrìobhainn OpenOffice.org 1.0"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Sgrìobhainn MathML"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Stòr-dàta OpenDocument"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Tarraing OpenDocument"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Foirmle OpenDocument"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Prìomh-sgrìobhainn OpenDocument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Taisbeanadh OpenDocument"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Cliath-dhuilleag OpenDocument"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Teacsa OpenDocument"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Teamplaid cliath-dhuilleige OpenDocument"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Teamplaid tarraing OpenDocument"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Teamplaid taisbeanadh OpenDocument"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Teamplaid teacsa OpenDocument"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Leudachan %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Dearbhair-litreachaidh Hunspell"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Tàthanaiche Libhyphen"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Co-fhaclair MyThes"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Liosta nam faclan a tha ’gan leigeil seachad"
diff --git a/source/gd/svx/messages.po b/source/gd/svx/messages.po
index e8a58fd22bd..804fdc64419 100644
--- a/source/gd/svx/messages.po
+++ b/source/gd/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Gaelic <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/gd/>\n"
@@ -16332,11 +16332,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Saoraga_n"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "Bea_chdan"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/gd/sw/messages.po b/source/gd/sw/messages.po
index a9fecd64737..b170bea7e96 100644
--- a/source/gd/sw/messages.po
+++ b/source/gd/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-04-23 08:16+0000\n"
"Last-Translator: GunChleoc <fios@foramnagaidhlig.net>\n"
"Language-Team: Gaelic <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/gd/>\n"
@@ -17450,86 +17450,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Coitcheann"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "Ceann-sgrìobha_dh"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Ath-nochd ràghan a' cheann-sgrìobhaidh air duilleagan ù_ra"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Na sgoilt an clàr _thairis air duilleagan"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Ràghan a' chinn-sgrìo_bhaidh:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Roghainnean"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Stoidhlean"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20043,289 +20049,289 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Toglaich am maighstir seallaidh"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Susbaint sealladh na seòladaireachd"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Bann-cinn"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Bann-coise"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Acair<->Teacsa"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Suidhich cuimhneachan"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Leibheilean nan ceann-sgrìobhadh ri fhaicinn"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Am bogsa-taghaidh air/dheth"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Àrdaich an leibheil"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Ìslich an leibheil"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Àrdaich a’ chaibideil"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Ìslich a’ chaibideil"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Am modh slaodaidh"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Sgrìobhainn"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Uinneag ghnìomhach"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Toglaich am maighstir seallaidh"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Deasaich"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Ùraich"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Cuir a-steach"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Sàbhail an t-susbaint cuideachd"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Gluais suas"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Gluais sìos"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/gl/cui/messages.po b/source/gl/cui/messages.po
index c793ecb85cd..575671e03f8 100644
--- a/source/gl/cui/messages.po
+++ b/source/gl/cui/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-07 06:35+0000\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/gl/>\n"
"Language: gl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562229287.000000\n"
#. GyY9M
@@ -3401,7 +3401,7 @@ msgstr "Non pode modificar ou eliminar un estilo de cela personalizado? Comprobe
#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Precisa encher unha serie? Seleccione o intervalo de celas e Folla ▸ Encher celas ▸ Encher celas e escolla entre linear, crecente, data e recheo automático."
#. BiSJM
#. local help missing
@@ -3474,7 +3474,7 @@ msgstr "Quere desenvolver filtros XSLT e XML novos?"
#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General."
-msgstr ""
+msgstr "Prema Maiús+F1 para ver calquera suxestión estendida nas caixas de diálogo se «Suxestións estendidas» non estiver activada en Ferramentas ▸ Opcións ▸ %PRODUCTNAME ▸ Xeral."
#. hsZPg
#: cui/inc/tipoftheday.hrc:274
@@ -4682,7 +4682,7 @@ msgstr "BuscaEntrada"
#: cui/uiconfig/ui/additionsdialog.ui:211
msgctxt "additionsdialog|buttonGear"
msgid "Gear Menu"
-msgstr ""
+msgstr "Menú do engrenaxe"
#. CbCbR
#: cui/uiconfig/ui/additionsdialog.ui:212
@@ -5630,7 +5630,7 @@ msgstr "_Definido polo usuario:"
#: cui/uiconfig/ui/borderpage.ui:98
msgctxt "borderpage|userdefft"
msgid "Click edge or corner to cycle through three states: set, unchanged, remove."
-msgstr ""
+msgstr "Prema no bordo ou no recanto para circular entre tres estados: estabelecer, sen cambios e retirar."
#. sRXeg
#: cui/uiconfig/ui/borderpage.ui:111
@@ -5732,7 +5732,7 @@ msgstr "Distan_cia"
#: cui/uiconfig/ui/borderpage.ui:547
msgctxt "borderpage|distanceft"
msgid "Width of shadow"
-msgstr ""
+msgstr "Largura da sombra"
#. gEF6E
#: cui/uiconfig/ui/borderpage.ui:572
diff --git a/source/gl/filter/messages.po b/source/gl/filter/messages.po
index 5d5fc0787a4..b705114fc4e 100644
--- a/source/gl/filter/messages.po
+++ b/source/gl/filter/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-07 06:35+0000\n"
+"PO-Revision-Date: 2020-11-18 15:35+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/filtermessages/gl/>\n"
"Language: gl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562229342.000000\n"
#. 5AQgJ
@@ -1293,7 +1293,7 @@ msgstr "Seleccione para mostrar os niveis dos marcadores até o nivel selecciona
#: filter/uiconfig/ui/pdfuserinterfacepage.ui:403
msgctxt "pdfuserinterfacepage|label4"
msgid "Collapse Outlines"
-msgstr ""
+msgstr "Recoller esquemas"
#. ibYBv
#: filter/uiconfig/ui/pdfviewpage.ui:52
@@ -1461,7 +1461,7 @@ msgstr "Seleccione para xerar un ficheiro PDF que mostre as páxinas nunha colum
#: filter/uiconfig/ui/pdfviewpage.ui:446
msgctxt "pdfviewpage|contfacinglayout"
msgid "Co_ntinuous facing"
-msgstr ""
+msgstr "Co_ntínuas lado a lado"
#. YyCT7
#: filter/uiconfig/ui/pdfviewpage.ui:456
diff --git a/source/gl/helpcontent2/source/text/scalc/01.po b/source/gl/helpcontent2/source/text/scalc/01.po
index 4bbbd66ec0a..e6e35bb53bf 100644
--- a/source/gl/helpcontent2/source/text/scalc/01.po
+++ b/source/gl/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2020-10-22 11:35+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/gl/>\n"
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr ""
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/sdraw.po b/source/gl/helpcontent2/source/text/sdraw.po
index 3a3cbbd389a..4da8f854113 100644
--- a/source/gl/helpcontent2/source/text/sdraw.po
+++ b/source/gl/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-08-21 02:35+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/gl/>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/shared/00.po b/source/gl/helpcontent2/source/text/shared/00.po
index 1650a98e0ed..9d6f0646bb6 100644
--- a/source/gl/helpcontent2/source/text/shared/00.po
+++ b/source/gl/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-09-29 13:35+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/gl/>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "Un bo exemplo de base de datos relacional pode ser unha base de datos con táboas de clientes, compras e facturas. Na táboa das facturas, non hai datos reais de clientes e de compras; no entanto, a táboa contén referencias por medio dunha ligazón relacional, ou unha relación, aos respectivos campos das táboas de clientes e de compras (por exemplo, o campo de ID do cliente da táboa de clientes)."
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>conformidade de rexistro; definición</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "Conformidade de rexistro"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/gl/helpcontent2/source/text/shared/01.po b/source/gl/helpcontent2/source/text/shared/01.po
index 185472b8558..55f4ddcb69e 100644
--- a/source/gl/helpcontent2/source/text/shared/01.po
+++ b/source/gl/helpcontent2/source/text/shared/01.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-07-28 14:35+0000\n"
-"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-21 15:36+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/gl/>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1565277872.000000\n"
#. 3u8hR
@@ -59,7 +59,7 @@ msgctxt ""
"par_id3153528\n"
"help.text"
msgid "<ahelp hid=\".\">If you want to create a document from a template, choose <emph>New - Templates</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Se desexa crear un documento a partir dun modelo, escolla <emph>Novo - Modelos</emph>.</ahelp>"
#. AtGEh
#: 01010000.xhp
@@ -122,7 +122,7 @@ msgctxt ""
"par_id3156153\n"
"help.text"
msgid "Creates a new text document in $[officename] Writer."
-msgstr ""
+msgstr "Crea un documento de texto novo no Writer do ·$[officename]."
#. bPyBi
#: 01010000.xhp
@@ -149,7 +149,7 @@ msgctxt ""
"par_id3154280\n"
"help.text"
msgid "Creates a new spreadsheet document in $[officename] Calc."
-msgstr ""
+msgstr "Crea un documento de folla de cálculo novo no Calc do $[officename]."
#. UxKPD
#: 01010000.xhp
@@ -176,7 +176,7 @@ msgctxt ""
"par_id3154946\n"
"help.text"
msgid "Creates a new presentation document in $[officename] Impress."
-msgstr ""
+msgstr "Crea un documento de presentación novo no Impress do ·$[officename]."
#. ZFD3B
#: 01010000.xhp
@@ -203,7 +203,7 @@ msgctxt ""
"par_id3149167\n"
"help.text"
msgid "Creates a new drawing document in $[officename] Draw."
-msgstr ""
+msgstr "Crea un documento de debuxo novo no Draw no $[officename]"
#. 5yYug
#: 01010000.xhp
@@ -230,7 +230,7 @@ msgctxt ""
"par_idN108D0\n"
"help.text"
msgid "Opens the <link href=\"text/shared/explorer/database/dabawiz00.xhp\"><emph>Database Wizard</emph></link> to create a <link href=\"text/shared/explorer/database/dabadoc.xhp\"><emph>database file</emph></link>."
-msgstr ""
+msgstr "Abre o <link href=\"text/shared/explorer/database/dabawiz00.xhp\"><emph>Asistente de bases de datos</emph></link> para crear un <link href=\"text/shared/explorer/database/dabadoc.xhp\"><emph>ficheiro de base de datos</emph></link>."
#. 9nYdo
#: 01010000.xhp
@@ -338,7 +338,7 @@ msgctxt ""
"par_id3150872\n"
"help.text"
msgid "Creates a new formula document in $[officename] Math."
-msgstr ""
+msgstr "Crea un documento de fórmula novo no Math do $[officename]."
#. FcjgA
#: 01010000.xhp
@@ -365,7 +365,7 @@ msgctxt ""
"par_id3148388\n"
"help.text"
msgid "Opens the <link href=\"text/shared/01/01010200.xhp\" name=\"Labels\"><emph>Labels</emph></link> dialog where you can set the options for your labels, and then creates a new text document for the labels in $[officename] Writer."
-msgstr ""
+msgstr "Abre a caixa de diálogo <link href=\"text/shared/01/01010200.xhp\" name=\"Labels\"><emph>Etiquetas</emph></link>, na que pode indicar as opcións para as etiquetas e despois crea un documento de texto novo para as etiquetas no Writer do $[officename]."
#. RpZ4X
#: 01010000.xhp
@@ -392,7 +392,7 @@ msgctxt ""
"par_id3150968\n"
"help.text"
msgid "Opens the <link href=\"text/shared/01/01010300.xhp\" name=\"Business Cards\"><emph>Business Cards</emph></link> dialog where you can set the options for your business cards, and then creates a new text document in $[officename] Writer."
-msgstr ""
+msgstr "Abre a caixa de diálogo <link href=\"text/shared/01/01010300.xhp\" name=\"Business Cards\"><emph>Tarxetas de visita</emph></link>, na que pode indicar as opcións para as tarxetas de visita, e despois crea un documento de texto novo no Writer do $[officename]."
#. UNcx5
#: 01010000.xhp
@@ -437,7 +437,7 @@ msgctxt ""
"par_idN109E7\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new text document in $[officename] Writer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Crea un documento de texto novo no Writer do $[officename].</ahelp>"
#. VcxuB
#: 01010000.xhp
@@ -446,7 +446,7 @@ msgctxt ""
"par_idN109FE\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new spreadsheet document in $[officename] Calc.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Crea un documento de folla de cálculo novo no Calc do $[officename].</ahelp>"
#. 9UiAs
#: 01010000.xhp
@@ -455,7 +455,7 @@ msgctxt ""
"par_idN10A15\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new presentation document in $[officename] Impress.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Crea un documento de presentación novo no Impress do $[officename].</ahelp>"
#. JUHgK
#: 01010000.xhp
@@ -464,7 +464,7 @@ msgctxt ""
"par_idN10A2C\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new drawing document in $[officename] Draw.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Crea un documento de debuxo novo no Draw do $[officename].</ahelp>"
#. DC9VL
#: 01010000.xhp
@@ -473,7 +473,7 @@ msgctxt ""
"par_idN10A43\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the <emph>Database Wizard</emph> to create a database file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Abre o <emph>Asistente de bases de datos</emph> para crear un ficheiro de base de datos novo.</ahelp>"
#. 8qFCs
#: 01010000.xhp
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr "Con algúns tipos de documentos pódese escoller imprimir un folleto."
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr ""
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr ""
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,14 +9376,14 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "Alterna entre a exhibición principal e a normal."
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icona</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgstr ""
#. 3Lq2G
#: 02110000.xhp
@@ -9430,14 +9412,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr ""
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icona</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgstr ""
#. nRB3E
#: 02110000.xhp
@@ -9466,14 +9448,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr ""
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icona</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgstr ""
#. F4J5u
#: 02110000.xhp
@@ -9601,14 +9583,14 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "Para inserir ficheiros no documento principal tamén pode arrastralos desde o escritorio e soltalos no modo de exhibición principal do navegador."
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icona</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgstr ""
#. ijR7M
#: 02110000.xhp
@@ -9709,14 +9691,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr ""
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icona</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgstr ""
#. ADEyJ
#: 02110000.xhp
@@ -9745,14 +9727,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icona</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgstr ""
#. GqEUL
#: 02110000.xhp
@@ -9781,14 +9763,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
-msgstr "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icona</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgstr ""
#. DLEGF
#: 02110000.xhp
diff --git a/source/gl/helpcontent2/source/text/shared/02.po b/source/gl/helpcontent2/source/text/shared/02.po
index cd7dfc506f4..45f1e054ff4 100644
--- a/source/gl/helpcontent2/source/text/shared/02.po
+++ b/source/gl/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-29 13:35+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/gl/>\n"
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Reducir sangría\">Reducir sangría</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11059,14 +11059,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icona</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr ""
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Aumentar sangría\">Aumentar sangría</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11131,14 +11131,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icona</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/gl/helpcontent2/source/text/shared/optionen.po b/source/gl/helpcontent2/source/text/shared/optionen.po
index 8465ae2c4ae..6b8f6059773 100644
--- a/source/gl/helpcontent2/source/text/shared/optionen.po
+++ b/source/gl/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-07-08 12:12+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/gl/>\n"
@@ -11860,32 +11860,32 @@ msgctxt ""
msgid "Snap"
msgstr "Axustar"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "Ás liñas de axuste"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "Esta configuración tamén pode definirse mediante a icona <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Axustar ás guías\"><emph>Axustar ás guías</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Axustar ás Guías\"><emph>Axustar ás guías</emph></link></caseinline><defaultinline><emph>Axustar ás guías</emph></defaultinline></switchinline>, dispoñíbel na barra <emph>Opcións</emph> dos documentos de presentación ou de debuxo."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr ""
#. eUCCJ
#: 01070300.xhp
diff --git a/source/gl/helpcontent2/source/text/simpress/02.po b/source/gl/helpcontent2/source/text/simpress/02.po
index 2fa7ae8c1dd..6794fb386bb 100644
--- a/source/gl/helpcontent2/source/text/simpress/02.po
+++ b/source/gl/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-02-19 20:15+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress02/gl/>\n"
@@ -5695,41 +5695,41 @@ msgctxt ""
msgid "Exit all groups"
msgstr "Saír de todos os grupos"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Axustar respecto das liñas guía"
+msgid "Snap to Snap Guides"
+msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Axustar ás guías\">Axustar ás guías</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icona</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Axustar respecto das liñas guía"
+msgid "Snap to Snap Guides"
+msgstr ""
#. oXWsX
#: 13150000.xhp
diff --git a/source/gl/helpcontent2/source/text/swriter.po b/source/gl/helpcontent2/source/text/swriter.po
index 9a1dd6e2c85..883ba0555f5 100644
--- a/source/gl/helpcontent2/source/text/swriter.po
+++ b/source/gl/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-08-21 02:35+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/gl/>\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "Da esquerda á dereita"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">icona de esquerda a dereita</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "Da dereita á esquerda"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">icona de dereita a esquerda</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/gl/helpcontent2/source/text/swriter/01.po b/source/gl/helpcontent2/source/text/swriter/01.po
index 357ec76a849..2f49b1d0622 100644
--- a/source/gl/helpcontent2/source/text/swriter/01.po
+++ b/source/gl/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-14 20:35+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/gl/>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "Navegador"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Abre a caixa de diálogo <emph>Destinatarios da combinación de correspondencia</emph>.</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/swriter/guide.po b/source/gl/helpcontent2/source/text/swriter/guide.po
index 8133b6aed8d..5378a8377a9 100644
--- a/source/gl/helpcontent2/source/text/swriter/guide.po
+++ b/source/gl/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-09-29 13:35+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/gl/>\n"
@@ -7798,50 +7798,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Sangría de parágrafos</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr ""
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "Pode modificar as sangrías do parágrafo actual, de todos os seleccionados ou do Estilo de parágrafo."
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "Pode modificar as sangrías do parágrafo actual, de todos os seleccionados ou do Estilo de parágrafo."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "Escolla <item type=\"menuitem\"> Formato - Parágrafo - recuos e espazamento </item> para modificar os recuos ao parágrafo actual ou para todas as parágrafos seleccionados. Tamén pode <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\"> Definir recuos usando a regra </link>."
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "Tamén pode <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">Definir recuos usando a regra </link>. Para ver a regra, escolla <item type=\"menuitem\"> Ver - Régua </item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "Escolla <item type=\"menuitem\"> Formato - Parágrafo - recuos e espazamento </item> para modificar os recuos ao parágrafo actual ou para todas as parágrafos seleccionados. Tamén pode <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\"> Definir recuos usando a regra </link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "Tamén pode <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">Definir recuos usando a regra </link>. Para ver a regra, escolla <item type=\"menuitem\"> Ver - Régua </item>."
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "Botón dereito do rato e escolle un parágrafo <item type=\"menuitem\"> Editar estilo de parágrafo - recuos e espazamento </item> para modificar os recuos para todos os parágrafos que teñen o mesmo estilo de parágrafo."
+msgid "Positioning indents"
+msgstr ""
#. qUxKq
#: indenting.xhp
@@ -7852,6 +7852,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "As sangrías calcúlanse con respecto ás marxes esquerda e dereita. Se desexa estender o parágrafo dentro da marxe de páxina, introduza un número negativo."
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr ""
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7861,6 +7870,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "Os guións son diferentes en relación á dirección de escritura. Por exemplo, mire para o <item type=\"menuitem\"> Antes do texto </item> valor de retirada en idiomas de esquerda a dereita. A marxe esquerda do parágrafo recuada en relación á marxe esquerda da páxina. En idiomas da dereita á esquerda, o bordo dereita do parágrafo recuada en relación á marxe dereita da páxina."
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7870,6 +7888,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "Para un recuar desprazado, introduza un valor positivo para <tipo de elemento =\"menuitem\"> Antes do texto </ item> e un valor negativo para <tipo de elemento =\"menuitem\"> A primeira liña </ item>."
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10237,14 +10300,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "Desactivar e activar o recoñecemento de números en táboas"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value> números; recoñecemento automático en táboas de texto </bookmark_value> <bookmark_value> táboas; recoñecemento de número </bookmark_value> <bookmark_value> datas; formatar automaticamente en táboas </bookmark_value> <bookmark_value> recoñecemento; números </bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10273,14 +10336,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Adopte un dos procedementos seguintes:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "Botón dereito do rato nunha cela da táboa e escolla <item type=\"menuitem\"> Recoñecemento de números </item>. Cando este recurso está activado, unha marca de selección aparece diante do <item type=\"menuitem\"> comando recoñecemento Número </item>."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10291,6 +10363,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr "Escolla <switchinline select=\"sys\"> <caseinline select=\"MAC\">%PRODUCTNAME - Preferencias </caseinline> <defaultinline> Ferramentas - Opcións </defaultinline> </switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Táboa </item> e marque ou desmarque a <item type=\"menuitem\"> caixa de verificación/recoñecemento Número </item>."
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12217,6 +12298,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "Utilice a orientación vertical para as páxinas cando cree documentos que queira imprimir como folletos. Ao imprimilos, Writer aplica o deseño de folleto."
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12262,50 +12361,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "Os folletos imprímense sempre en horizontal. Se a súa impresora admite impresións nos dous lados, pode utilizar a definición \"Dupla cara - vertical\" na caixa de diálogo Opcións de impresora."
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
-msgstr "Voltar <emph>Imprimir diálogo</emph>, e prema no botón <emph>Esquema de Páxina</emph> páxina guía."
+msgid "Return to <emph>Print</emph> dialog."
+msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
-msgstr "Seleccione <emph>Brochura</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
+msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "Para unha impresora que imprime automaticamente nos dous lados dunha páxina, seleccione a incluír \"Todas as páxinas \"."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Prema en <emph>Aceptar</emph>."
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "Se %PRODUCTNAME imprime as páxinas na orde errada, abra a lapela <emph>Opcións</emph>, seleccione <emph>Imprimir en orde inversa</emph>, e logo imprima o documento de novo."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12379,6 +12478,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr "<link href=\"text/swriter/main0210.xhp\" name=\"Ficheiro - Visualización de páxina\">Ficheiro - Visualización de impresión</link>"
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12406,32 +12730,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Imprimir varias páxinas na mesma folla</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
-msgstr "Na <emph>Esquema de Páxina</emph> páxina de guía do <item type=\"menuitem\"> Ficheiro - Imprimir </item> diálogo, tes a posibilidade de imprimir varias páxinas nunha soa folla."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
+msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
-msgstr "Escolla <emph>Ficheiro - Imprimir</emph> e prema no botón <emph>Esquema da páxina</emph> a ficha."
+msgid "Choose <menuitem>File - Print</menuitem>"
+msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Adopte un dos procedementos seguintes:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13396,13 +13720,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/gl/librelogo/source/pythonpath.po b/source/gl/librelogo/source/pythonpath.po
index 7733d00fe00..ceddaa77939 100644
--- a/source/gl/librelogo/source/pythonpath.po
+++ b/source/gl/librelogo/source/pythonpath.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-06-29 13:09+0200\n"
-"PO-Revision-Date: 2020-07-08 12:11+0000\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/librelogosourcepythonpath/gl/>\n"
"Language: gl\n"
@@ -1076,7 +1076,7 @@ msgctxt ""
"TEAL\n"
"property.text"
msgid "teal"
-msgstr "turquesa"
+msgstr "verde azulado"
#. GBgD2
#: LibreLogo_en_US.properties
diff --git a/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
index 242a7bd36d7..7e9e2cdef53 100644
--- a/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gl/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-07 06:35+0000\n"
+"PO-Revision-Date: 2020-11-18 15:35+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/gl/>\n"
"Language: gl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1566398018.000000\n"
#. W5ukN
@@ -13574,7 +13574,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Regular Triangle"
-msgstr ""
+msgstr "Triángulo regular"
#. BUJ28
#: Effects.xcu
@@ -29886,7 +29886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show ~Tracked Changes"
-msgstr ""
+msgstr "Mostrar cambios rexis~trados"
#. sMgCx
#: WriterCommands.xcu
diff --git a/source/gl/sc/messages.po b/source/gl/sc/messages.po
index 01dd16f0650..aaaa703cb14 100644
--- a/source/gl/sc/messages.po
+++ b/source/gl/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-02 14:43+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/gl/>\n"
"Language: gl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562229906.000000\n"
#. kBovX
@@ -1469,7 +1469,7 @@ msgstr "Importación de Dif"
#: sc/inc/globstr.hrc:272
msgctxt "STR_STYLENAME_STANDARD"
msgid "Default"
-msgstr ""
+msgstr "Predeterminado"
#. TG9pD
#: sc/inc/globstr.hrc:273
@@ -14683,7 +14683,7 @@ msgstr "O resultado da función se o test é VERDADEIRO."
#: sc/inc/scfuncs.hrc:3606
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Compares expression against list of value/result pairs, and returns result for first value that matches the expression. If expression does not match any value, a default result is returned, if it is placed as final item in parameter list without a value."
-msgstr ""
+msgstr "Compara a expresión contra unha lista de pares de valor/resultado e devolve o resultado do primeiro valor que coincida coa expresión. Se a expresión non coincide con ningún valor, devolve un resultado predeterminado, se estiver colocado como elemento final dunha lista de parámetros sen un valor."
#. PneN8
#: sc/inc/scfuncs.hrc:3607
@@ -14695,7 +14695,7 @@ msgstr "Expresión"
#: sc/inc/scfuncs.hrc:3608
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Value to be compared against value1…valueN (N ≤ 127)"
-msgstr ""
+msgstr "Valor para comparar contra valor1...valorN (N≤ 127)"
#. 9wcvj
#: sc/inc/scfuncs.hrc:3609
@@ -14707,7 +14707,7 @@ msgstr "Valor"
#: sc/inc/scfuncs.hrc:3610
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Value to compare against expression. If no result is given, then value is returned as default result."
-msgstr ""
+msgstr "Valor para comparar contra a expresión. Se non se dá ningún resultado, o valor devólvese como resultado predeterminado."
#. dsARv
#: sc/inc/scfuncs.hrc:3611
@@ -25214,13 +25214,13 @@ msgstr "Destaque 3"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2653
msgctxt "notebookbar_groupedbar_full|Header1"
msgid "Heading 1"
-msgstr ""
+msgstr "Título 1"
#. 6Ej4G
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2661
msgctxt "notebookbar_groupedbar_full|Header2"
msgid "Heading 2"
-msgstr ""
+msgstr "Título 2"
#. sqE94
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2675
@@ -28624,38 +28624,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr "Indica que aparece unha advertencia ao pegar celas desde o portapapeis nun intervalo de celas que non estea baleiro."
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr "Prema en Intro para pegar e limpar o portapapeis"
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Utilizar as métricas da impresora para formatar textos"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "Especifica que os parámetros da impresora se aplican tanto para a impresión como para o formatado da visualización na pantalla."
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Realzar a sele_cción nas cabeceiras das columnas/filas"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr "Indica se realizar as cabeceiras de columna e fila nas columnas ou filas seleccionadas."
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Actualizar as referencias ao ordenar o intervalo de celas"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Configuración da entrada"
diff --git a/source/gl/sfx2/messages.po b/source/gl/sfx2/messages.po
index d7784cf98db..06d546db69d 100644
--- a/source/gl/sfx2/messages.po
+++ b/source/gl/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-11-02 14:42+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/gl/>\n"
@@ -1655,286 +1655,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Pechar o panel"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Ancorar"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Desancorar"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Máis opcións"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Pechar o panel lateral"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Configuración da barra lateral"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Personalización"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Restaurar o predeterminado"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Pechar a barra lateral"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarina"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Colmea"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Curva azul"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Planos cianotipo"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Azul brillante"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Vermello sofisticado"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ADN"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Foco"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Paxaro"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiración"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Luces"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Verde exuberante"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metrópole"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Azul medianoite"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Ilustración da natureza"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Lapis"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Cartafol"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progreso"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Solpor"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Antigo"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Vivo"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Currículo"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Predeterminado"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderno"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Carta comercial moderna, letra sen serif"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Carta comercial moderna, letra con serif"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Tarxeta de visita con logotipo"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Simple"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Retirar"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Limpar todo"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Tamaño do contrasinal"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "O contrasinal introducido provoca problemas de interoperabilidade. Introduza un contrasinal que teña menos de 52 bytes ou máis de 55 bytes."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "Prema co botón %{key} para abrir a hiperligazón: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Prema para abrir a hiperligazón: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(utilizado por: %STYLELIST)"
@@ -4165,6 +4129,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Eliminar..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/gl/starmath/messages.po b/source/gl/starmath/messages.po
index 1aadf18fa2d..bc03d86d11b 100644
--- a/source/gl/starmath/messages.po
+++ b/source/gl/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-09-11 22:13+0000\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/gl/>\n"
"Language: gl\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "ou"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Signo +"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Signo -"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Signo +-"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Signo -+"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "NON booleano"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Suma +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Resta -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Multiplicación (Punto)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Multiplicación (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Multiplicación (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "División (barra)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "División (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "División (fracción)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
-msgstr ""
+msgstr "Fracción"
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Barra inscrita"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Punto inscrito"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Signo menos inscrito"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Signo máis inscrito"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Produto tensorial"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "O E booleano"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "O OU booleano"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "É igual a"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "É diferente de"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "É menor que"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "É maior que"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "É menor ou igual a"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "É maior ou igual a"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "É menor ou igual a"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "É maior ou igual a"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "É moito menor que"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "É moito maior que"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Definido como"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "É congruente con"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "É aproximadamente igual a"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "É semellante a"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "É semellante ou igual a"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "É proporcional a"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "É ortogonal a"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "É paralelo a"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Tende a"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Corresponde a (esquerda)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Corresponde a (dereita)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Pertence a"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Non pertence a"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Contén"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Unión"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Intersección"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Diferenza"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
-msgstr ""
+msgstr "Conxunto de cocientes"
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Subconxunto"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Subconxunto ou igual a"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Superconxunto"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Superconxunto ou igual a"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Non é un subconxunto"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Nin subconxunto nin igual a"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Non é un superconxunto"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Nin superconxunto nin igual a"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr "Función xeral"
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Valor absoluto"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Factorial"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Raíz cadrada"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "Raíz enésima"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Función exponencial"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Función exponencial"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Logaritmo natural"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logaritmo"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Seno"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Coseno"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tanxente"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Cotanxente"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arco seno"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arco coseno"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arco tanxente"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arco cotanxente"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Seno hiperbólico"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Coseno hiperbólico"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Tanxente hiperbólica"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Cotanxente hiperbólica"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Seno hiperbólico de área"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Coseno hiperbólico de área"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Tanxente hiperbólica de área"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Cotanxente hiperbólica de área"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr "Operador xeral"
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr "Subscrito inferior do operador xenérico"
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr "Subscrito superior do operador xenérico"
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr "Superscrito/Subscrito inferior do operador xenérico"
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Suma"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Suma con subíndice inferior"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Suma con superíndice superior"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Suma con superíndice e subíndice"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Produto"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Produto con subíndice inferior"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Produto con superíndice superior"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Produto con superíndice e subíndice"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Coproduto"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Coproduto con subíndice inferior"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Coproduto con superíndice superior"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Coproduto con superíndice e subíndice"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Límites"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Límite con subíndice inferior"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Límite con superíndice superior"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Límite con superíndice e subíndice"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Límite inferior"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Límite inferior con variábel abaixo"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Límite inferior con variábel arriba"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Límite inferior con variábel arriba e abaixo"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Límite superior"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Límite superior con variábel abaixo"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Límite superior con variábel arriba"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Límite superior con variábel arriba e abaixo"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Existe"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Non existe"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Para todos"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integral"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Integral con subíndice inferior"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Integral con superíndice superior"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integral con superíndice e subíndice"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Integral dupla"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Integral dobre con subíndice inferior"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Integral dobre con superíndice superior"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Integral dobre con superíndice e subíndice"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Integral tripla"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Integral tripla con subíndice inferior"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Integral tripla con superíndice superior"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Integral tripa con superíndice e subíndice"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Integral curvilínea"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Integral curva con subíndice inferior"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Integral curva con superíndice superior"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Integral curva con superíndice e subíndice"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Dupla integral curvilínea"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Integral curva dobre con subíndice inferior"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Integral curva dobre con superíndice superior"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Integral curva dobre con superíndice e subíndice"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Tripla integral curvilínea"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Integral curva tripla con subíndice inferior"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Integral curva tripla con subíndice superior"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Integral curva tripla con superíndice e subíndice"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Acento agudo"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Liña superior"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Breve"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Circunflexo invertido"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Círculo"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Punto"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Punto duplo"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Puntos suspensivos"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Acento grave"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Circunflexo"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Til"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Frecha vectorial"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Arpón"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Liña embaixo"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Liña enriba"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Liña ao través"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Transparente"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Letra grosa"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Tipo de letra en cursiva"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Redimensionar"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Modificar tipo de letra"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Cor negra"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Cor azul"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Cor verde"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Cor vermella"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
-msgstr ""
+msgstr "Cor azul verdoso (aqua)"
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
-msgstr ""
+msgstr "Cor fucsia"
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Cor gris"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Cor lima"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
-msgstr "Cor marrón"
+msgstr "Cor granate"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Cor azul mariño"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Cor oliva"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Cor violeta"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Cor prata"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
-msgstr "Turquesa"
+msgstr "Cor verde azulado"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Cor amarela"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "Cor RGB"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
-msgstr ""
+msgstr "Cor RGBA"
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
-msgstr ""
+msgstr "Cor hexadecimal"
+
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr "Cor coral"
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr "Cor carmesí"
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr "Cor azul de medianoite"
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr "Cor violeta"
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr "Cor laranxa"
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr "Cor vermellón web"
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr "Cor verde mar"
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr "Cor índigo"
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr "Cor rosa quente"
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr "Cor lavanda"
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr "Cor neve"
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Parénteses de agrupamento"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Parénteses"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Corchetes"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Corchetes duplos"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Chaves"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Parénteses angulares"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Teito"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Piso"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Liñas simples"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Liñas duplas"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Parénteses de operador"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Parénteses (escalábeis)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Corchetes (escalábeis)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Corchetes duplos (escalábeis)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Chaves (escalábeis)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Parénteses angulares (escalábeis)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Teito (escalábel)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Piso (escalábel)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Liñas simples (escalábeis)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Liñas Duplas (escalábeis)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Parénteses de operador (escalábeis)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Avaliado o"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Chaves superiores (escalábeis)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Chaves inferiores (escalábeis)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
-msgstr ""
+msgstr "Avaliar"
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
-msgstr ""
+msgstr "Avaliar con subíndice inferior"
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
-msgstr ""
+msgstr "Avaliar con superíndice superior"
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
-msgstr ""
+msgstr "Avaliar con índices superior e inferior"
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Subíndice á dereita"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Potencia"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Subíndice á esquerda"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Superíndice á esquerda"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Subíndice abaixo"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Superíndice enriba"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Valga pequena"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Baleiro"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Nova liña"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Disposición vertical (2 elementos)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Disposición vertical"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Disposición da matriz"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Aliñar á esquerda"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Aliñar ao centro"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Aliñar á dereita"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Aleph"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Conxunto baleiro"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Parte real"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Parte imaxinaria"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "infinito"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Parcial"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr "Transformada de Laplace"
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr "Transformada de Fourier"
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Pontos ao centro"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Puntos cara a arriba"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Puntos cara abaixo"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Puntos abaixo"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Pontos na vertical"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Concatenar"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "División (barra grande)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "División (barra inversa grande)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Divide"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Non divide"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Frecha dupla cara á esquerda"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Frecha dupla cara á dereita e cara á esquerda"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Frecha dupla cara á dereita"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Conxunto de números naturais"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Conxunto de números enteiros"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Conxunto de números racionais"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Conxunto de números reais"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Conxunto de números complexos"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Circunflexo grande"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Til grande"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Frecha vectorial larga"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Arpón grande"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "Barra h"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Barra lambda"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Frecha cara á esquerda"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Frecha cara á dereita"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Frecha cara a arriba"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Frecha cara a abaixo"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Sen espazo"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Precede"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Precede ou igual a"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Precede ou igual a"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Sucede"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Sucede ou igual a"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Sucede ou igual a"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Non precede"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Non sucede"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Operadores unarios/binarios"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Relacións"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Operacións de conxuntos"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funcións"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operadores"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Atributos"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Parénteses"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formatos"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Outros"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Exemplos"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Circunferencia"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Equivalencia masa-enerxía"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Teorema de Pitágoras"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
-msgstr ""
+msgstr "Serie de Taylor"
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Distribución de Gauss"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
-msgstr ""
+msgstr "Ecuación de Euler-Lagrange"
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
-msgstr ""
+msgstr "Teorema fundamental do cálculo"
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
-msgstr ""
+msgstr "Ecuación do Caos"
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
-msgstr ""
+msgstr "Identidade de Euler"
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
-msgstr ""
+msgstr "Segunda lei de Newton"
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
-msgstr ""
+msgstr "Relatividade xeral"
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
-msgstr ""
+msgstr "Relatividade especial"
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Estándar"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Cursiva"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Grosa"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "negro"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "azul"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "verde"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "vermello"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
-msgstr ""
+msgstr "verde azulado (aqua)"
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
-msgstr ""
+msgstr "fucsia"
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "gris"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "lima"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
-msgstr "marrón"
+msgstr "granate"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "azul mariño"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliva"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "violeta"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "prata"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
-msgstr "turquesa"
+msgstr "verde azulado"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "amarelo"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr "coral"
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr "carmesí"
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr "medianoite"
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr "violeta"
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr "laranxa"
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr "vermellón web"
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr "lavanda"
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr "neve"
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr "verde mar"
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr "índigo"
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr "rosa quente"
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
-msgstr ""
+msgstr "rgba"
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
-msgstr ""
+msgstr "hex"
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "agochar"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "tamaño"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "tipografía"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "á esquerda"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centrado"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "á dereita"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Ordes"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Fórmula"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Gardando documento..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Fórmula do %PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERRO : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Carácter inesperado"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Token inesperado"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' esperado"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' esperado"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' esperado"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' esperado"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Os símbolos dereito e esquerdo son dispares"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Agardábase «fixed», «sans» ou «serif»"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "«size» seguido dun token inesperado"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "O aliñamento duplo non está permitido"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Os subíndices/superíndices duplos non están permitidos"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
-msgstr ""
+msgstr "Número agardado"
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Necesítase '#'"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Necesítase unha cor"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Necesítase 'DEREITO'"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%s do %PRODUCTNAME"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Contido"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Título"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Texto da ~fórmula"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "B~ordos"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Tamaño"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Tamaño o~rixinal"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Axustar á ~páxina"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Ampliación"
diff --git a/source/gl/svtools/messages.po b/source/gl/svtools/messages.po
index a2fb7460b10..d0be64d8554 100644
--- a/source/gl/svtools/messages.po
+++ b/source/gl/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-07 06:36+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/gl/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Desfacer: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Refacer: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Repetir: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Texto sen formato"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Texto sen formato (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Imaxe de mapa de bits (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Metaficheiro de Graphics Device Interface (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Formato de texto enriquecido (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Formato de texto enriquecido (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Formato de debuxo do %PRODUCTNAME"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Imaxe de mapa de bits/animación de StarView (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Información de estado da Ligazón Interna Svx"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Ligazón do %PRODUCTNAME (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Marcador de Netscape"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Formato do servidor Star"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Formato do obxecto Star"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Obxecto de miniaplicación"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Obxecto de extensión"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Obxecto de StarWriter 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Obxecto de StarWriter 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Obxecto de StarWriter 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Obxecto de StarWriter/Web 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Obxecto de StarWriter/Web 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Obxecto de StarWriter/Master 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Obxecto de StarWriter/Master 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Obxecto de StarDraw"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Obxecto de StarDraw 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Obxecto de StarImpress 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Obxecto de StarDraw 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Obxecto de StarCalc"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Obxecto do StarCalc 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Obxecto do StarCalc 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Obxecto do StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Obxecto do StarChart 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Obxecto do StarChart 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Obxecto do StarImaxe"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Obxecto do StarImage 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Obxecto do StarImage 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Obxecto do StarMath"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Obxecto do StarMath 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Obxecto do StarMath 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Obxecto de StarObxect Paint"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Linguaxe de marcas de hipertexto (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Linguaxe de marcas de hipertexto reducida (Simple HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Formato de intercambio binario do Excel 5.0/95 da Microsoft (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Formato de intercambio binario do Excel 97/2000/XP/2003 da Microsoft (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Intercambio de datos dinámico (ligazón DDE)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Formato de Intercambio de Datos (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Obxecto de Microsoft Word"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Obxecto de StarFrameSet"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Obxecto de documento de Office"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Informacións sobre documento do Notes"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Documento Sfx"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Obxecto do StarChart 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Obxecto gráfico"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Obxecto do OpenOffice.org Writer 1.0"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Obxecto do OpenOffice.org Writer/Web 1.0"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Obxecto do OpenOffice.org Writer/Master 1.0"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Obxecto do OpenOffice.org Draw 1.0"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Obxecto do OpenOffice.org Impress 1.0"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Obxecto do OpenOffice.org Calc 1.0"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Obxecto do OpenOffice.org Chart 1.0"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Obxecto do OpenOffice.org Math 1.0"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Metaficheiro de Windows"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Obxecto da fonte de datos"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Táboa da fonte de datos"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Consulta SQL"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Diálogo do OpenOffice.org 1.0"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Ligazón"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Formato HTML sen comentarios"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Gráficos Portátiles de Rede (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Non foi posíbel inserir o obxecto %."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Non foi posíbel inserir o obxecto do ficheiro %."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Obxectos adicionais"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Orixe descoñecida"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1234 +501,1234 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumérico"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Conxunto de caracteres"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Dicionario"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Trazo"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Axenda telefónica"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonético (alfanumérico primeiro)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonético (alfanumérico por último)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumérico"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Dicionario"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Trazo"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonético (alfanumérico primeiro, agrupado por sílabas)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonético (alfanumérico primeiro, agrupado por consoantes)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonético (alfanumérico por último, agrupado por sílabas)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonético (alfanumérico por último, agrupado por consoantes)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Claro"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Cursiva clara"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Estándar"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Cursiva"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Grosa"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Cursiva grosa"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Negro"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Cursiva grosa"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Libro"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Grosa oblicua"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensado"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Grosa condensada"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Grosa cursiva condensada"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Grosa cursiva condensada"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Cursiva condensada"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Cursiva condensada"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Extradelgada"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Cursiva extradelgada"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Cursiva"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Semigrosa"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Semigrosa cursiva"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Utilizarase o mesmo tipo de letra na impresora e na pantalla."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Este é un tipo de letra de impresora. A imaxe na pantalla pode diferir."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Simularase o estilo de tipo de letra ou utilizarase o estilo máis achegado dispoñíbel."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Este tipo de letra non está instalado. Utilizarase o tipo máis parecido dispoñíbel."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Mover ao inicio"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Mover cara á esquerda"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Mover cara á dereita"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Mover cara a abaixo"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Engadir"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Regra horizontal"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Regra vertical"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Límite de 1 bit"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Punteado de 1 bit"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Escalas de grises de 4 bits"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Cor de 4 bits"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Escala de grises de 8 bits"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Cor de 8 bits"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Cor real de 24 bits"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "A imaxe necesita sobre %1 KB de memoria."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "A imaxe necesita sobre %1 KB de memoria; o tamaño do ficheiro é de %2 KB."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "O tamaño do ficheiro é %1 KB."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "servidor"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "porto"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Outros CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Preparado"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Parado"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Eliminación pendente"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Ocupado"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Iniciando"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "En espera"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Preparando"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Procesando"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Impresión"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Sen conexión"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Erro"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Servidor descoñecido"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Papel atascado"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Papel insuficiente"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Alimentación manual"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problema co papel"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "E/S activa"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Bandexa de saída chea"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Pouco tóner"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Sen tóner"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Eliminar páxina"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "O usuario debe intervir"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Memoria insuficiente"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Cuberta aberta"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Modo aforro enerxético"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Impresora predeterminada"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documentos"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ningún>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Empresa"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Departamento"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Nome"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Apelidos"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Rúa"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "País"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "CP"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Cidade"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Título"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posición"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Fórmula de trat."
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Iniciais"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Frase de despedida"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Telf. persoal"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Telf. empresa"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Correo electrónico"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Usuario 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Usuario 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Usuario 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Usuario 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Estado"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Telf. oficina"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Busca"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Móbil"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel: Outro"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendario"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Convidar"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ de $user$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "O %PRODUCTNAME require unha contorna de execución de Java (JRE) para realizar esta tarefa. Instale un JRE e reinicie o %PRODUCTNAME . %FAQLINK"
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "O %PRODUCTNAME require unha contorna de execución de Java (JRE) de %BITNESS bits para realizar esta tarefa. Instale un JRE e reinicie o %PRODUCTNAME. %FAQLINK"
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr "O %PRODUCTNAME require o Java Development Kit (JDK) de Oracle en Mac OS 10.10 ou posterior para realizar esta tarefa. Instáleo e reinicie o %PRODUCTNAME. %FAQLINK"
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Cambiouse a configuración do %PRODUCTNAME. En %PRODUCTNAME - Preferencias - %PRODUCTNAME - Avanzadas, escolla o entorno de execución Java que quere utilizar no %PRODUCTNAME."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Cambiouse a configuración de %PRODUCTNAME. En Ferramentas - Opcións - %PRODUCTNAME - Avanzadas, seleccione o JRE que quere utilizar no %PRODUCTNAME."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME require un entorno de execución de Java (JRE) para levar a cabo esta tarefa. O JRE seleccionado está defectuoso. Elixa outra versión ou instale un novo JRE e seleccióneo no menú %PRODUCTNAME - Preferencias - %PRODUCTNAME - Avanzadas."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "O %PRODUCTNAME require un entorno de execución de Java (JRE) para levar a cabo esta tarefa. O JRE seleccionado está defectuoso. Elixa outra versión ou instale un novo JRE e seleccióneo no menú Ferramentas - Opcións - %PRODUCTNAME - Avanzadas."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Requírese JRE"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Seleccionar o JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "O JRE está danado"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Código fonte"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Ficheiro de marcadores"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Imaxes"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Ficheiro de configuración"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplicación"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Táboa de base de datos"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Ficheiro de sistema"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Documento do MS Word"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Ficheiro da Axuda"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Documento HTML"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Ficheiro de arquivo"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Ficheiro de rexistro"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Base de datos StarOffice"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Documento principal de StarWriter 4.0/5.0"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Imaxe de StarOffice"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Ficheiro de texto"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Ligazón"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Modelo de StarOffice 3.0 - 5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Documento do MS Excel"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Modelo de MS Excel"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Ficheiro de lote"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Ficheiro"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Cartafol"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Documento de texto"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Folla de cálculo"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentación"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Debuxo"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Documento HTML"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Documento principal"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Fórmula"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Base de datos"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Modelo de folla de cálculo de OpenOffice.org 1.0"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Modelo de debuxo de OpenOffice.org 1.0"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Modelo de presentación de OpenOffice.org 1.0"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Modelo de documento de texto de OpenOffice.org 1.0"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unidade local"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Unidade de disco"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Unidade de CD-ROM"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Conexión de rede"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Documento do MS PowerPoint"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Modelo de MS PowerPoint"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Presentación do PowerPoint da Microsoft"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Fórmula do OpenOffice.org 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Gráfica do OpenOffice.org 1.0"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Debuxo do OpenOffice.org 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Folla de cálculo do OpenOffice.org 1.0"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Presentación do OpenOffice.org 1.0"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Documento de texto de OpenOffice.org 1.0"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Documento principal de OpenOffice.org 1.0"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Documento MathML"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Base de datos de OpenDocument"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Debuxo de OpenDocument"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Fórmula de OpenDocument"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Documento principal de OpenDocument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Presentación de OpenDocument"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Folla de cálculo de OpenDocument"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Texto de OpenDocument"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Modelo de folla de cálculo de OpenDocument"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Modelo de debuxo de OpenDocument"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Modelo de presentación de OpenDocument"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Modelo de texto de OpenDocument"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Extensión de %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Corrector ortográfico Hunspell"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Guionizador Libhyphen"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Dicionario de sinónimos Mythes"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Lista de palabras ignoradas"
diff --git a/source/gl/svx/messages.po b/source/gl/svx/messages.po
index 51ab1539b60..c1efb0b5ca9 100644
--- a/source/gl/svx/messages.po
+++ b/source/gl/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-07 06:36+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/gl/>\n"
"Language: gl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1559330444.000000\n"
#. 3GkZj
@@ -16332,11 +16332,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Como_díns"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_Comentarios"
+msgid "Comme_nts"
+msgstr "Come_ntarios"
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/gl/sw/messages.po b/source/gl/sw/messages.po
index dba0970527e..d2f2aae8da7 100644
--- a/source/gl/sw/messages.po
+++ b/source/gl/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-07 06:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-22 11:56+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/gl/>\n"
"Language: gl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1562578065.000000\n"
#. v3oJv
@@ -98,13 +98,13 @@ msgstr "As táboas non deben conter títulos."
#: sw/inc/AccessibilityCheckStrings.hrc:29
msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
-msgstr ""
+msgstr "Manter os niveis de títulos en orde. O título de nivel %LEVEL_CURRENT% non debe ir despois de %LEVEL_PREV%."
#. gkDzg
#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_FONTWORKS"
msgid "Avoid fontworks in your documents. Be sure you're using it in order to show a sample or another meaningless text."
-msgstr ""
+msgstr "Evite utilizar o Fontwork nos seus documentos. Asegúrese de que o usa para presentar unha mostra ou outro texto sen sentido."
#. UWv4T
#: sw/inc/AccessibilityCheckStrings.hrc:32
@@ -614,13 +614,13 @@ msgstr "Parágrafos numerados"
#: sw/inc/inspectorproperties.hrc:31
msgctxt "RID_CHAR_DIRECTFORMAT"
msgid "Character Direct Formatting"
-msgstr ""
+msgstr "Formato directo de carácter"
#. fYAUc
#: sw/inc/inspectorproperties.hrc:32
msgctxt "RID_PARA_DIRECTFORMAT"
msgid "Paragraph Direct Formatting"
-msgstr ""
+msgstr "Formato directo de parágrafo"
#. YUbUQ
#. Format names
@@ -1431,7 +1431,7 @@ msgstr "URL da hiperligazón"
#: sw/inc/inspectorproperties.hrc:169
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Is Auto Update"
-msgstr "Actualízase actualmente"
+msgstr "Actualízase automaticamente"
#. DYXxe
#: sw/inc/inspectorproperties.hrc:170
@@ -5750,19 +5750,19 @@ msgstr "Desactivado"
#: sw/inc/strings.hrc:646
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Prema para conmutar a visibilidade do contido"
#. 44jEc
#: sw/inc/strings.hrc:647
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
-msgstr ""
+msgstr "prema co botón dereito para incluír subniveis"
#. kDbnu
#: sw/inc/strings.hrc:648
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
-msgstr ""
+msgstr "Prema para conmutar a visibilidade do contido"
#. rkD8H
#: sw/inc/strings.hrc:649
@@ -13914,7 +13914,7 @@ msgstr "_Tipo"
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:156
msgctxt "flddocinfopage|extended_tip|select"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
-msgstr "Lista os campos dispoñíbeis para o tipo de campo seleccionado na listaTipoPara inserir un campo, prema no campo e prema en Inserir."
+msgstr "Lista os campos dispoñíbeis para o tipo de campo seleccionado na lista Tipo. Para inserir un campo, prema no campo e prema en Inserir."
#. xAe8o
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:169
@@ -14292,7 +14292,7 @@ msgstr "_Tipo"
#: sw/uiconfig/swriter/ui/fldvarpage.ui:201
msgctxt "fldvarpage|extended_tip|select"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
-msgstr "Lista os campos dispoñíbeis para o tipo de campo seleccionado na listaTipoPara inserir un campo, prema no campo e prema en Inserir."
+msgstr "Lista os campos dispoñíbeis para o tipo de campo seleccionado na lista Tipo. Para inserir un campo, prema no campo e prema en Inserir."
#. JFbpp
#: sw/uiconfig/swriter/ui/fldvarpage.ui:214
@@ -17438,86 +17438,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr " Introduzao número de liñas que desexa na táboa."
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr "Advertencia: As táboas grandes poden afectar o desempeño e a compatibilidade de maneira adversa"
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Xeral"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "Tít_ulo"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr " Inclúeunha liña de título na táboa."
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Re_petir as filas de cabeceira nas páxinas novas"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr " Repite otítulo da táboa na parte superior da páxina posterior a táboa ocupar máisdunha páxina."
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Non _dividir a táboa entre páxinas"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr " Impideque a táboa que engloban máis dunha páxina."
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr "Seleccione o número de liñas que desexa usar para o título."
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "_Filas de cabeceira:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Opcións"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr "Mostra unha vista previa da selección actual."
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr "Seleccione un estilo predefinido para a nova táboa."
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Estilos"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr "Insire unha táboa no documento. Tamén se pode premer na frecha, arrastrar para seleccionar o número de filas e columnas que incluír na táboa e entón premer na última cela."
@@ -20031,289 +20037,289 @@ msgid "Text"
msgstr "Texto"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Alternar a vista principal"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Alterna entre mostrar a vista principal e a vista normal se un documento principal está aberto."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr "Ir á páxina"
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr "Introduza o número da páxina e prema en Intro. Empregue as frechas para avanzar ou recuar unha páxina."
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Vista de navegación do contido"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr "Alterna entre a presentación de todas as categorías no Navegador e a categoría seleccionada."
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Cabeceira"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr "Move o cursor á cabeceira, ou desde a cabeceira á área de texto do documento."
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Rodapé"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr "Move o cursor ao rodapé, ou desde o rodapé á área de texto do documento."
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Áncora<->Texto"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr "Alterna entre o texto da nota a rodapé e sua áncora."
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Estabelecer recordatorio"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Prema aquí para colocar un aviso na posición na que estea o cursor. Pódense definir ata cinco avisos. Para ir a un aviso, prema na icona Navegación, na xanela Navegación prema na icona Aviso e a seguir os botóns Anterior ou Seguinte."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Niveis de título mostrados"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr "Prema nesta icona e, a continuación, seleccione o número de niveis de cabeceira que queira mostrar na xanela Navegador."
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Activar/Desactivar caixa de lista"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr "Mostra ou agocha a lista do Navegador."
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Ascender un nivel"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Aumenta o número de nivel do título seleccionado, e os títulos que se atopan por baixo do título, nun nivel. Para aumentar só o nivel de esquema do título seleccionado, manteña a tecla Ctrl e prema nesta icona."
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Descender un nivel"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Baixa o número de nivel do título seleccionado, e os títulos que se atopan por baixo do título, nun nivel. Para baixar só o nivel de esquema do título seleccionado, manteña a tecla Ctrl e prema nesta icona."
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Ascender un capítulo"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Sube o título seleccionado, e o texto por baixo do título,unha posición no Navegador e no documento. Para subir só o título seleccionado e non o texto asociado co título, manteña a tecla Ctrl e prema nesta icona."
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Descender un capítulo"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Baixa o título seleccionado, e o texto por baixo do título, unha posición no Navegador e no documento. Para baixar só o título seleccionado e non o texto asociado co título, manteña a tecla Ctrl e prema nesta icona."
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Modo de arrastre"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr "Indica as opcións de arrastrar e soltar para inserir elementos do Navegador nun documento, por exemplo, como unha hiperligazón. Prema nesta icona e escolla a opción que desexe usar."
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Documento"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Xanela activa"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Alternar a vista principal"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Alterna entre mostrar a vista principal e a vista normal se un documento principal está aberto."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Editar"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr "Edite o contido do compoñente seleccionado na lista Navegador. Se a selección é un ficheiro, o ficheiro ábrese para editar. Se a selección é un índice, ábrese a caixa de diálogo Índice."
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Actualizar"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Prema e escolla o contido que desexe actualizar."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Inserir"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Insire un índice no documento principal."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Gardar tamén o contido"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr "Garda unha copia do contido dos ficheiros ligados no documento principal. Isto asegura que o contido actual estará dispoñíbel cando non for posíbel acceder aos ficheiros ligados."
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Subir"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr "Sube a selección unha posición na lista do Navegador."
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Baixar"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr "Baixa a selección unha posición na lista do Navegador."
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Selección"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Índices analíticos"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Ligazóns"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Todo"
@@ -23683,7 +23689,7 @@ msgstr "O mesmo contido:"
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:95
msgctxt "pagefooterpanel|footertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Marxes:"
#. xepvQ
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:107
@@ -23773,7 +23779,7 @@ msgstr "O mesmo contido:"
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:95
msgctxt "pageheaderpanel|headertoggle"
msgid "Margins:"
-msgstr ""
+msgstr "Marxes:"
#. PAGRJ
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:107
diff --git a/source/gu/helpcontent2/source/text/scalc/01.po b/source/gu/helpcontent2/source/text/scalc/01.po
index 57a75f14e1a..b6202292308 100644
--- a/source/gu/helpcontent2/source/text/scalc/01.po
+++ b/source/gu/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2018-11-12 13:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr ""
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/sdraw.po b/source/gu/helpcontent2/source/text/sdraw.po
index 0678a8883fd..031f7b11b07 100644
--- a/source/gu/helpcontent2/source/text/sdraw.po
+++ b/source/gu/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 11:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/shared/00.po b/source/gu/helpcontent2/source/text/shared/00.po
index 2bedb457cb9..5ba2a9ca52d 100644
--- a/source/gu/helpcontent2/source/text/shared/00.po
+++ b/source/gu/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr ""
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>register-true; definition</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "નોંધણી-સાચી"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/gu/helpcontent2/source/text/shared/01.po b/source/gu/helpcontent2/source/text/shared/01.po
index 69828695e50..a7d622e6289 100644
--- a/source/gu/helpcontent2/source/text/shared/01.po
+++ b/source/gu/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr ""
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr ""
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr ""
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,13 +9376,13 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "Switches between master view and normal view."
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
msgstr ""
#. 3Lq2G
@@ -9430,13 +9412,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr ""
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
msgstr ""
#. nRB3E
@@ -9466,13 +9448,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
msgstr ""
#. F4J5u
@@ -9601,13 +9583,13 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
msgstr ""
#. ijR7M
@@ -9709,13 +9691,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr ""
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
msgstr ""
#. ADEyJ
@@ -9745,13 +9727,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
msgstr ""
#. GqEUL
@@ -9781,13 +9763,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
msgstr ""
#. DLEGF
diff --git a/source/gu/helpcontent2/source/text/shared/02.po b/source/gu/helpcontent2/source/text/shared/02.po
index d061b3c0437..d230ff6babd 100644
--- a/source/gu/helpcontent2/source/text/shared/02.po
+++ b/source/gu/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 13:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11059,14 +11059,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr ""
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11131,14 +11131,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147276\" src=\"cmd/sc_sortascending.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147276\">Icon</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/gu/helpcontent2/source/text/shared/optionen.po b/source/gu/helpcontent2/source/text/shared/optionen.po
index efe8763f18d..9af1907d69a 100644
--- a/source/gu/helpcontent2/source/text/shared/optionen.po
+++ b/source/gu/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11860,31 +11860,31 @@ msgctxt ""
msgid "Snap"
msgstr "સ્નેપ"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "સ્નેપ લીટીઓ તરફ"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
msgstr ""
#. eUCCJ
diff --git a/source/gu/helpcontent2/source/text/simpress/02.po b/source/gu/helpcontent2/source/text/simpress/02.po
index b1df14df352..c208cc5b05d 100644
--- a/source/gu/helpcontent2/source/text/simpress/02.po
+++ b/source/gu/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 11:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5695,40 +5695,40 @@ msgctxt ""
msgid "Exit all groups"
msgstr "Exit all groups"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13050000.xhp\" name=\"Show Snap Lines\">Show Snap Lines</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155962\" src=\"cmd/sc_solidcreate.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155962\">Icon</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
#. oXWsX
diff --git a/source/gu/helpcontent2/source/text/swriter.po b/source/gu/helpcontent2/source/text/swriter.po
index cbbd8db94bf..7d3cf406f6d 100644
--- a/source/gu/helpcontent2/source/text/swriter.po
+++ b/source/gu/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-10-21 20:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "ડાબી થી જમણી તરફ"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "જમણી થી ડાબી તરફ"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/gu/helpcontent2/source/text/swriter/01.po b/source/gu/helpcontent2/source/text/swriter/01.po
index 2ad081ed345..38224e3263b 100644
--- a/source/gu/helpcontent2/source/text/swriter/01.po
+++ b/source/gu/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-10-21 20:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "Navigator"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/swriter/guide.po b/source/gu/helpcontent2/source/text/swriter/guide.po
index 183bf9eb7de..6cc18c8a735 100644
--- a/source/gu/helpcontent2/source/text/swriter/guide.po
+++ b/source/gu/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-12 13:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7792,49 +7792,49 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr ""
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
msgstr ""
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
msgstr ""
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
msgstr ""
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
+msgid "Positioning indents"
msgstr ""
#. qUxKq
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr ""
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr ""
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr ""
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr ""
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,13 +10294,13 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "Turning Number Recognition On or Off in Tables"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
msgstr ""
#. aahB7
@@ -10267,14 +10330,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Do one of the following:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "Right-click in a table cell and choose <emph>Number recognition</emph>. When this feature is on, a check mark is displayed in front of the <emph>Number recognition </emph>command."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr ""
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12211,6 +12292,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12256,50 +12355,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr ""
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
+msgid "Return to <emph>Print</emph> dialog."
msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "For a printer that automatically prints on both sides of a page, specify to print right pages and left pages."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Click <emph>Options</emph>."
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Printer Options</emph> dialog, select <emph>Reversed</emph>, and then print the document again."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr ""
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,32 +12724,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
+msgid "Choose <menuitem>File - Print</menuitem>"
msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Do one of the following:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/gu/sc/messages.po b/source/gu/sc/messages.po
index 6213434ff27..694eb47ab2e 100644
--- a/source/gu/sc/messages.po
+++ b/source/gu/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29250,38 +29250,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "લખાણનું બંધારણ બદલવા પ્રિન્ટર મેટ્રિક્સ વાપરો"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "હરોળો/સ્તંભોમાં પસંદગી પ્રકાશિત કરો (_c)"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr ""
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
#, fuzzy
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
diff --git a/source/gu/sfx2/messages.po b/source/gu/sfx2/messages.po
index 4561d9f4362..896560fd7b7 100644
--- a/source/gu/sfx2/messages.po
+++ b/source/gu/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-10-21 19:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,288 +1652,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "ડૉક"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "ડૉક ન કરો"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "વધારે વિકલ્પો"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "બાજુપટ્ટી બંધ કરો"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr ""
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "વૈવિધ્યપૂર્ણ"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "મૂળભૂત પુન:સંગ્રહો"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr ""
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "દૂર કરો"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4240,6 +4202,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "કાઢી નાંખો..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/gu/starmath/messages.po b/source/gu/starmath/messages.po
index f160a1453db..6c59da8d4b2 100644
--- a/source/gu/starmath/messages.po
+++ b/source/gu/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+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"
@@ -423,2080 +423,2213 @@ msgid "or"
msgstr "અથવા"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+ ચિહ્ન"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "- ચિહ્ન"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+- ચિહ્ન"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "-+ ચિહ્ન"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "બુલિયન NOT"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "ઉમેરો +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "બાદબાકી -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "ગુણાકાર (બિંદુ )"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "ગુણાકાર (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "ગુણાકાર (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "ભાગાકાર (સ્લૅશ)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "ભાગાકાર (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "ભાગાકાર (અપૂર્ણાંક)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "બુલિયન AND"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "બુલિયન OR"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "બરાબર છે"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "સમાન નથી"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "નાં કરતાં નાનુ"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "નાં કરતાં મોટુ"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "એ કરતાં ઓછું અથવા બરાબર છે"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "એ કરતાં મોટું અથવા બરાબર છે"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "એ કરતાં ઓછું અથવા બરાબર છે"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "એ કરતાં મોટું અથવા બરાબર છે"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "નાં કરતાં નાનુ"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "નાં કરતાં મોટુ છે"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "થી એકરૂપ છે"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "આશરે સમાન છે"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "થી સરખુ છે"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "સરખુ અથવા સમાન છે"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "થી સપ્રમાણ છે"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "થી લંબ છે"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "થી સમાંતર છે"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "સુધી"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "માં છે"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "માં નથી"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "પોતાનાં"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "યોગ"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "છેદ"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "તફાવત"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "ઉપગણ"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "નો ઉપગણ અથવા સમાન"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "મુખ્યગણ"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "નો મુખ્યગણ અથવા સમાન"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "ઉપગણ નથી"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "નો ઉપગણ અથવા સમાન નથી"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "મુખ્યગણ નથી"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "મુખ્યગણ અથવા સમાન નથી"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "માનાંક કિંમત"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "ક્રમગુણિત"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "વર્ગમૂળ"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N-મૂળ"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "ઘાતાંકીય વિધેય"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "ઘાતાંકીય વિધેય"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "પ્રાકૃતિક લઘુગણક"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "લઘુગુણક"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "સાઈન"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "કોસાઈન"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "ટેન્જન્ટ"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "કોટેન્જન્ટ"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "આર્કસાઇન"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "આર્કકોસાઇન"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "આર્કટેન્જન્ટ"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "આર્કકોટેન્જન્ટ"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "હાઇપરબોલિક સાઇન"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "હાઇપરબોલિક કોસાઇન"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "હાયપરબોલિક ટેન્જન્ટ"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "અતિવલય કોટેન્જન્ટ"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "વિસ્તાર હાયપરબોલિક સાઈન"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "વિસ્તાર હાયપરબોલિક કોસાઈન"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "વિસ્તાર હાયપરબોલિક ટેન્જન્ટ"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "વિસ્તાર હાયપરબોલિક કોટેન્જન્ટ"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "સરવાળો"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
#, fuzzy
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "સુપરસ્ક્રિપ્ટ નીચે"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
#, fuzzy
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "સુપરસ્ક્રિપ્ટ ઉંચે"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr ""
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "પ્રોડક્ટ"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
#, fuzzy
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "સુપરસ્ક્રિપ્ટ નીચે"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr ""
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr ""
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "ઉપગુણાકાર"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
#, fuzzy
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "સુપરસ્ક્રિપ્ટ નીચે"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr ""
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr ""
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "લાઇમ્સ"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
#, fuzzy
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "સુપરસ્ક્રિપ્ટ નીચે"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
#, fuzzy
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "સુપરસ્ક્રિપ્ટ ઉંચે"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr ""
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "અસ્તિત્વ ધરાવે છે"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "અસ્તિત્વ ધરાવતુ નથી"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "બધા માટે"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "સંકલિત"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "બે સંકલિત"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "ત્રણ સંકલિત"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "વક્ર સંકલિત"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "બે વક્ર સંકલિત"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "ત્રણ વક્ર સંકલિત"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "લઘુ ચિહ્ન"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "લીટી ઉપર"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "બ્રેવે"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "અવળુ પરિવૃત્ત"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "ગોળ"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "બિંદુ"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "બે બિંદુ"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "ત્રણ બિંદુ"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "ગુરુ ચિહ્ન"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "પરિવૃત્ત"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "તરંગ"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "સદિશ તીર"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "લીટી નીચે"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "લીટી પર"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "લીટી દ્વારા"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "પારદર્શક"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "ઘાટ્ટા ફોન્ટ"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "ત્રાંસા ફોન્ટ"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "માપ બદલો"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "ફોન્ટ બદલો"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "રંગ કાળો"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "રંગ વાદળી"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "રંગ લીલો"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "રંગ લાલ"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
#, fuzzy
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "રંગ પસંદકર્તા"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
#, fuzzy
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "રંગ ટૅબ"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "રંગ પીળો"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "સમૂહ કૌંસ"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "ગોળ કૌંસ"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "ચોરસ કૌંસ"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "બે ચોરસ કૌંસ"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "કૌંસ"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "ખૂણાવાળા કૌંસ"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "માળ"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "એકલી લીટીઓ"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "બમણી લીટીઓ"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "પ્રક્રિયક કૌંસ"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "ગોળાકાર કૌંસ (માપી શકાય)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "ચોરસ કૌંસ (માપી શકાય)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "બે ચોરસ કૌંસ (માપી શકાય)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "કૌંસ (માપી શકાય)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "ખૂણાવાળા કૌંસ (માપી શકાય)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "છત (માપી શકાય)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "માળ (માપી શકાય)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "એકલી લીટીઓ (માપી શકાય)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "બમણી લીટીઓ (માપી શકાય)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "પ્રક્રિયક કૌંસ (માપી શકાય)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "ઉપર કૌંસ (માપી શકાય)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "નીચે કૌંસ (માપી શકાય)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "સુપરસ્ક્રિપ્ટ જમણે"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "પાવર"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "સુપરસ્ક્રિપ્ટ ડાબે"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "સુપરસ્ક્રિપ્ટ ડાબે"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "સુપરસ્ક્રિપ્ટ નીચે"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "સુપરસ્ક્રિપ્ટ ઉંચે"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "નાની જગ્યા"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "ખાલી"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "નવી લીટી"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "ઉભો સ્ટૅક (૨ ભાગો)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "ઉભો સ્ટૅક"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "મેટ્રીક્સ સ્ટૅક"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "ડાબે ગોઠવો"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "મધ્યમાં ગોઠવો"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "જમણે ગોઠવો"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Aleph"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "ખાલી સમૂહ"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "વાસ્તવિક ભાગ"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "કાલ્પનિક ભાગ"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "અનંત"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "આંશિક"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "નેબ્લા"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "વીઈરસ્ટ્રેસ p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "મધ્યમાં બિંદુઓ"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "ઉપરની બાજુએ બિંદુઓ"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "નીચેની બાજુએ બિંદુઓ"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "નીચેની બાજુએ બિંદુઓ"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "ઉભી બાજુ બિંદુઓ"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "કોનકટનેટ"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "ભાગાકાર (વાઇડસ્લૅશ)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "અલગ કરો"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "ભાગાકાર ન કરો"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "ડાબી બાજુ બે તીર"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "ડાબી અને જમણી બાજુ બે તીર"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "જમણી બાજુ બે તીર"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "પ્રાકૃતિક સંખ્યાઓનો સમૂહ"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "પૂર્ણાંકનો સમૂહ"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "સંમેય સંખ્યાઓનો સમૂહ"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "વાસ્તવિક સંખ્યાઓનો સમૂહ"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "કઠીન સંખ્યાઓનો સમૂહ"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "મોટુ પરિવૃત્ત"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "વિશાળ તકતી"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "મોટુ સદિશ તીર"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h પટ્ટી"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "લેમ્ડા પટ્ટી"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "ડાબુ તીર"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "જમણુ તીર"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "ઉપરનું તીર"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "નીચેનું તીર"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "જગ્યા નથી"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "આગળનું"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "આગળનું અથવા તેનાં સમાન"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "આગળનું અથવા તેની સમકક્ષ"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "પછીનું"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "પછીનું અથવા તેનાં સમાન"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "પછીનું અથના તેની સમકક્ષ"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "આગળનું નથી"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "પછીનું નથી"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "એકાંકી/દ્રિઅંકી પ્રક્રિયકો"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "સંબધો"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "સમૂહ પ્રક્રિયાઓ"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "વિધેયો"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "કારકો"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "લક્ષણો"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "કૌંસ"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "બંધારણો"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "બીજા"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "ઉદાહરણો"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "પ્રમાણભૂત"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "ત્રાંસા"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "ઘાટ્ટા"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "કાળો"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "વાદળી"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "લીલો"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "લાલ"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "ગ્રે"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "લીંબુ"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "મરૂન"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "નેવી"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "ઓલિવ"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "જાંબુડિયો"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "ચાંદી"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "બતક"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "પીળો"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "છુપાડો"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "માપ"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "ફોન્ટ"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "ડાબું"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "કેન્દ્ર"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "જમણે"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "આદેશો"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "સૂત્ર"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "દસ્તાવેજ સંગ્રહ કરી રહ્યા છે..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION સૂત્ર"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ભૂલ : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "અનિચ્છનીય અક્ષર"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' ઈચ્છિત છે"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' ઈચ્છિત છે"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' ઈચ્છિત છે"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' ઈચ્છિત છે"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' ઈચ્છિત છે"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "રંગ જરૂરી છે"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'જમણું' ઈચ્છિત છે"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "સમાવિષ્ટો"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "કોષ્ટક"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "સૂત્ર લખાણ"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "હદો"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "માપ"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "મૂળભૂત માપ"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "પાનામાં બંધબેસતુ"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
diff --git a/source/gu/svtools/messages.po b/source/gu/svtools/messages.po
index 994717d8d6e..64728774117 100644
--- a/source/gu/svtools/messages.po
+++ b/source/gu/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "છેલ્લી ક્રિયા રદ કરો: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "પુનરાવર્તન (~R): "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "બંધારણ વગરનુ લખાણ"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx આંતરિક કડીમાંથી સ્થિતીની જાણકારી"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "નેટસ્કેપ બૂકમાર્ક"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "સ્ટાર સર્વર બંધારણ"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "સ્ટાર વસ્તુ બંધારણ"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "એપ્લેટ વસ્તુ"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "પ્લગ-ઇન વસ્તુ"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "સ્ટારલેખક ૩.૦ વસ્તુ"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "સ્ટારલેખક ૪.૦ વસ્તુ"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "સ્ટારલેખક ૫.૦ વસ્તુ"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "સ્ટારલેખક/વેબ ૪.૦ વસ્તુ"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "સ્ટારલેખક/વેબ ૫.૦ વસ્તુ"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "સ્ટારલેખક/મુખ્ય ૪.૦ વસ્તુ"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "સ્ટારલેખક/મુખ્ય ૫.૦ વસ્તુ"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "સ્ટારડ્રો વસ્તુ"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "સ્ટારડ્રો ૪.૦ વસ્તુુ"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "સ્ટારઇમ્પ્રેસ ૫.૦ વસ્તુ"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "સ્ટારડ્રો ૫.૦ વસ્તુ"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "સ્ટારકૅલ્ક વસ્તુ"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "સ્ટારકૅલ્ક ૪.૦ વસ્તુ"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "સ્ટારકૅલ્ક ૫.૦ વસ્તુ"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "સ્ટારઆલેખ વસ્ત્ુ"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "સ્ટારઆલેખ ૪.૦ વસ્તુ"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "સ્ટારઆલેખ ૫.૦ વસ્તુ"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "સ્ટારઇમેજ વસ્તુ"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "સ્ટારઇમેજ ૪.૦ વસ્તુ"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "સ્ટારઇમેજ ૫.૦ વસ્તુ"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "સ્ટારમૅથ વસ્તુ"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "સ્ટારમૅથ ૪.૦ વસ્તુ"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "સ્ટારમૅથ ૫.૦ વસ્તુ"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "સ્ટારઅૉબજેક્ટ પેઇન્ટ વસ્તુ"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "માઇક્રોસોફ્ટ વર્ડ વસ્તુ"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "સ્ટારફ્રેમસેટ વસ્તુ"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "અોફિસ દસ્તાવેજ વસ્તુ"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "દસ્તાવેજ જાણકારીની નોંધ કરો"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx દસ્તાવેજ"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "સ્ટારઆલેખ ૫.૦ વસ્તુ"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "ગ્રાફિક વસ્તુ"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org Writer ઑબ્જેક્ટ"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 લેખક/વેબ ઑબ્જેક્ટ"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Master ઑબ્જેક્ટ"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw ઑબ્જેક્ટ"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress ઑબ્જેક્ટ"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc ઑબ્જેક્ટ"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart ઑબ્જેક્ટ"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math ઑબ્જેક્ટ"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "વિન્ડોની મેટાફાઇલ"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "માહિતી સ્ત્રોત વસ્તુ"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "માહિતી સ્ત્રોત કોષ્ટક"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL પ્રશ્ન"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 સંવાદ"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "કડી"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "ટિપ્પણીઓ વગરનુ HTML બંધારણ"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "વસ્તુ % ઉમેરી શકાયી નહિ."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "ફાઇલ % માંથી વસ્તુ ઉમેરી શકાયી નહિ."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "હવે પછીની વસ્તુઓ"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "અજાણ્યો સ્ત્રોત"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "બાઈટ્સ"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "કેબી"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "એમબી"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "જીબી"
@@ -501,1244 +501,1244 @@ msgstr "જીબી"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "આલ્ફાન્યુમેરિક"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "સામાન્ય"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "અક્ષર સમૂહ"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "શબ્દકોષ"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "સ્ટ્રોક"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "રેડિકલ"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "યુનિકોડ"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "ફોન ચોપડી"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "ઉચ્ચારને લગતુ (પહેલા આલ્ફાન્યુમેરીક)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "ઉચ્ચારને લગતુ (છેલ્લે આલ્ફાન્યુમેરીક)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "આલ્ફાન્યુમેરિક"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "શબ્દકોષ"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "રેડિકલ"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "સ્ટ્રોક"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "ઉચ્ચારને લગતુ (પહેલા આલ્ફાન્યુમેરીક, એક જ વખતમાં ઉચ્ચારી શકાય તેવા શબ્દ દ્વારા સમૂહિત)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "ઉચ્ચારને લગતુ (પહેલા આલ્ફાન્યુમેરીક, વ્યંજનો દ્વારા સમૂહિત)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "ઉચ્ચારને લગતુ (છેલ્લા આલ્ફાન્યુમેરીક, એક જ વખતમાં ઉચ્ચારી શકાય તેવા શબ્દ દ્વારા સમૂહિત)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "ઉચ્ચારને લગતુ (છેલ્લા આલ્ફાન્યુમેરીક, વ્યંજનો દ્વારા સમૂહિત)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "ઝાંખા"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "હળવા ત્રાંસા"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "નિયમિત"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "ત્રાંસા"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "ઘાટ્ટા"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "ઘાટ્ટા ત્રાંસા"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "કાળા"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "કાળા ત્રાંસા"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "ચોપડી"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "સંક્ષિપ્ત ઘટ્ટ કરેલું"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "અશત: ઘટ્ટ"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "તમારા પ્રિન્ટર અને તમારી સ્ક્રીન બંને પર સમાન ફોન્ટ વાપરી શકાશે."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "આ પ્રિન્ટર ફોન્ટ છે. સ્ક્રીનનું ચિત્ર કદાચ અલગ હોઈ શકે."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "આ ફોન્ટની પધ્ધતિ ખોટી હોઈ શકે અથવા નજીકની બંધબેસતી પધ્ધતિ વાપરાશે."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "ફોન્ટનું માપ સ્થાપિત થયુ નથી. જે નજીકનું પ્રાપ્ય માપ છે તે વપરાશે."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "ઘરમાં ખસેડો"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "ડાબી બાજુ ખસો"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "જમણી બાજુ ખસો"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "અંતમાં ખસેડો"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "ઉમેરો"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "આડી માપપટ્ટી"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "ઊભી માપપટ્ટી"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 બિટ થ્રેશોલ્ડ"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 બિટ ડિધર"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 બિટ ગ્રેસ્કૅલ"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 બિટ રંગ"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 બિટ ગ્રેસ્કૅલ"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 બિટ રંગ"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 બિટ સાચા રંગ"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "ચિત્રને %1 KB મેમરીની જરૂર છે."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "ચિત્રને %1 KB મેમરીની જરૂર છે, ફાઇલનું માપ %2 KB છે."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "ફાઇલનું માપ %1 KB છે."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "પોસ્ટ"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "ક્રમમાં ગોઠવો"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "તૈયાર"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "વિરામ"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "અનિર્ણીત દૂર કરો"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "વ્યસ્ત"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "શરૂઆત"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "રાહ જોઇ રહ્યા છે"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "તૈયાર થાય છે"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "પ્રક્રિયા કરી રહ્યા છીએ"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "છાપી રહ્યા છે"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "ઓફલાઈન"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "ક્ષતિ"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "અજાણ્યુ સર્વર"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "કાગળ ફસાઈ ગયો"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "પૂરતા કાગળ નથી"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "તમારી જાતે નાખો"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "કાગળની સમસ્યા"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O સક્રિય"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "આઉટપુટ બીન ભરેલુ છે"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "ટોનર ઓછુ"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "ટોનર નથી"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "પાનું દૂર કરો"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "વપરાશક્રર્તા હસ્તક્ષેપ જરૂરી"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "અપૂરતી મૅમરી"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "આચ્છાદન ખોલો"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "પાવર સંગ્રહ કરવાની સ્થિતિ"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "મૂળભુત પ્રિન્ટર"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d દસ્તાવેજો"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<કંઇ નહિ>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "કંપની"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "વિભાગ"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "પહેલું નામ"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "છેલ્લુ નામ"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "શેરી"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "દેશ"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "ઝીપ કોડ"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "શહેર"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "શીર્ષક"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "જગ્યા"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "સરનામું ફોર્મ"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "શરુઆતો"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "સારી રીતે બંધ કરો"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "ટેલિફોન: ઘર"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "ટેલિફોન: કાર્ય"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "નોંધ"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "વપરાશકર્તા ૧"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "વપરાશકર્તા ૨"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "વપરાશકર્તા ૩"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "વપરાશકર્તા ૪"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ઓળખ"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "સ્થિતિ"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "ટેલિફોન: ઑફિસ"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "પેજર"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "મોબાઈલ"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "ટેલિફોન: બીજો"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "કેલેન્ડર"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "આમંત્રણ આપો"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME રૂપરેખાંકનને બદલી દેવામાં આવ્યુ છે. %PRODUCTNAME - પસંદગીઓ - %PRODUCTNAME - Java હેઠળ, Java રનટાઇમ પર્યાવરણને પસંદ કરો જે તમે %PRODUCTNAME દ્દારા વાપરવા ઇચ્છો છો."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME રૂપરેખાંકન ને બદલી દેવામાં આવ્યુ છે. સાધનો - વિકલ્પો - %PRODUCTNAME - Java ની હેઠળ, %PRODUCTNAME દ્દારા તમે વાપરવા ઇચ્છતા હોય તો Java runtime environment ને પસંદ કરો."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME ને આ કાર્ય કરવા માટે Java runtime environment (JRE) ની જરૂર છે. પસંદ થયેલ JRE એ ખામીવાળુ છે. મહેરબાની કરીને બીજી આવૃત્તિને પસંદ કરો અથવા નવાં JRE ને સ્થાપિત કરો અને %PRODUCTNAME - પસંદગીઓ - %PRODUCTNAME - ઉન્નત હેઠળ તેને પસંદ કરો."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME આ કાર્ય ને ચલાવવા માટે Java runtime environment (JRE) ની જરૂર છે. પસંદ થયેલ JRE એ ખામીભર્યું છે. મહેરબાની કરીને બીજી આવૃત્તિ ને પસંદ કરો અથવા નવા JRE ને સ્થાપિત કરો અને સાધનો - વિકલ્પો - %PRODUCTNAME - ઉન્નત ની હેઠળ પસંદ કરો."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE ની જરૂરિયાત છે"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE ને પસંદ કરો"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE એ ખામીવાળુ છે"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "સ્ત્રોત કોડ"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "ફાઇલને બૂકમાર્ક કરો"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "ગ્રાફિક્સ"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "રુપરેખાંકનની ફાઇલ"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "કાર્યક્રમ"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "ડેટાબેઝ કોષ્ટક"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "સિસ્ટમ ફાઇલ"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS વર્ડ દસ્તાવેજ"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "મદદ માટેની ફાઇલ"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML દસ્તાવેજ"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "પેટીની ફાઇલ"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "માહિતીની ફાઇલ"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice ડેટાબેઝ"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "સ્ટારરાઇટર ૪.0 / ૫.0 મુખ્ય દસ્તાવેજ"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice ચિત્ર"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "લખાણ માટેની ફાઇલ"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "કડી"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 ટેમ્પલેટ"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS એક્સેલ દસ્તાવેજ"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS એક્સેલ ટેમ્પલેટ"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "બેચ ફાઇલ"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ફાઇલ"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ફોલ્ડર"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "લખાણ દસ્તાવેજ"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "સ્પ્રેડશીટ"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "રજૂઆત"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "ચિત્રકામ"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML દસ્તાવેજ"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "મુખ્ય દસ્તાવેજ"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "સૂત્ર"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "ડેટાબેઝ"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 સ્પ્રેડશીટ ટૅમ્પલેટ"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 ચિત્રકામ ટૅમ્પલેટ"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 રજૂઆત ટૅમ્પલેટ"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 લખાણ દસ્તાવેજ ટૅમ્પલેટ"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "સ્થાનિક ડ્રાઈવ"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "ડિસ્ક ડ્રાઈવ"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM ડ્રાઈવ"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "નેટવર્ક જોડાણ"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS પાવર પોઈન્ટ દસ્તાવેજ"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS પાવર પોઈન્ટ ટેમ્પલેટ"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS પાવર પોઈન્ટ દેખાવ"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 સૂત્ર"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 આલેખ"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org ચિત્રકામ"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 સ્પ્રેડશીટ"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 રજૂઆત"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 લખાણ દસ્તાવેજ"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 મુખ્ય દસ્તાવેજ"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML દસ્તાવેજ"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "ઓપનડોકયુમેન્ટ ડેટાબેઝ"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "ઓપનડોકયુમેન્ટ ચિત્રકામ"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "ઓપનડોકયુમેન્ટ સુત્ર"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "ઓપનડોકયુમેન્ટ મુખ્ય દસ્તાવેજ"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "ઓપનડોકયુમેન્ટ રજૂઆત"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "ઓપનડોકયુમેન્ટ સ્પ્રેડશીટ"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "ઓપનડોકયુમેન્ટ લખાણ"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "ઓપનડોકયુમેન્ટ સ્પ્રેડશીટ ટેમ્પલેટ"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "ઓપનડોકયુમેન્ટ ચિત્રકામ ટેમ્પલેટ"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "ઓપનડોકયુમેન્ટ રજૂઆત ટેમ્પલેટ"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "ઓપનડોકયુમેન્ટ લખાણ ટેમ્પલેટ"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME એક્સટેન્શન"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/gu/svx/messages.po b/source/gu/svx/messages.po
index 236b1e2b42c..c2ed120a157 100644
--- a/source/gu/svx/messages.po
+++ b/source/gu/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Gujarati <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/gu/>\n"
@@ -16662,12 +16662,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
-#, fuzzy
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "ટિપ્પણીઓ"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/gu/sw/messages.po b/source/gu/sw/messages.po
index 75ec8f9741d..90aff582fd9 100644
--- a/source/gu/sw/messages.po
+++ b/source/gu/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17782,88 +17782,94 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "સામાન્ય"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "મથાળુ (_d)"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
#, fuzzy
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "નવાં પાનાં પર પંક્તિ શીર્ષકને પુનરાવર્તિત કરો (_p)"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "પાનાં પર કોષ્ટકને અલગ કરો નહિં (_s)"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
#, fuzzy
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "હારમાળા શીર્ષક (_w):"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "વિકલ્પો"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20455,296 +20461,296 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Switches between master view and normal view if a master document is open."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "હેડર"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
#, fuzzy
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "ફુટર"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
#, fuzzy
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "સ્તર પ્રમોટ કરો"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
#, fuzzy
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "સ્તર ડિમોટ કરો"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
#, fuzzy
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "ખેંચન સ્થિતિ"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "દસ્તાવેજ"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
#, fuzzy
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "સક્રિય વિન્ડો"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Switches between master view and normal view if a master document is open."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "ફેરફાર"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "ફેરફાર"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Click and choose the contents that you want to update."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "દાખલ કરો"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Inserts a file, an index, or a new document into the master document."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
#, fuzzy
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "ઉપર ખસેડો (_U)"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
#, fuzzy
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "નીચે ખસેડો (_w)"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/gug/helpcontent2/source/text/scalc/01.po b/source/gug/helpcontent2/source/text/scalc/01.po
index 9b63ab59bf7..0ce0f9bb65f 100644
--- a/source/gug/helpcontent2/source/text/scalc/01.po
+++ b/source/gug/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2020-11-02 14:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/es/>\n"
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr "Uso de expresiones regulares y funciones anidadas"
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/gug/helpcontent2/source/text/scalc/guide.po b/source/gug/helpcontent2/source/text/scalc/guide.po
index 83d514abb47..e0265195347 100644
--- a/source/gug/helpcontent2/source/text/scalc/guide.po
+++ b/source/gug/helpcontent2/source/text/scalc/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-03 12:42+0100\n"
-"PO-Revision-Date: 2020-11-05 10:35+0000\n"
+"PO-Revision-Date: 2020-11-17 16:43+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/es/>\n"
"Language: es\n"
@@ -5990,7 +5990,7 @@ msgctxt ""
"par_id3147394\n"
"help.text"
msgid "Set the cursor at the number and choose <emph>Format - Cells</emph> to start the <emph>Format Cells</emph> dialog."
-msgstr "Coloque el cursor junto al número y seleccione <emph>Formato - Celda</emph> para abrir el diálogo <emph>Formateado de celdas</emph>."
+msgstr "Coloque el cursor junto al número y seleccione <emph>Formato ▸ Celdas</emph> para abrir el cuadro de diálogo <emph>Formato de celdas</emph>."
#. 6rPBs
#: format_value.xhp
diff --git a/source/gug/helpcontent2/source/text/sdraw.po b/source/gug/helpcontent2/source/text/sdraw.po
index 03a0283037a..8343962e315 100644
--- a/source/gug/helpcontent2/source/text/sdraw.po
+++ b/source/gug/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-04 05:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/es/>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/gug/helpcontent2/source/text/shared/00.po b/source/gug/helpcontent2/source/text/shared/00.po
index 85fdb3c1e5d..0b37382a3ef 100644
--- a/source/gug/helpcontent2/source/text/shared/00.po
+++ b/source/gug/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-11-03 11:58+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/es/>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "Un buen ejemplo de base de datos relacional es una base de datos de compras con tablas de Cliente, Compra y Factura. La tabla Factura no contiene realmente datos de clientes ni de compras; no obstante, sí contiene, a través de un vínculo relacional o relación, referencias a los campos correspondiente de las tablas de clientes y de compras (por ejemplo, el campo ID cliente de la tabla de clientes)."
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "<bookmark_value>Conformidad de registro;definir</bookmark_value>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "Conformidad de registro"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/gug/helpcontent2/source/text/shared/01.po b/source/gug/helpcontent2/source/text/shared/01.po
index 5e5c74c5ed0..5da7d52d952 100644
--- a/source/gug/helpcontent2/source/text/shared/01.po
+++ b/source/gug/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-13 12:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/es/>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr "Para determinados tipos de documentos puede elegir imprimir un prospecto."
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr "Más opciones"
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr "<ahelp hid=\".\">En el cuadro de diálogo <emph>Más opciones</emph> puede establecer determinadas opciones adicionales para la tarea de impresión actual.</ahelp>"
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,14 +9376,14 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "Alterna entre la vista patrón y la normal."
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icono</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgstr ""
#. 3Lq2G
#: 02110000.xhp
@@ -9430,14 +9412,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_EDIT\">Le permite modificar el contenido del componente seleccionado en la lista del <emph>Navegador</emph>. Si la selección es un archivo, este se abre para su edición. Si la selección es un índice, se abre el cuadro de diálogo <emph>Índice</emph>.</ahelp>"
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icono</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgstr ""
#. nRB3E
#: 02110000.xhp
@@ -9466,14 +9448,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Pulse y seleccione el contenido que desee actualizar.</ahelp>"
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icono</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgstr ""
#. F4J5u
#: 02110000.xhp
@@ -9601,14 +9583,14 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "También se pueden insertar archivos en el patrón de documento; para hacerlo, arrastre un archivo del escritorio y colóquelo en la vista de patrón del Navegador."
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icono</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgstr ""
#. ijR7M
#: 02110000.xhp
@@ -9709,14 +9691,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Guarda una copia del contenido de los archivos enlazados en el patrón de documento. De esta forma, se garantiza la disponibilidad del contenido si no se pudiera acceder a los archivos enlazados.</ahelp>"
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icono</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgstr ""
#. ADEyJ
#: 02110000.xhp
@@ -9745,14 +9727,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Mueve la selección una posición hacia arriba en la lista del Navegador.</ahelp> Es posible también desplazar entradas arrastrándolas y colocándolas en la lista. Si desplaza una sección de texto junto a otra, ambas se combinan."
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icono</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgstr ""
#. GqEUL
#: 02110000.xhp
@@ -9781,14 +9763,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Mueve la selección una posición hacia abajo en la lista del Navegador.</ahelp> Es posible también desplazar entradas arrastrándolas y colocándolas en la lista. Si desplaza una sección de texto junto a otra, ambas se combinan."
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
-msgstr "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icono</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgstr ""
#. DLEGF
#: 02110000.xhp
diff --git a/source/gug/helpcontent2/source/text/shared/02.po b/source/gug/helpcontent2/source/text/shared/02.po
index 662c09ce91d..17a714571a9 100644
--- a/source/gug/helpcontent2/source/text/shared/02.po
+++ b/source/gug/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-02 14:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/es/>\n"
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Reducir sangría</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11059,14 +11059,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icono</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgstr ""
#. 9iqpg
#: 02130000.xhp
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr ""
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Aumentar sangría</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11131,14 +11131,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icono</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgstr ""
#. bAyat
#: 02140000.xhp
diff --git a/source/gug/helpcontent2/source/text/shared/optionen.po b/source/gug/helpcontent2/source/text/shared/optionen.po
index 177e981beda..829427907f7 100644
--- a/source/gug/helpcontent2/source/text/shared/optionen.po
+++ b/source/gug/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-02 14:56+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-20 14:49+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/es/>\n"
"Language: es\n"
@@ -3560,7 +3560,7 @@ msgctxt ""
"par_id4743797\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optviewpage/aanf\">Enter the smallest font size to apply antialiasing.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Especifique el tamaño de tipo de letra más pequeño para aplicar el suavizado.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/aanf\">Especifique el tamaño de tipo de letra más pequeño para aplicar el antidentado.</ahelp>"
#. QWZyh
#: 01010800.xhp
@@ -9149,7 +9149,7 @@ msgctxt ""
"par_id3151114\n"
"help.text"
msgid "<ahelp hid=\".\">Click a color. Click the <emph>None</emph> button to remove a background color.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Pulse en un color. Pulse en el botón <emph>Ninguno</emph> para quitar el color de fondo.</ahelp>"
#. YvDPU
#: 01060000.xhp
@@ -10769,7 +10769,7 @@ msgctxt ""
"par_id3155097\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulaliteral\">Specifies that only literal strings are used when searching and also for character string comparisons.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> This relates to the <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">database functions</link>, and to LOOKUP, VLOOKUP, HLOOKUP, MATCH, AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, SUMIF, SUMIFS and SEARCH.</caseinline></switchinline>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulaliteral\">Especifica que se utilicen solo cadenas literales en las búsquedas y al comparar cadenas de caracteres.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> Esta opción es relevante para las <link href=\"text/scalc/01/04060101.xhp\" name=\"funciones de base de datos\">funciones de base de datos</link>, así como para BUSCAR, BUSCARV, BUSCARH, COINCIDIR, PROMEDIO.SI, PROMEDIO.SI.CONJUNTO, SUMAR.SI, SUMAR.SI.CONJUNTO y HALLAR.</caseinline></switchinline>"
#. xpfmF
#: 01060500.xhp
@@ -10805,7 +10805,7 @@ msgctxt ""
"par_id3151242\n"
"help.text"
msgid "<emph>Example</emph>: Cell E5 contains the text \"Europe\". Below, in cell E6, is the value 100 and in cell E7 the value 200. If the <emph>Automatically find column and row labels</emph> box is marked, you can write the following formula in cell A1: =SUM(Europe)."
-msgstr "<emph>Ejemplo</emph>: La celda E5 contiene el texto \"Europa\". Debajo, en la celda E6, se encuentra el valor 100 y en la celda E7 el valor 200. Si la opción <emph>Buscar automáticamente las etiquetas de filas y columnas</emph> está seleccionada, puede escribir la fórmula siguiente en la celda A1: =SUMA(Europa)."
+msgstr "<emph>Ejemplo</emph>: la celda E5 contiene el texto «Europa». Debajo, en la celda E6, se encuentra el valor 100 y en la celda E7 el valor 200. Si la opción <emph>Buscar automáticamente etiquetas de columna y fila</emph> está seleccionada, puede escribir la fórmula siguiente en la celda A1: =SUMA(Europa)."
#. zDS7k
#: 01060500.xhp
@@ -11860,32 +11860,32 @@ msgctxt ""
msgid "Snap"
msgstr "Acoplar"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "A las guías"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
-msgstr "Esta configuración se puede establecer también mediante el icono <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Ajustar a las guías\"><emph>Ajustar a las guías</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Ajustar a las guías\"><emph>Ajustar a las guías</emph></link></caseinline><defaultinline><emph>Ajustar a las guías</emph></defaultinline></switchinline>, disponible en la <emph>barra de opciones</emph> de una presentación o documento de dibujo."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgstr ""
#. eUCCJ
#: 01070300.xhp
@@ -17456,7 +17456,7 @@ msgctxt ""
"par_idN10557\n"
"help.text"
msgid "When you enter settings on the <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME Writer - Mail Merge Email</link> tab page, you can click the <emph>Test Settings</emph> button to test your settings."
-msgstr ""
+msgstr "A medida que introduce configuraciones en la pestaña <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferencias</caseinline><defaultinline>Herramientas ▸ Opciones</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME Writer ▸ Correo para combinar correspondencia</link>, puede utilizar el botón <emph>Probar configuración</emph> para poner a prueba sus elecciones."
#. 4AK5G
#: testaccount.xhp
diff --git a/source/gug/helpcontent2/source/text/simpress/02.po b/source/gug/helpcontent2/source/text/simpress/02.po
index 3ab4e0c817e..b56ddf1d8ad 100644
--- a/source/gug/helpcontent2/source/text/simpress/02.po
+++ b/source/gug/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-04 05:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress02/es/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1534121568.000000\n"
#. AiACn
@@ -5695,41 +5695,41 @@ msgctxt ""
msgid "Exit all groups"
msgstr "Salir de todos los grupos"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Ajustar a las guías"
+msgid "Snap to Snap Guides"
+msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Ajustar a las guías\">Ajustar a las guías</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icono</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Ajustar a las guías"
+msgid "Snap to Snap Guides"
+msgstr ""
#. oXWsX
#: 13150000.xhp
diff --git a/source/gug/helpcontent2/source/text/swriter.po b/source/gug/helpcontent2/source/text/swriter.po
index 9e7725c6d44..88d3ede0056 100644
--- a/source/gug/helpcontent2/source/text/swriter.po
+++ b/source/gug/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-02 14:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/es/>\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "De izquierda a derecha"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">icono de izquierda a derecha</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "De derecha a izquierda"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">icono de derecha a izquierda</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/gug/helpcontent2/source/text/swriter/01.po b/source/gug/helpcontent2/source/text/swriter/01.po
index dd6a9c4f706..29f4d6bea6e 100644
--- a/source/gug/helpcontent2/source/text/swriter/01.po
+++ b/source/gug/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-04 00:16+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/es/>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "Navegador"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30105,6 +30105,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\".\">Abre el diálogo <emph>Destinatarios de combinar correspondencia</emph>.</ahelp>"
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/gug/helpcontent2/source/text/swriter/guide.po b/source/gug/helpcontent2/source/text/swriter/guide.po
index e988e97ee1b..b1c7186262b 100644
--- a/source/gug/helpcontent2/source/text/swriter/guide.po
+++ b/source/gug/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-11-04 00:16+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/es/>\n"
@@ -7792,50 +7792,50 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Sangría de párrafos</link></variable>"
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
-msgstr "Para cambiar las unidades de medición vaya a <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME ▸ Preferencias</item></caseinline><defaultinline><item type=\"menuitem\">Herramientas ▸ Opciones</item></defaultinline></switchinline><item type=\"menuitem\"> ▸ %PRODUCTNAME Writer ▸ General</item> y, a continuación, elija una unidad nueva en el área de configuración."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgstr "Puede cambiar las sangrías para el párrafo actual, para todos los párrafos seleccionados, o para un estilo de párrafo."
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
-msgstr "Puede cambiar las sangrías para el párrafo actual, para todos los párrafos seleccionados, o para un estilo de párrafo."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgstr "Elija <item type=\"menuitem\">Formato ▸ Párrafo ▸ Sangría y espaciado</item> para cambiar la sangría para el párrafo actual o para todos los párrafos seleccionados. También puede <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">fijar la sangría mediante la regla</link>."
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
-msgstr "También puede <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">fijar la sangría mediante la regla</link>. Para mostrar la regla, elija <item type=\"menuitem\">Ver ▸ Regla</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
+msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
-msgstr "Elija <item type=\"menuitem\">Formato ▸ Párrafo ▸ Sangría y espaciado</item> para cambiar la sangría para el párrafo actual o para todos los párrafos seleccionados. También puede <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">fijar la sangría mediante la regla</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgstr "También puede <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">fijar la sangría mediante la regla</link>. Para mostrar la regla, elija <item type=\"menuitem\">Ver ▸ Regla</item>."
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
-msgstr "Pulse con el botón derecho del ratón sobre un párrafo y elija <item type=\"menuitem\">Editar ▸ Estilo de párrafo ▸ Sangría y espaciado</item> para cambiar las sangrías para todos los párrafos que tengan el mismo estilo de párrafo."
+msgid "Positioning indents"
+msgstr ""
#. qUxKq
#: indenting.xhp
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr "Las sangrías se calculan en relación con los márgenes de página izquierdo y derecho. Introduzca un valor negativo si quiere que el párrafo ocupe el margen de la página."
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr "Para cambiar las unidades de medición vaya a <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME ▸ Preferencias</item></caseinline><defaultinline><item type=\"menuitem\">Herramientas ▸ Opciones</item></defaultinline></switchinline><item type=\"menuitem\"> ▸ %PRODUCTNAME Writer ▸ General</item> y, a continuación, elija una unidad nueva en el área de configuración."
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr "Las sangrías difieren según la dirección de la escritura. Por ejemplo, compare el valor de <item type=\"menuitem\">Antes del texto</item> en los idiomas que se escriben de izquierda a derecha. El borde izquierdo del párrafo se sangra respecto al margen izquierdo de la página. En los idiomas que se escriben de derecha a izquierda, se aplica sangría en el extremo derecho del párrafo respecto al margen derecho de la página."
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr "Para una sangría francesa, escriba un valor positivo para <item type=\"menuitem\">Antes del texto</item> y un valor negativo para <item type=\"menuitem\">Primera línea</item>."
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,14 +10294,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "Activar o desactivar el reconocimiento de números en tablas"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "<bookmark_value>números; reconocimiento automático en tablas de texto</bookmark_value> <bookmark_value>tablas; reconocimiento de números</bookmark_value> <bookmark_value>fechas;formato automático en tablas</bookmark_value> <bookmark_value>reconocimiento;números</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10267,14 +10330,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Siga uno de estos procedimientos:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "Pulse con el botón secundario del ratón sobre una celda de la tabla y elija <item type=\"menuitem\">Reconocimiento de números</item>. Cuando esta función está activada, se muestra una marca de comprobación delante de la orden <item type=\"menuitem\">Reconocimiento de números</item>."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr "Vaya a <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferencias</caseinline><defaultinline>Herramientas ▸ Opciones</defaultinline></switchinline> ▸ <item type=\"menuitem\">%PRODUCTNAME Writer ▸ Tabla</item> y seleccione o desmarque la casilla <item type=\"menuitem\">Reconocimiento de números</item>."
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12211,6 +12292,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "Cuando cree un documento que se deba imprimir como prospecto, asigne a las páginas orientación vertical. Writer aplica el diseño de prospecto al imprimir el documento."
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12256,50 +12355,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "Si su impresora admite la función dúplex, y debido a que los prospectos suelen imprimirse horizontalmente, utilice la opción «Dúplex, margen corto» del cuadro de diálogo de configuración de la impresora."
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
-msgstr "Regrese al diálogo <emph>Imprimir</emph> y pulse en la pestaña <emph>Disposición de página</emph>."
+msgid "Return to <emph>Print</emph> dialog."
+msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
-msgstr "Seleccione <emph>Prospecto</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
+msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "Si su impresora imprime de forma automática en ambas caras de las hojas, indique que quiere imprimir «Todas las páginas»."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Pulse en <emph>Aceptar</emph>."
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "Si %PRODUCTNAME imprime las páginas en un orden incorrecto, abra la pestaña <emph>Opciones</emph> y marque <emph>Imprimir en orden inverso</emph>, e imprima nuevamente el documento."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">Archivo ▸ Previsualización de impresión</link>."
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,32 +12724,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Imprimir varias páginas por hoja de papel\">Imprimir varias páginas por hoja de papel</link></variable>"
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
-msgstr "En la pestaña <emph>Disposición de página</emph> del cuadro de diálogo <item type=\"menuitem\">Archivo ▸ Imprimir</item> encontrará la opción para imprimir varias páginas por hoja de papel."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
+msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
-msgstr "Elija <emph>Archivo ▸ Imprimir</emph> y pulse en la pestaña <emph>Diseño de página</emph>."
+msgid "Choose <menuitem>File - Print</menuitem>"
+msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Siga uno de estos procedimientos:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/gug/sc/messages.po b/source/gug/sc/messages.po
index 0d7cff23720..c9498f19893 100644
--- a/source/gug/sc/messages.po
+++ b/source/gug/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-08-16 15:23+0000\n"
"Last-Translator: Porfiria Orrego <porrego9@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29005,38 +29005,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Puru métricas impresorasgui formato haguã moñe'ẽrãgui"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Sa'y hi'ári ojepo_ravo omoakã tysỹi/columnas gui"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Emoĩ al día referencias emohenda jave peteĩ rango koty'i kuéragui"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Tenda-moambue Jeikehágui"
diff --git a/source/gug/sfx2/messages.po b/source/gug/sfx2/messages.po
index 56ff1b5a494..a12e56a1d7a 100644
--- a/source/gug/sfx2/messages.po
+++ b/source/gug/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-10-21 19:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1602,289 +1602,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. eprKp
-#: include/sfx2/strings.hrc:297
-#, fuzzy
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Joko"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Ñoña'ỹ"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Opcionáke've"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Emboty Barra Ijykepegua"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr ""
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Myatyrõ ndegustaháicha"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Emoĩ oĩhaguéicha voi"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Emboty Barra Ijykepegua"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Nohẽ"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4133,6 +4094,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Juka..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/gug/starmath/messages.po b/source/gug/starmath/messages.po
index 543a26471e2..1c4202a4dc2 100644
--- a/source/gug/starmath/messages.po
+++ b/source/gug/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-05-08 13:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -425,2079 +425,2212 @@ msgid "or"
msgstr "o"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Signo +"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Signo -"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Signo +-"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Signo -+"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "NO lógico"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Suma +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Sustracción -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Multiplicación (⦁)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Multiplicación (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Multiplicación (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "División ( / )"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "División (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "División (Fracción)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Y lógico"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "O logico"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Ha'ete a"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Ha'ete ỹ"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Ha'e Michĩve Que"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Ha'e Tuichave Que"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Ha'e Michĩve Que o Ha'ete a"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Ha'e Tuichave Que o Ha'ete a"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Ha'e Michĩve Que o Ha'ete a"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Ha'e Tuichave Que o Ha'ete a"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Ha'e Heta Michĩve Que"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Ha'e Heta Tuichave Que"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Ha'e Congruente con"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Ha'e Aproximadamente Ha'ete"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Ha'e Ha'ete a"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Ha'e Ha'ete o Parecido"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Ha'e Proporcional a"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Ha'e Ortogonal a"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Ha'e Paralelo a"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Tiende a"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Oĩ en"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Ndoĩrĩ en"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Oguereko"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Union"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Intersección"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Ojuavy"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "SubAty"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "SubAty o Ha'ete a"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "SuperAty"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "SuperAty o Ha'ete a"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Ndahaéi SubAty"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Ndahaéi SubAty o Ha'ete"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Ndahaéi SuperAty"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Ndahaéi SuperAty o Ha'ete"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Valor Absoluto"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Factorial"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Raíz cuadrada"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "Raíz enésima"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Función Exponencial"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Función Exponencial"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Logaritmo Natural"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logaritmo"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Seno"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Coseno"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangente"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Cotangente"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arcoseno"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arcocoseno"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arcotangente"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arcocotangente"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Seno Hiperbólico"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Coseno Hiperbólico"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Tangente Hiperbólica"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Cotangente Hiperbólica"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Seno Hiperbólico de Área"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Coseno Hiperbólico de Área"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Tangente Hiperbólica de Área"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Cotangente Hiperbólica de Área"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Suma"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Suma con Subíndice Yvýpe"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Suma con Superíndice Yvate"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Suma con Subíndice ha Superíndice"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Producto"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Producto con Subíndice Yvýpe"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Producto con Subíndice Yvate"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Producto con Subíndice ha Superíndice"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Coproducto"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Coproducto con Subíndice Yvýpe"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Coproducto con Superíndice Yvate"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Coproducto con subíndice y superíndice"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Límites"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Límite con Subíndice Yvýpe"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Límite con Superíndice Yvate"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Límite con subíndice y superíndice"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Oĩ"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Ndoĩrĩ"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Opavavépe"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integral"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Integral con Subíndice Yvýpe"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Integral con Superíndice Yvate"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integral con subíndice y superíndice"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Integral Kõi"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Integral Kõi con Subíndice Yvýpe"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Integral Kõi con Superíndice Yvate"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Integral Kõi con Subíndice ha Superíndice"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Integral Triple"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Integral Triple con Subíndice Yvýpe"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Integral Triple con Subíndice Yvate"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Integral triple con subíndice y superíndice"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Integral Curvilínea"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Integral Curvilínea con Subíndice Yvýpe"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Integral Curvilínea con Subíndice Yvate"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Integral curvilínea con subíndice y superíndice"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Integral Curvilínea Kõi"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Integral Curvilínea Kõi con Subíndice Yvýpe"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Integral Curvilínea Kõi con Superíndice Yvate"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Integral curvilínea kõi con subíndice/superíndice"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Integral Curvilínea Triple"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Integral Curvilínea Triple con Subíndice Yvýpe"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Integral Curvilínea Triple con Superíndice Yvate"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Integral curvilínea triple con subíndice/superíndice"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Muanduhe Agudo"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Línea Yvatégui"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Mbyky"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Circunflejo Inverso"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Círculo"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Kyta"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Kõi Kyta"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Kyta Triple"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Muanduhe Grave"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Circunflejo"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Virgulilla"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Flecha Vectorial"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Linea Yvýpegua"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Línea Yvatégui"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Línea Ohasáa"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Tesakã"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Hũ'i"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Cursiva"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Mbotuichave Jey"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Moambue Letra Háicha"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Hũ"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Hovy"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Aky"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Pytã"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Hũndy"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Lima"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Yvysa'y"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Hovy Marino"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Aceituna"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Lila"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Plata"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Sa'y Aky-Hovyha"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Sa'yju"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Paréntesis Aty"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Paréntesis"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Corchetes"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Corchetes Kõi"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Llaves"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Paréntesis Angulares"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Techo"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Suelo"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Líneas Sencillas"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Líneas Kõi"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Paréntesis de Operador"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Paréntesis (Ampliables)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Corchetes (Ampliables)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Corchetes Kõi (Ampliables)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Llaves (Ampliables)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Paréntesis Angulares (Jeupiva)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Techo (Ampliables)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Piso (Ampliables)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Línea Sencillas (Ampliables)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Líneas Kõi (Ampliables)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Paréntesis de Operador (Ampliables)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Llaves Yvate (Ampliables)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Llaves Yvýpe (Ampliables)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Subíndice Akatúa"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Potencia"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Subíndice Asúpe"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Superíndice Asúpe"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Subíndice Yvýpe"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Superíndice Yvate"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Pa'ũ Michĩ"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Nandi"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Línea Pyahu"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Apilado Oñembo'ýva (2 Elemento)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Apilado Oñembo'ýva"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Disposición Matriz"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Alinear Asúpe"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Alinear Mbytépe"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Alinear Akatúape"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Alef"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Aty Nandi"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Parte Real"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Parte Imaginaria"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Infinito"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Parcial"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "p de Weierstrass"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Kyta kuéra Mbytépe"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Kyta kuéra Yvatéguoto"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Kyta kuéra Yvýguoto"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Kyta kuéra Yvýpe"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Kyta kuéra Oñembo'ýva"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Concatenar"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "División (barra pyrusu)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "División (barra inversa grande)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Divide a"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "No Divide"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Flecha Kõi Asúpe"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Flecha Kõi Asúpe ha Akatúa"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Flecha Kõi Akatúa"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Aty Papapýgui Naturales"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Aty Papapýgui Oĩmbáva"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Aty Papapýgui Racionales"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Aty Papapýgui Reales"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Aty Papapýgui Hasýva"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Circunflejo Tuicha"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Tilde Tuicha"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Tuicha Flecha Vectorial"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h con Barra"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Barra Lambda"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Flecha Asúpe"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Flecha Akatúa"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Flecha Yvate"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Flecha Yvýpe"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Pa'ũ ỹre"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Precede a"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Mboyve o Ha'ete a"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Mboyve o Equivalente a"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Sucede a"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
#, fuzzy
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Segue o è uguale a"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
#, fuzzy
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Segue o è equivalente a"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Mboyve'ỹ a"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Non segue"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Operadores Unarios/Binarios"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Relaciones"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Operaciones Atýgui"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Mba'apo"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operadores"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Atributos"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Paréntesis"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formatos"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Ambue"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Techapyrã kuéra"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Estándar"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Cursiva"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Hũ'i"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "hũ"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "hovy"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "aky"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "pytã"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "hũndy"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "lima"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "marrón"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "hovy marino"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "aceituna"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "lila"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "plata"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "aky-hovyha"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "sa'yju"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "mokañy"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "tamaño"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "letra háicha"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "asúpe"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "mbyte"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "akatúa"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Comandos"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formula"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Ñongatu hína documento..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Fórmula de %PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "JEJAVY: "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Carácter ha'arõpapyre'ỹ"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
#, fuzzy
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Atteso '{'"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
#, fuzzy
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' atteso"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
#, fuzzy
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Atteso '('"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
#, fuzzy
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Atteso ')'"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
#, fuzzy
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Atteso '#'"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Ñeikotevẽva peteĩ Sa'y"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
#, fuzzy
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Atteso 'RIGHT'"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Orekóva"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Título"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Moñe'ẽrã fórmulagui"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Borde"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Tamaño"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Tamaño original"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Ojeahusta a rogue"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
diff --git a/source/gug/svtools/messages.po b/source/gug/svtools/messages.po
index 09921a4c980..826e2429ed3 100644
--- a/source/gug/svtools/messages.po
+++ b/source/gug/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,484 +18,484 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Japo'ỹ: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Ha'ejevy: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Moñe'ẽrã Formato'yre"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr ""
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Marcador Netscape gui"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr ""
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr ""
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
#, fuzzy
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Eipuru mba'e"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Mba'e Plug-in"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Mba'e StarWriter 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Mba'e StarWriter 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Mba'e StarWriter 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Mba'e StarWriter/Web 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Mba'e StarWriter/Web 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Mba'e StarWriter/Master 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Mba'e StarWriter/Master 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Mba'e StarDraw"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Mba'e StarDraw 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Mba'e StarImpress 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Mba'e StarDraw 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Mba'e StarCalc"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Mba'e StarCalc 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Mba'e StarCalc 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Mba'e StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Mba'e StarChart 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Mba'e StarChart 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Mba'e StarImage"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Mba'e StarImage 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Mba'e StarImage 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Mba'e StarMath"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Mba'e StarMath 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Mba'e StarMath 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Mba'e StarObject Paint"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Mba'e Microsoft Word"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Mba'e StarFrameSet"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Documento Office"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr ""
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Documento Sfx"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Mba'e StarChart 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Mba'e gráfico"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Mba'e OpenOffice.org Writer 1.0"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Mba'e OpenOffice.org Writer/Web 1.0"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Mba'e OpenOffice.org Writer/Master 1.0"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Mba'e OpenOffice.org Draw 1.0"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Mba'e OpenOffice.org Impress 1.0"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Mba'e OpenOffice.org Calc 1.0"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Mba'e OpenOffice.org Chart 1.0"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Mba'e OpenOffice.org Math 1.0"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows Meta Añongatu"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Mba'e moógui ou dato kuéra"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabla de moógui ou dato kuéra"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Ñeporandu SQL"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Ñemongeta OpenOffice.org 1.0"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Link"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr ""
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
#, fuzzy
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Nikatúi ojemoinge la tabla."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr ""
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr ""
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Moógui ou jekuaa'ỹva"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -503,21 +503,21 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumérico"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
#, fuzzy
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
@@ -525,28 +525,28 @@ msgstr "_Caracteres aty"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Ñe'ẽryru"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr ""
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr ""
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
#, fuzzy
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
@@ -554,61 +554,61 @@ msgstr "Radial"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr ""
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr ""
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr ""
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr ""
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumérico"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Ñe'ẽryru"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr ""
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
#, fuzzy
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
@@ -616,1136 +616,1136 @@ msgstr "Radial"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr ""
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr ""
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr ""
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr ""
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr ""
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
#, fuzzy
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Akatúa"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr ""
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normal"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Cursiva"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Hũ'i"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Hũ'i Cursiva"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Hũ"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Hũ Cursiva"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Kuatiahai"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensado"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr ""
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr ""
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr ""
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr ""
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr ""
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Mongu'e Asúpe"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Mongu'e Akatúa"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Moĩ"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Regla Oñenóva"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Regla Oñembo'ýva"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 bit umbral"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 Bit Interpolación"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Escala hũngy 4 bits"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Sa'y 4 bit"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Escala hũndy 8 bits"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Sa'y 8 bit"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Sa'y Ete 24 bit"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Post"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Mohenda"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Pausa"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Tembiapope"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr ""
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Ha'arõ jave"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Imprimiendo"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Jejavy"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O kyre'ỹ"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Tóner karape"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "J~uka Rogue"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr ""
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Impresora Default"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documentos"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<mavave>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Empresa"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Departamento"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Peteĩha téra"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Apellidos"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Táva Rape"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Tetã"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr ""
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Táva"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Título"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Ñemohenda"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr ""
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Iniciales"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
#, fuzzy
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Ñe'ẽjoaju Tayma"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel: Óga"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr ""
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
#, fuzzy
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Mavave"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Usuario 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Usuario 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Usuario 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Usuario 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Estado/Provincia/Departamento"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr ""
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Beeper"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Celular"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr ""
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr ""
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr ""
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr ""
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Poravo JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr ""
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Código moógui ou"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Ñongatuha marcador kuéra"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Ta'anga kuéra"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Ñongatuha configuracióngui"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplicación"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
#, fuzzy
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Ñongatuha Base de datosgui"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Ñongatuha Sistemagui"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Documento MS Word"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Ñongatuha Pytyvõgui"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Documento HTML"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr ""
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr ""
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Base de datos StarOffice"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Documento Master StarWriter 4.0 / 5.0"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Ta'anga StarOffice"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Ñongatuha Moñe'ẽrãgui"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Link"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Plantilla StarOffice 3.0 - 5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Documento MS Excel"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Plantilla MS Excel"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr ""
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Ñongatuha"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Carpeta"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Documento Moñe'ẽrã"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Kuatia Kálkulo Peguarã"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Ojechauka"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Dibujo"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Documento HTML"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Documento master"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Fórmula"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Base de datos"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Plantilla Kuatia Kálkulo Peguarã OpenOffice.org 1.0"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Plantilla Dibújogui OpenOffice.org 1.0"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Plantilla Ojechauka OpenOffice.org 1.0"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Plantilla Documento Moñe'ẽrãgui OpenOffice.org 1.0"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unidad local"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Unidad de disco"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Unidad de CD-ROM"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Conexión de Red"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Documento MS PowerPoint"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Plantilla MS PowerPoint"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr ""
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Fórmula OpenOffice.org 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Gráfico OpenOffice.org 1.0"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Dibujo OpenOffice.org 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Kuatia Kálkulo Peguarã OpenOffice.org 1.0"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Ojechauka OpenOffice.org 1.0"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Documento Moñe'ẽrã OpenOffice.org 1.0"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Documento Master OpenOffice.org 1.0"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Documento MathML"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Base de datos OpenDocument"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Dibujo OpenDocument"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Fórmula OpenDocument"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Documento Master OpenDocument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Ojechauka OpenDocument"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Kuatia Kálkulo Peguarã OpenDocument"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Moñe'ẽrã OpenDocument"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Plantilla Kuatia Kálkulo Peguarã OpenDocument"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Plantilla Dibújogui OpenDocument"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Plantilla Ojechauka OpenDocument"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Plantilla Moñe'ẽrãgui OpenDocument"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Extensión %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/gug/svx/messages.po b/source/gug/svx/messages.po
index ebbedeb1b28..52ddacb5e01 100644
--- a/source/gug/svx/messages.po
+++ b/source/gug/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-09-01 16:20+0000\n"
"Last-Translator: Giovanni Caligaris <giovannicaligaris@gmail.com>\n"
"Language-Team: Guarani (Paraguayan) <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/gug/>\n"
@@ -16598,11 +16598,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_Oje'éva"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/gug/sw/messages.po b/source/gug/sw/messages.po
index d008a0fbd7a..9c1e5b23d79 100644
--- a/source/gug/sw/messages.po
+++ b/source/gug/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-08-19 12:02+0200\n"
"Last-Translator: pastora <pastora.leguizamon@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17500,86 +17500,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "General"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "Oñemo_akãva"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Ha'ejevy tysỹi títulogui _rogue pyahúpe"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Odividi'ỹ tabla rogue heta hápe"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "_Tysýi kuéra Oñemoakãva"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Opcionáke"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20097,289 +20103,289 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Emombyky patrõ jehecha"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Ñeikundaha retepy jehecha"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Omoakãva"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Py"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Jokoha<->Moñe'ẽrã"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Emoĩ Mandua'arã"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Teratee rehegua jehechaukapyre"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Tysýi ryru Ogue/Hendy"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Ñemoherakuã rehegua"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Ñemomichĩ rehegua"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Emomba'e vore"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Emomichĩ vore"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Mbotyryry reko"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Kuatia"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Ovetã myandypyre"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Embojopyru jehecha ha'etéva"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Mbosako'i"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Mbohekopyahu"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Moinge"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Eñongatu tetepy avei"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Hupi"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Mboguejy"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/he/helpcontent2/source/text/scalc/01.po b/source/he/helpcontent2/source/text/scalc/01.po
index 70948d149b4..27ee383de91 100644
--- a/source/he/helpcontent2/source/text/scalc/01.po
+++ b/source/he/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2020-06-09 21:11+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/he/>\n"
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr ""
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/he/helpcontent2/source/text/sdraw.po b/source/he/helpcontent2/source/text/sdraw.po
index 4db695d55d1..063a2da1479 100644
--- a/source/he/helpcontent2/source/text/sdraw.po
+++ b/source/he/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 11:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/he/helpcontent2/source/text/shared/00.po b/source/he/helpcontent2/source/text/shared/00.po
index 2fa11e5046c..2ab6cdd2996 100644
--- a/source/he/helpcontent2/source/text/shared/00.po
+++ b/source/he/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-06-09 21:11+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/he/>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "A good example of a relational database can be given with the purchase of a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
-#. ygQrE
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
-"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
-msgstr "\\<bookmark_value\\>register-true; definition\\</bookmark_value\\>"
-
-#. d59SH
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"hd_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "Register-true"
-msgstr "Register-true"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgstr ""
-#. ECfHB
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/he/helpcontent2/source/text/shared/01.po b/source/he/helpcontent2/source/text/shared/01.po
index 21c2249ba5d..28d7c724c2f 100644
--- a/source/he/helpcontent2/source/text/shared/01.po
+++ b/source/he/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr ""
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr ""
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr ""
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,13 +9376,13 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "Switches between master view and normal view."
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
msgstr ""
#. 3Lq2G
@@ -9430,13 +9412,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr ""
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
msgstr ""
#. nRB3E
@@ -9466,13 +9448,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr ""
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
msgstr ""
#. F4J5u
@@ -9601,13 +9583,13 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
msgstr ""
#. ijR7M
@@ -9709,13 +9691,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr ""
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
msgstr ""
#. ADEyJ
@@ -9745,13 +9727,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
msgstr ""
#. GqEUL
@@ -9781,13 +9763,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
msgstr ""
#. DLEGF
diff --git a/source/he/helpcontent2/source/text/shared/02.po b/source/he/helpcontent2/source/text/shared/02.po
index 6b709e15cdd..534a51a0978 100644
--- a/source/he/helpcontent2/source/text/shared/02.po
+++ b/source/he/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 13:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11032,13 +11032,13 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
msgstr ""
#. DCXbA
@@ -11059,13 +11059,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
msgstr ""
#. 9iqpg
@@ -11104,13 +11104,13 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr ""
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
msgstr ""
#. FBggx
@@ -11131,13 +11131,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
msgstr ""
#. bAyat
diff --git a/source/he/helpcontent2/source/text/shared/optionen.po b/source/he/helpcontent2/source/text/shared/optionen.po
index 8a385f94a01..55462f66be7 100644
--- a/source/he/helpcontent2/source/text/shared/optionen.po
+++ b/source/he/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11860,31 +11860,31 @@ msgctxt ""
msgid "Snap"
msgstr "Snap"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "To snap lines"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
msgstr ""
#. eUCCJ
diff --git a/source/he/helpcontent2/source/text/simpress/02.po b/source/he/helpcontent2/source/text/simpress/02.po
index 14381605327..2fbbd194e1c 100644
--- a/source/he/helpcontent2/source/text/simpress/02.po
+++ b/source/he/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 11:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5695,40 +5695,40 @@ msgctxt ""
msgid "Exit all groups"
msgstr "Exit all groups"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
#. oXWsX
diff --git a/source/he/helpcontent2/source/text/swriter.po b/source/he/helpcontent2/source/text/swriter.po
index ead484cf32a..be225c4c3a1 100644
--- a/source/he/helpcontent2/source/text/swriter.po
+++ b/source/he/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-10-21 20:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2212,13 +2212,13 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "Left-To-Right"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
msgstr ""
#. Xg9vt
@@ -2239,13 +2239,13 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "Right-To-Left"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
msgstr ""
#. TMwGp
diff --git a/source/he/helpcontent2/source/text/swriter/01.po b/source/he/helpcontent2/source/text/swriter/01.po
index 1140bb76064..85e9be61c9c 100644
--- a/source/he/helpcontent2/source/text/swriter/01.po
+++ b/source/he/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-10-21 20:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "Navigator"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr ""
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/he/helpcontent2/source/text/swriter/guide.po b/source/he/helpcontent2/source/text/swriter/guide.po
index 1884cc08db7..4a7582eb22e 100644
--- a/source/he/helpcontent2/source/text/swriter/guide.po
+++ b/source/he/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-12 13:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7792,49 +7792,49 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr ""
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
msgstr ""
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
msgstr ""
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
msgstr ""
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
+msgid "Positioning indents"
msgstr ""
#. qUxKq
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr ""
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr ""
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr ""
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr ""
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,14 +10294,14 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "Turning Number Recognition On or Off in Tables"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
-msgstr "\\<bookmark_value\\>number recognition in text tables\\</bookmark_value\\>\\<bookmark_value\\>tables; number recognition\\</bookmark_value\\>\\<bookmark_value\\>dates;formatting automatically in tables\\</bookmark_value\\>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgstr ""
#. aahB7
#: number_date_conv.xhp
@@ -10267,14 +10330,23 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Do one of the following:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "Right-click in a table cell and choose \\<emph\\>Number recognition\\</emph\\>. When this feature is on, a check mark is displayed in front of the \\<emph\\>Number recognition \\</emph\\>command."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
+msgstr ""
#. hDANA
#: number_date_conv.xhp
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr ""
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12211,6 +12292,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12256,50 +12355,50 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
+msgid "Return to <emph>Print</emph> dialog."
msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
-msgstr "For a printer that automatically prints on both sides of a page, specify to print right pages and left pages."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
+msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Click \\<emph\\>OK\\</emph\\>."
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
-msgstr "If %PRODUCTNAME prints the pages in the wrong order, open the \\<emph\\>Printer Options\\</emph\\> dialog, select \\<emph\\>Reversed\\</emph\\>, and then print the document again."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
+msgstr ""
#. FgeK4
#: print_preview.xhp
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr ""
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,32 +12724,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr ""
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
+msgid "Choose <menuitem>File - Print</menuitem>"
msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Do one of the following:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/he/sc/messages.po b/source/he/sc/messages.po
index 47f515d4bd1..82266cd285c 100644
--- a/source/he/sc/messages.po
+++ b/source/he/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-03-25 14:16+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/he/>\n"
@@ -29316,38 +29316,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr ""
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr ""
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr ""
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr ""
diff --git a/source/he/sfx2/messages.po b/source/he/sfx2/messages.po
index 1623e69540e..83af65584f5 100644
--- a/source/he/sfx2/messages.po
+++ b/source/he/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-10-02 06:35+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/he/>\n"
@@ -1655,286 +1655,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "סגירת סרגל"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "עיגון"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "ניתוק"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "אפשרויות נוספות"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "סגירת מעגן סרגל הצד"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "הגדרות סרגל הצד"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "התאמה אישית"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "שחזור בררת מחדל"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "סגירת סרגל צד"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "אליזרין"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "כוורת"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "עקומה כחולה"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "שרטוט תכנית"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "כחול בהיר"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "אדום קלסי"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "דנ״א"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "מיקוד"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "ציפור חורש"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "השראה"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "אורות"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "ירוק בוהק"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "מטרופוליס"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "כחול של חצות"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "איור של טבע"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "עיפרון"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "פסנתר"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "תיק מסמכים"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "התקדמות"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "שקיעה"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "מיושן"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "חי"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "קורות חיים"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "רזומה"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "בררת מחדל"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "מודרני"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "מכתב עסקי מודרני עם כתב בלתי מעוטר"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "מכתב עסקי מודרני עם כתב מעוטר"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "כרטיס ביקור עם לוגו"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "פשוט"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "ניהול תהליכים עסקיים"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "הסרה"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "לנקות הכול"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "אורך ססמה"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "הססמה שמילאת גורמת לבעיות בעבודה הדדית. נא למלא ססמה שאורכה אינו עולה על 52 תווים או מעל 55 תווים."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "לחיצה לפתיחת הקישור: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(בשימוש על ידי: %STYLELIST)"
@@ -4173,6 +4137,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "מחיקה…"
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/he/starmath/messages.po b/source/he/starmath/messages.po
index 937eeb4c34e..92b5030f7ca 100644
--- a/source/he/starmath/messages.po
+++ b/source/he/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-05-08 13:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -425,2074 +425,2207 @@ msgid "or"
msgstr "or"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "סימן +‏"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "סימן -‏"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "סימן +-‏"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "סימן -+‏"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "NOT בוליאני"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "חיבור +‏"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "חיסור"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "כפל (נקודה)‏"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "כפל (איקס)‏"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "כפל (כוכבית)‏"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "חלוקה (קו נטוי)‏"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "חלוקה (÷)‏"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "חלוקה (שבר)‏"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "לוכסן עם עיגול"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "נקודה עם עיגול"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "מינוס עם עיגול"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "פלוס עם עיגול"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "מכפלה טנזורית"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "‏‪AND‬‏ בוליאני"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "OR בוליאני"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "שווה"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "לא שווה"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "פחות מ"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "גדול מ"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "פחות מ- או שווה ל-"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "גדול מ- או שווה ל-"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "פחות מ- או שווה ל-"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "גדול מ- או שווה ל-"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "קטן בהרבה מ־"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "גדול בהרבה מ־"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "מוגדר בתור"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "חופף ל"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "שווה בקירוב"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "דומה ל"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "דומה או שווה"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "יחסי ל"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "ניצב ל"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "מקביל ל"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "בכיוון"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "כלול ב"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "אינו כלול ב"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "הבעלים של"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "איחוד"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "חיתוך"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "הפרש"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "תת קבוצה"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "תת קבוצה או שווה ל"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "קבוצת על"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "קבוצת על או שווה ל"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "לא תת קבוצה"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "לא תת קבוצה או שווה"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "לא קבוצת על"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "לא קבוצת על או שווה"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "ערך מוחלט"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "עצרת"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "שורש רבועי"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "שורש מעריך N‏"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "פונקציה מעריכית"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "פונקציה מעריכית"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "לוגריתם טבעי"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "לוגריתם"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "סינוס"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "קוסינוס"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "טנגנט"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "קוטנגנט"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "ארק-סינוס"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "ארק-קוסינוס"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "ארק-טנגנט"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "ארקוטנגנט"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "סינוס היפרבולי"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "קוסינוס היפרבולי"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "טנגנט היפרבולי"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "קוטנגנט היפרבולי"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "שטח סינוס היפרבולי"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "שטח קוסינוס היפרבולי"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "שטח טנגנט היפרבולי"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "שטח קוטנגנט היפרבולי"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "סכום"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
#, fuzzy
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "כתב תחתי למטה"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
#, fuzzy
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "כתב עילי עליון"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr ""
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "מכפלה"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
#, fuzzy
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "כתב תחתי למטה"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr ""
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr ""
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "מכפלת משנה"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
#, fuzzy
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "כתב תחתי למטה"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr ""
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr ""
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "פונקציית גבול"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
#, fuzzy
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "כתב תחתי למטה"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
#, fuzzy
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "כתב עילי עליון"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr ""
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "קיים"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "לא קיים"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
#, fuzzy
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "לכל"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "אינטגרל"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "אינטגרל כפול"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "אינטגרל משולש"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "אינטגרל עקומה"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "אינטגרל עקומה כפול"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "אינטגרל עקומה משולש"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "גרש"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "קו מעל"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "קערית"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "גגון הפוך"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "עיגול"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "נקודה"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "נקודה כפולה"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "נקודה משולשת"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "גרש ימני"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "גגון"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "טילדה"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "חץ וקטורי"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "קו תחתון"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "קו מעל"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "קו חוצה"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "שקוף"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "גופן מודגש"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "גופן נטוי"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "שינוי גודל"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "שינוי גופן"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "הצבע שחור"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "הצבע כחול"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "הצבע ירוק"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "הצבע אדום"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "הצבע אפור"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "הצבע ליים"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "הצבע חום כהה"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "הצבע כחול כהה"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "הצבע ירוק זית"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "הצבע סגול"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "הצבע כסף"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "הצבע צהבהב"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "הצבע צהוב"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "סוגרי קבוצה"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "סוגריים עגולים"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "סוגריים מרובעים"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "סוגריים מרובעים כפולים"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "סוגריים צומדים"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "סוגריים מזווים"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "רצפה"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "קווים בודדים"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "קווים כפולים"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "סוגרי אופרטור"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "סוגריים עגולים מותאמי גודל"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "סוגריים מרובעים מותאמי גודל"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "סוגריים מרובעים כפולים מותאמי גודל"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "סוגריים צומדים מותאמי גודל"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "סוגריים מזווים מותאמי גודל"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "קווים בודדים מותאמי גודל"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "קווים כפולים מותאמי גודל"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "סוגרי אופרטור מותאמי גודל"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "סוגריים צומדים עליונים מותאמי גודל"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "סוגריים צומדים תחתונים מותאמי גודל"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "כתב תחתי ימין"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "חזקה"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "כתב תחתי שמאל"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "כתב עילי שמאל"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "כתב תחתי למטה"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "כתב עילי עליון"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "מרווח קטן"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "ריק"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "שורה חדשה"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "ערמה אנכית (2 רכיבים)‏"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "ערמה אנכית"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "מחסנית מטריצית"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "יישור לשמאל"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "יישור למרכז"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "יישור לימין"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "אלף"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "קבוצה ריקה"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "החלק האמיתי"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "החלק הדמיוני"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "אינסוף"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "חלקי"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "משולש הפוך (נאבלה)‏"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "פונקציית ויירשטראס ‪P"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "נקודות אמצעיות"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "נקודות עד למעלה"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
#, fuzzy
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "נקודות עד למטה"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "נקודות תחתונות"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "נקודות אנכיות"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "שירשור"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
#, fuzzy
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "חלוקה (קו נטוי)‏"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "מתחלק"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "לא מתחלק"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "חץ כפול שמאלה"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "חץ כפול שמאלה וימינה"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "חץ כפול ימינה"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "קבוצת המספרים הטבעים"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "קבוצת המספרים השלמים"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "קבוצת המספרים הרציונליים"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "קבוצת המספרים הריאליים"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "קבוצת המספרים המרוכבים"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "גגון גדול"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "טילדה גדולה"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "חץ וקטורי גדול"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h מוט"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "למבדה מוט"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "חץ שמאלי"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "חץ ימני"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "חץ למעלה"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "חץ למטה"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "אין רווח"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "מקדים"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "קודם או שווה ל"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "קודם או שקול ל"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "עוקב"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "עוקב או שווה ל"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "עוקב או שקול ל"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "לא מקדים"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "לא עוקב"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "אופרטורים אונריים/בינריים"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "יחסים"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "אופרציות על קבוצות"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "פונקציות"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "אופרטורים"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "מאפיינים"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "סוגריים"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "צורות עיצוב"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "אחרים"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "דוגמאות"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "רגיל"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "נטוי"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "מודגש"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "שחור"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "כחול"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "ירוק"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "אדום"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "אפור"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "ליים"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "חום כהה"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "כחול כהה"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "ירוק זית"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "סגול"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "כסף"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "צהבהב"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "צהוב"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "הסתרה"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "גודל"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "גופן"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "שמאל"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "מרכז"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "ימין"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "פקודות"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "נוסחה"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "שמירת מסמך...‏"
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "נוסחה %PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "תו לא צפוי"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "צפוייה '{'‏"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "צפוייה '}'‏"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "צפוייה '('‏"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "צפוייה ')'‏"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "צפוייה '#'‏"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "נדרש צבע"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "צפוי 'RIGHT'‏"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "‏%PRODUCTNAME‏ %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "תכנים"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~כותרת"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "טקסט ה~נוסחה"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "~גבולות"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "גודל"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "גודל מ~קורי"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "התאמה לגודל ~עמוד"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "מ~תיחה"
diff --git a/source/he/svtools/messages.po b/source/he/svtools/messages.po
index 29f28fade6f..63fea2bb20c 100644
--- a/source/he/svtools/messages.po
+++ b/source/he/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-29 14:36+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/he/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "ביטול: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "ח~זרה על פעולה: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "טקסט ללא צורה מוגדרת"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "נתוני מצב מקשר פנימי Svx‏"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "סימניית נטסקייפ"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "צורת שרת סטאר"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "צורת עצם סטאר"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "יישומון"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "עצם תוסף"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "עצם ‏‪StarWriter 3.0‏"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "עצם ‏‪StarWriter 4.0‏"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "עצם ‏‪StarWriter 5.0‏"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "עצם ‏‪StarWriter/Web 4.0‏"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "עצם ‏‪StarWriter/Web 5.0‏"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "עצם ‏‪StarWriter/Master 4.0‏"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "עצם ‏‪StarWriter/Master 5.0‏"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "עצם ‏‪StarDraw‏"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "עצם ‏‪StarDraw 4.0‏"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "עצם ‏‪StarImpress 5.0‏"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "עצם ‏‪StarDraw 5.0‏"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "עצם ‏‪StarCalc‏"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "עצם ‏‪StarCalc 4.0‏"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "עצם ‏‪StarCalc 5.0‏"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "עצם‫ ‏‪StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "עצם ‏‪StarChart 4.0‏"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "עצם ‏‪StarChart 5.0‏"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "עצם ‏‪StarImage‏"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "עצם ‏‪StarImage 4.0‏"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "עצם ‏‪StarImage 5.0‏"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "עצם ‏‪StarMath‏"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "עצם ‏‪StarMath 4.0‏"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "עצם ‏‪StarMath 5.0‏"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "עצם ‏‪StarObject Paint‏"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "עצם Microsoft Word‏"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "עצם ‏‪‏‪StarFrameSet‬‏‏"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "עצם מסמך ‏‪Office‬‏‏"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "פריטי מסמך ‏‪Notes‬‏‏"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "מסמך Sfx‏"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "עצם ‏‪StarChart 5.0‏"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "עצם גרפי"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "עצם של OpenOffice.org 1.0 Writer"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "עצם של OpenOffice.org 1.0 Draw"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "עצם OpenOffice.org 1.0 Chart"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "עצם של OpenOffice.org 1.0 Math"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "קובץ מטה ‏‪Windows‬‏‏"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "עצם מקור נתונים"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "טבלת מקור נתונים"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "שאילתת SQL‏"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "תיבת דו־שיח של OpenOffice.org 1.0"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "קישור"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "פורמט ‏‪HTML‬‏ ללא הערות"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "לא ניתן להכניס עצם %.‏"
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "לא ניתן להכניס עצם מקובץ %.‏"
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "עצמים נוספים"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "מקור בלתי ידוע"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "בתים"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "ק״ב"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "מ״ב"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "ג״ב"
@@ -501,1235 +501,1235 @@ msgstr "ג״ב"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "אותיות ומספרים"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "כתב רגיל"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "ערכת תווים"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "מילון"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "שכתוב אותיות סיניות"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "משיכה"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "שורש"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "יוניקוד"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "סינית פונטית"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "ספר טלפונים"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "מיון פונטי - מספרים לפני אותיות"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "מיון פונטי - מספרים אחרי אותיות"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "אותיות ומספרים"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "מילון"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "שכתוב אותיות סיניות"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "שורש"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "משיכה"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "סינית פונטית"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "מיון פונטי (אותיות ומספרים תחילה, מקובצים לפי הברות)‏"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "מיון פונטי (אותיות ומספרים תחילה, מקובצים לפי עיצורים)‏"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "מיון פונטי (אותיות ומספרים בסוף, מקובצים לפי הברות)‏"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "מיון פונטי (אותיות ומספרים בסוף, מקובצים לפי הברות)‏"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "קל"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "נטוי קל"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "רגיל"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "נטוי"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "מודגש"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "נטוי מודגש"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "שחור"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "נטוי שחור"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "ספר"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "מרוכז"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "מודגש למחצה"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "התכנית תשתמש באותו גופן למסך ולמדפסת."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "זהו גופן מדפסת. דמותו על המסך עשויה להיות שונה.‏"
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "סגנון גופן זה יוצג על ידי הדמייה או על ידי גופן בעל סגנון דומה.‏"
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "גופן זה לא מותקן. הגופן הקרוב ביותר שמותקן יוצג במקומו.‏"
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "העברה להתחלה"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "הזזה שמאלה"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "הזזה ימינה"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "העברה לסוף"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "הוספה"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "סרגל אופקי"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "סרגל אנכי"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "סף סיבית 1‏"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "טשטוש של סיבית 1‏"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "גווני אפור 4 סיביות"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "צבע 4 סיביות"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "גווני אפור 8 סיביות"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "צבע 8 סיביות"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "צבע אמתי 24 סיביות"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "התמונה דורשת לפחות %1 ק״ב של זיכרון."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "התמונה זקוקה בערך ל־%1 ק״ב של זיכרון, גודל הקובץ הוא %2 ק״ב."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "גודל הקובץ הוא %1 ק״ב."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "מארח"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "פתחה"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "מוכן"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "מופסק"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "עומד למחיקה"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "תפוס"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "מאתחל"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "ממתין"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "מתחמם"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "עיבוד"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "מדפיס"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "לא מקוון"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "שגיאה"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "שרת לא מוכר"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "תקלת נייר"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "אין מספיק נייר"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "הזנת נייר ידנית"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "בעיית נייר"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "קלט-פלט פעיל"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "מגש הפלט מלא"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "מפלס הטונר נמוך"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "אין טונר"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "מחיקת עמוד"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "דרושה התערבות המשתמש/ת"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "חסר זכרון"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "מכסה פתוח"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "מצב חיסכון חשמל"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "מדפסת בררת מחדל"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d מסמכי"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ללא>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "חברה"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "מחלקה"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "שם פרטי"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "שם משפחה"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "רחוב"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "מדינה"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "מיקוד"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "עיר"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "כותרת"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "מיקום"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "פרטי כתובת"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "ראשי תיבות"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "ברכת סיום"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "טלפון בבית"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "טלפון בעבודה"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "כתובת אינטרנט (‏‪URL‬‏)‏"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "הערה"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "משתמש 1‏"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "משתמש 2‏"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "משתמש 3‏"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "משתמש 4‏"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "זהות"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "מחוז"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "טלפון במשרד"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "איתורית"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "טל׳ נייד"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "טלפון אחר"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "לוח שנה"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "להזמין"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "נדרש JRE‬‏"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "נא לבחור ‏‪JRE‬‏"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "ה־‏‪JRE‬‏ פגום"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "קוד מקור"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "קובץ סימנייה"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "גרפיקה"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "קובץ תצורה"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "יישום"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "טבלת מסד נתונים"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "קובץ מערכת"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "מסמך ‏‪MS Word‬‏‏"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "קובץ עזרה"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "מסמך ‏‪HTML‬‏‏"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "קובץ ארכיון"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "קובץ מעקב"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "מסד נתונים של StarOffice"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "מסמך מאסטר StarWriter 4.0 / 5.0"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "תמונה של StarOffice"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "קובץ טקסט"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "קישור"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "תבנית של StarOffice 3.0 - 5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "מסמך ‏‪MS Excel‬‏‏"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "תבנית ‏‪MS Excel‬‏‏"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "קובץ אצווה"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "קובץ"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "תיקיה"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "מסמך טקסט"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "גיליון אלקטרוני"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "מצגת"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "ציור"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "מסמך ‏‪HTML‬‏‏"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "מסמך מאסטר"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "נוסחה"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "מסד נתונים"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "תבנית גיליון נתונים של OpenOffice.org 1.0"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "תבנית ציור של OpenOffice.org 1.0"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "תבנית מצגת של OpenOffice.org 1.0"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "תבנית מסמך טקסט של OpenOffice.org 1.0"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "כונן מקומי"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "כונן דיסק"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "כונן ‏‪CD-ROM‬‏‏"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "חיבור רשת"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "מסמך ‏‪MS PowerPoint‬‏‏"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "תבנית ‏‪MS PowerPoint‬‏‏"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "מצגת ‏‪MS PowerPoint‬‏‏"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "נוסחה של OpenOffice.org 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "תרשים של OpenOffice.org 1.0"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "ציור של OpenOffice.org 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "מצגת של OpenOffice.org 1.0"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "מצגת של OpenOffice.org 1.0"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "מסמך טקסט של OpenOffice.org 1.0"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "מסמך אב של OpenOffice.org 1.0"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "מסמך ‏‪MathML‬‏‏"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "מסד נתונים ‏‪OpenDocument‬‏‏"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "ציור ‏‪OpenDocument‬‏‏"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "נוסחה ‏‪OpenDocument‬‏‏"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "מסמך מאסטר ‏‪OpenDocument‬‏‏"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "מצגת ‏‪OpenDocument‬‏‏"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "גיליון אלקטרוני ‏‪OpenDocument‬‏‏"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "טקסט ‏‪OpenDocument‬‏‏"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "תבנית גיליון אלקטרוני ‏‪OpenDocument‬‏‏"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "תבנית ציור ‏‪OpenDocument‬‏‏"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "תבנית מצגת ‏‪OpenDocument‬‏‏"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "תבנית טקסט ‏‪OpenDocument‬‏‏"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "חבילה ‏‪%PRODUCTNAME‬‏"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/he/svx/messages.po b/source/he/svx/messages.po
index 8f82306c925..ec0e6a98c3c 100644
--- a/source/he/svx/messages.po
+++ b/source/he/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-02 06:35+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/he/>\n"
@@ -16603,12 +16603,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
-#, fuzzy
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "הערות"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/he/sw/messages.po b/source/he/sw/messages.po
index 825903d1c82..1900f26e5e0 100644
--- a/source/he/sw/messages.po
+++ b/source/he/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-10-29 14:36+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/he/>\n"
@@ -17755,88 +17755,94 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "כללי"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "_כותרת"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
#, fuzzy
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "ח_זרה על שורות הכותרת בעמודים חדשים"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "לא לפ_צל טבלה על פני מספר עמודים"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
#, fuzzy
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "שורות _כותרת:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "אפשרויות"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20455,295 +20461,295 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "כותרת עליונה"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "כותרת תחתונה"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
#, fuzzy
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "עוגן <-> טקסט"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
#, fuzzy
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "קידום רמה"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
#, fuzzy
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "הורדת רמה"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "מצב גרירה"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "מסמך"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "חלון פעיל"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "עריכה"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "עדכון"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
#, fuzzy
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "הוספה"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
#, fuzzy
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "הזזה למעלה"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
#, fuzzy
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "הזזה למטה"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/hi/helpcontent2/source/text/scalc/01.po b/source/hi/helpcontent2/source/text/scalc/01.po
index 5879ada5497..cbd6fe4575e 100644
--- a/source/hi/helpcontent2/source/text/scalc/01.po
+++ b/source/hi/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2018-11-12 13:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr ""
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/hi/helpcontent2/source/text/sdraw.po b/source/hi/helpcontent2/source/text/sdraw.po
index ac96d138c66..13cecef14b9 100644
--- a/source/hi/helpcontent2/source/text/sdraw.po
+++ b/source/hi/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-09-26 12:22+0000\n"
"Last-Translator: shubhamgoyal <22shubh22@gmail.com>\n"
"Language-Team: Hindi <https://vm137.documentfoundation.org/projects/libo_help-master/textsdraw/hi/>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/hi/helpcontent2/source/text/shared/00.po b/source/hi/helpcontent2/source/text/shared/00.po
index b26be9d2b46..a1b0c591945 100644
--- a/source/hi/helpcontent2/source/text/shared/00.po
+++ b/source/hi/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr ""
-#. ygQrE
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
msgstr ""
-#. d59SH
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"hd_id3147315\n"
-"help.text"
-msgid "Register-true"
-msgstr "रजिस्टर-ट्रू"
-
-#. ECfHB
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/hi/helpcontent2/source/text/shared/01.po b/source/hi/helpcontent2/source/text/shared/01.po
index a673f7d66eb..376dbed368f 100644
--- a/source/hi/helpcontent2/source/text/shared/01.po
+++ b/source/hi/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr ""
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr ""
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr ""
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,13 +9376,13 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr "मास्टर दृश्य तथा सामान्य दृश्य के बीच स्विच करता है."
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
msgstr ""
#. 3Lq2G
@@ -9430,13 +9412,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr ""
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
msgstr ""
#. nRB3E
@@ -9466,13 +9448,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr ""
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
msgstr ""
#. F4J5u
@@ -9601,13 +9583,13 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr ""
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
msgstr ""
#. ijR7M
@@ -9709,13 +9691,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr ""
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
msgstr ""
#. ADEyJ
@@ -9745,13 +9727,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
msgstr ""
#. GqEUL
@@ -9781,13 +9763,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
msgstr ""
#. DLEGF
diff --git a/source/hi/helpcontent2/source/text/shared/02.po b/source/hi/helpcontent2/source/text/shared/02.po
index 3538d229b4b..14def325f37 100644
--- a/source/hi/helpcontent2/source/text/shared/02.po
+++ b/source/hi/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 13:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11032,13 +11032,13 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
msgstr ""
#. DCXbA
@@ -11059,13 +11059,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
msgstr ""
#. 9iqpg
@@ -11104,13 +11104,13 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr ""
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
msgstr ""
#. FBggx
@@ -11131,13 +11131,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
msgstr ""
#. bAyat
diff --git a/source/hi/helpcontent2/source/text/shared/optionen.po b/source/hi/helpcontent2/source/text/shared/optionen.po
index 33e2e87035a..a06428a9a57 100644
--- a/source/hi/helpcontent2/source/text/shared/optionen.po
+++ b/source/hi/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11860,31 +11860,31 @@ msgctxt ""
msgid "Snap"
msgstr "स्नेप"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "स्नेप लकीर में"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
msgstr ""
#. eUCCJ
diff --git a/source/hi/helpcontent2/source/text/simpress/02.po b/source/hi/helpcontent2/source/text/simpress/02.po
index e07d055245c..0bd3ddd297b 100644
--- a/source/hi/helpcontent2/source/text/simpress/02.po
+++ b/source/hi/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2017-10-04 11:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5695,40 +5695,40 @@ msgctxt ""
msgid "Exit all groups"
msgstr "सभी समूहों से बाहर"
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Snap to Snap Guides"
msgstr ""
#. oXWsX
diff --git a/source/hi/helpcontent2/source/text/swriter.po b/source/hi/helpcontent2/source/text/swriter.po
index f4a2b194b20..6f8440fd2dc 100644
--- a/source/hi/helpcontent2/source/text/swriter.po
+++ b/source/hi/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-09-26 12:22+0000\n"
"Last-Translator: shubhamgoyal <22shubh22@gmail.com>\n"
"Language-Team: Hindi <https://vm137.documentfoundation.org/projects/libo_help-master/textswriter/hi/>\n"
@@ -2212,13 +2212,13 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "दाएँ-से-बाएँ"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
msgstr ""
#. Xg9vt
@@ -2239,13 +2239,13 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "दाएँ-से-बाएँ"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
msgstr ""
#. TMwGp
diff --git a/source/hi/helpcontent2/source/text/swriter/01.po b/source/hi/helpcontent2/source/text/swriter/01.po
index cb80254349a..c7fe87d1d05 100644
--- a/source/hi/helpcontent2/source/text/swriter/01.po
+++ b/source/hi/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-10-21 20:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "नेविगेटर"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr ""
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/hi/helpcontent2/source/text/swriter/guide.po b/source/hi/helpcontent2/source/text/swriter/guide.po
index 476cc8ef68d..a7962d06ea4 100644
--- a/source/hi/helpcontent2/source/text/swriter/guide.po
+++ b/source/hi/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-11-12 13:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7792,49 +7792,49 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr ""
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
msgstr ""
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
msgstr ""
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
msgstr ""
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
+msgid "Positioning indents"
msgstr ""
#. qUxKq
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr ""
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr ""
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr ""
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr ""
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,13 +10294,13 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "तालिकाओं में संख्या पहचान चालू या बन्द करना"
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
msgstr ""
#. aahB7
@@ -10267,13 +10330,22 @@ msgctxt ""
msgid "Do one of the following:"
msgstr ""
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
msgstr ""
#. hDANA
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr ""
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12211,6 +12292,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr ""
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12256,49 +12355,49 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr ""
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
+msgid "Return to <emph>Print</emph> dialog."
msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
+msgid "Click <emph>Print</emph>."
msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
msgstr ""
#. FgeK4
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr ""
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,31 +12724,31 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr ""
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
+msgid "Choose <menuitem>File - Print</menuitem>"
msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
msgstr ""
#. G8yiU
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/hi/sc/messages.po b/source/hi/sc/messages.po
index 0d26acabb8d..749c0234aca 100644
--- a/source/hi/sc/messages.po
+++ b/source/hi/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29262,39 +29262,45 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
#, fuzzy
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "दस्तावेज़ प्रारूपण के लिए मुद्रक मैट्रिक्स का प्रयोग करें"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr ""
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr ""
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr ""
diff --git a/source/hi/sfx2/messages.po b/source/hi/sfx2/messages.po
index 2b3fe8b3b9c..36c3560bf03 100644
--- a/source/hi/sfx2/messages.po
+++ b/source/hi/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2018-10-21 19:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1642,288 +1642,251 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "डॉक"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "अनडॉक"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "छाँटने का विकल्प"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr ""
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-#, fuzzy
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "मनपसंद संजीवन"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr ""
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr ""
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "हटाएँ"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -4248,6 +4211,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "मिटाएँ"
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/hi/starmath/messages.po b/source/hi/starmath/messages.po
index 91919bf62ff..e5daa50cf87 100644
--- a/source/hi/starmath/messages.po
+++ b/source/hi/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+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"
@@ -423,2092 +423,2225 @@ msgid "or"
msgstr "या"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+ चिह्न"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "- चिह्न"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+- चिह्न"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "-+ चिह्न"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "बूलियन NOT"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "जोड़ +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "घटाव -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
#, fuzzy
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "गुणा (Dot )"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "गुणा (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "गुणा (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "विभाजन (स्लैश)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "विभाजन (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "विभाजन (भिन्न)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "बूलियन AND"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "बूलियन OR"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "के समान है"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "असमान है"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "से कम है"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "से अधिक है"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "से कम या समान है"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "से ज्यादा या समान है"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "से कम या समान है"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "से ज्यादा या समान है"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr ""
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
#, fuzzy
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "से अधिक है"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "के अनुरूप है"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "लगभग समान"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "के सदृश है"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "के सदृश या समान है"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "के आनुपातिक है"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "इसके समकोणाकार है"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "इसके समानान्तर है"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "करीब"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "में है"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "में नहीं है"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "स्वामित्व"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "यूनियन"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "प्रतिच्छेद"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "भिन्नता"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "उपसमुच्चय"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "उपसमुच्चय या समान है"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "अधिसमुच्चय"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "अधिसमुच्चय या समान"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "उपसमुच्चय नहीं"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "उपसमुच्चय या समान नहीं"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "अधिसमुच्चय नहीं"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "अधिसमुच्चय या समान नहीं"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "निरपेक्ष मूल्य"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "फैक्टोरियल"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "वर्ग मूल"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N-वां वर्गमूल"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "घातांकी फलन"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "घातांकी फलन"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "प्राकृतिक लघुगणक"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "लघुगणक"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "साइन"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "कोसाइन"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "टॉन्जेन्ट"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "कोटान्जेन्ट"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "आर्कसाइन"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "आर्ककोसाइन"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "आर्कटान्जेन्ट"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "आर्ककोटान्जेन्ट"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "अतिपरवलयिक साइन"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "अतिपरवलयिक कोसाइन"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "अतिपरवलयिक टैन्जेन्ट"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "अतिपरवलयिक कोटैन्जेन्ट"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "क्षेत्र अतिपरवलयिक साइन"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "क्षेत्र अतिपरवलयिक कोसाइन"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "क्षेत्र अतिपरवलयिक टैन्जेन्ट"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "क्षेत्र अतिपरवलयिक कोटान्जेन्ट"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "जोड़"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
#, fuzzy
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "उपस्क्रिप्ट नीचे"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
#, fuzzy
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "अधिस्क्रिप्ट ऊपर"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr ""
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "उत्पाद"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
#, fuzzy
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "उपस्क्रिप्ट नीचे"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr ""
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr ""
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "सहउत्पाद"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
#, fuzzy
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "उपस्क्रिप्ट नीचे"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr ""
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr ""
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "लाइमस"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
#, fuzzy
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "उपस्क्रिप्ट नीचे"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
#, fuzzy
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "अधिस्क्रिप्ट ऊपर"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr ""
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "वहां रहता है"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "वहां नहीं रहता है"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
#, fuzzy
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "सब के लिए"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "समग्र"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "द्विगुणित समग्र"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "तिगुना समग्र"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "समग्र वक्र"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "द्विगुणित समग्र वक्र"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "तिगुना वक्र समग्र"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "तेज उच्चारण"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "ऊपरी रेखा"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "ब्रेभ"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "उल्टा सरकमफ्लेक्स"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "वृत्त"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "बिन्दु"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "द्विगुणित डॉट"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "तिगुना बिंदु"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "गंभीर उच्चारण"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "सर्कमफ्लेक्स"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "टिल्डे"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "सदिश तीर"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "नीचे की रेखा"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "रेखा ऊपर"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "रेखा अंत तक"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "पारदर्शक"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "मोटा फ़ॉन्ट"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "तिरक्षा फ़ॉन्ट"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "पुनः आकार दें"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "फ़ॉन्ट बदलें"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr ""
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr ""
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr ""
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr ""
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
#, fuzzy
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "रंग चयनक"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
#, fuzzy
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "रंग टैब"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr ""
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "समूह कोष्ठक"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "गोलाकार कोष्ठक"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "वर्ग कोष्ठक"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "द्विगुणित वर्ग कोष्ठक"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "धनुकोष्ठक"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "कोणीय कोष्ठक"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr ""
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "अकेली रेखाएं"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "द्विगुणित रेखाएं"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "ऑपरेटर कोष्ठक"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "गोलाकार कोष्ठक (नापने योग्य)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "वर्ग कोष्ठक (नापने योग्य)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "द्विगुणित वर्ग कोष्ठक (नापने योग्य)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "कोष्ठक (नापने योग्य)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "कोणीय कोष्ठक (नापने योग्य)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "अकेली रेखा (नापने योग्य)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "द्विगुणित रेखाएं (नापने योग्य)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "ऑपरेटर कोष्ठक (नापने योग्य)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "कोष्ठक ऊपर (नापने योग्य)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "कोष्ठक नीचे (नापने योग्य)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "उपस्क्रिप्ट दाहिना"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "घात"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "उपस्क्रिप्ट बायां"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "अधिस्क्रिप्ट बायां"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "उपस्क्रिप्ट नीचे"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "अधिस्क्रिप्ट ऊपर"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "कम अंतर"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
#, fuzzy
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "खाली"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "नयी रेखा"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "लंबवत राशीकृत (2 तत्व)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "लंबवत राशीकृत"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "मैट्रिक्स स्टॉक"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "बायां संरेखण"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "मध्य संरेखण"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "दाहिना संरेखण"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "अलेफ"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "रिक्त समुच्चय"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "वास्तविक हिस्सा"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "काल्पनिक भाग"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
#, fuzzy
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "अनन्त"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "आंशिक"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "नाब्ला"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "बीयरस्ट्रास p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "बिन्दु मध्य में"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "ऊपर में बिन्दु"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
#, fuzzy
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "बिन्दु नीचे में"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "बिन्दु नीचे में"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "लंबवत बिन्दु"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "श्रृंखबाबद्ध करें"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
#, fuzzy
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "विभाजन (स्लैश)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "भाग देता है"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "विभाजन नहीं करता है"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "द्विगुणित तीर बायां"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "द्विगुणित तीर बायां और दाहिना"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "द्विगुणित तीर दाहिना"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "प्राकृतिक संख्या समुच्चय"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "पूर्णांक समुच्चय"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "तार्किक संख्या समुच्चय"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "वास्तविक संख्या समुच्चय"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "जटिल संख्या समुच्चय"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "बड़ा सर्कमफ्लेक्स"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "बड़ा टिल्ड"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "बड़ा सदिश तीर"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "क्षैतिज पट्टी"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "लांब्डा पट्टी"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "बायां तीर"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "दाहिनी तीर रेखा"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "ऊपर का तीर"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "नीचे की तीर"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr ""
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "पिछला"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "पिछला या इसके समान"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "पिछला या इसके समान"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "अगला"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "अगला या इसके समान"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "अगला या इसके समान"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "पिछला नहीं"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "अगला नहीं"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "यूनारि/द्विपदीय ऑपरेटर"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "सम्बन्ध"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "ऑपरेशन सेट करें"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "प्रकार्य"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "ऑपरेटर"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "गुण"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "कोष्ठक"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "प्रारूप"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "अन्य"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
#, fuzzy
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "उदाहरण"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "मानक"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "तिरछा"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "मोटा"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "काला"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "नीला"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "हरा"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "लाल"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "धूसर"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "समय"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "मरून"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "नेवी"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "जैतून"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "बैंगनी"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "silver"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "हरा-नीला"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "पीला"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "छिपाएँ"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "साइन"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "फ़ॉन्ट"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "बायाँ"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "बीच में"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "दाहिना"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "कमांड"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "सूत्र"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "दस्तावेज़ सहेज रहा है..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION सूत्र"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "त्रुटि :"
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "अप्रत्याशित वर्ण"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' प्रत्याशित"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' प्रत्याशित"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' प्रत्याशित"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' प्रत्याशित"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' प्रत्याशित"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "रंग जरूरी"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' प्रत्याशित"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME गणना"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "सामग्री"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "शीर्षक"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "सूत्र पाठ"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "किनारा"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "आकार"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "मूल आकार"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "पृष्ठ में सटीक"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
diff --git a/source/hi/svtools/messages.po b/source/hi/svtools/messages.po
index 08398877722..34469689953 100644
--- a/source/hi/svtools/messages.po
+++ b/source/hi/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "किया वापस लें: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr ""
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "दुहराएँ (~R): "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "असंरूपित पाठ"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "भीतरी Svx कड़ी से वस्तुस्थिति की सूचना"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "नेटस्केप पुस्तचिह्न"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "स्टार सर्वर प्रारूप"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "स्टार वस्तु प्रारूप"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "आप्लेट् वस्तु"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "प्लग-इन वस्तु"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 वस्तु"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 वस्तु"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 वस्तु"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 वस्तु"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 वस्तु"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 वस्तु"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 वस्तु"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw वस्तु"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 वस्तु"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 वस्तु"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 वस्तु"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc वस्तु"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 वस्तु"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 वस्तु"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart वस्तु"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 वस्तु"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 वस्तु"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage वस्तु"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 वस्तु"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 वस्तु"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath वस्तु"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 वस्तु"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 वस्तु"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject रंग वस्तु"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "सिल्क"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word वस्तु"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet वस्तु"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office document वस्तु"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "टिप्पणी दस्तावेज़ सूचना"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx दस्तावेज़"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 वस्तु"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "आलेखी वस्तु"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows मेटाफ़ाइल"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "डाटा स्रोत वस्तु"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "डाटा स्रोत सारणी"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL प्रश्न"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "लिंक "
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML प्रारूप बिना टिप्पणी के"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "वस्तु % को जोड़ नहीं सकते हैं."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "फ़ाइल % से वस्तु को जोड़ नहीं सकते है."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "और अधिक वस्तु"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "अज्ञात स्रोत"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "बाइट्स"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "कि.बा."
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "मे.बा."
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "गी.बा."
@@ -501,1241 +501,1241 @@ msgstr "गी.बा."
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "वर्णांकित"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "सामान्य"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "वर्ण समूह"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "शब्दकोश"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "पिनयिन"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "स्ट्रोक"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "रैडिकल"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "यूनिकोड"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "झुइन"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "फोन बुक"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "ध्वन्यात्मक (वर्णांकित पहले)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "ध्वन्यात्मक (वर्णांकित अंत में)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "वर्णांकित"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "शब्दकोश"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "पिनयिन"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "रैडिकल"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "स्ट्रोक"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "झुइन"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "ध्वन्यात्मक (वर्णांकित पहले, सिलेबल द्वारा समूहीकृत)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "ध्वन्यात्मक (वर्णांकित पहले, व्यंजन द्वारा समूहीकृत)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "ध्वन्यात्मक (वर्णांकित अंतिम, सिलेबल द्वारा समूहीकृत)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "ध्वन्यात्मक (वर्णांकित अंतिम, व्यंजन द्वारा समूहीकृत)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "हल्का"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "हल्का तिरछा"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "नियमित"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "तिरछा"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "मोटा"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "मोटा तिरछा"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "काला"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "काला तिरछा"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "पुस्तक"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "सघन"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "आधा मोटा"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "समान फ़ॉन्ट आपके मुद्रक और आपके स्क्रीन दोनों पर प्रयोग किया जायेगा."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "यह मुद्रक फ़ॉन्ट है . परदे में चित्र भिन्न प्रकार का हो सकता है."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "यह फ़ॉन्ट शैली सिमुलेट किया जायेगा या सर्वाधिक मेल शैली प्रयोग किया जायेगा."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "यह फ़ॉन्ट संस्थापित नहीं किया जा रहा है. सर्वाधिक नजदीकी फ़ॉन्ट प्रयोग किया जायेगा."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "घर में खिसकाएँ"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "बाएँ जाएँ"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "दाहिने जाएँ"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "अंत में जाएँ"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "जोड़ें"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "क्षैतिज मापक (_z)"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "लंबवत रूलर"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 बिट थ्रेशहोल्ड"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 बिट डाइथर्ड"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 बिट धूसर"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 बिट रंग"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 बिट धूसर"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 बिट रंग"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 बिट वास्तविक रंग"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "यह तस्वीर के लिए करीब %1 KB स्मृति चाहिए."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "यह तस्वीर के लिए करीब %1 KB स्मृति चाहिए, फ़ाइल आकार %2 KB है."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "फ़ाइल आकार %1 KB है."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "लागत"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "छाँटे"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "तैयार"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "ठहरें"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "स्थगित विलोपन"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "व्यस्त"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "आरंभीकरण"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "प्रतीक्षा"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "तैयार कर रहा है"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "प्रक्रिया"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "छपाई कर रहा है"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "ऑफ़लाइन"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "त्रुटि"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "अज्ञात सर्वर"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "कागज़ ज़ाम"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "अपर्याप्त कागज़"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "दस्ती फ़ीड"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "कागज की समस्या"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O सक्रिय"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "आउटपुट बिन भरा है"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "टोनर धीमा"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "टोनर नहीं"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "पृष्ट मिटाएं"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "उपयोक्ता हस्तक्षेप जरूरी"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "अपर्याप्त मेमरी"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "खुला कवर"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "पॉवर सहेजने का मोड"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "तयशुदा मुद्रक"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d दस्तावेज़"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<none>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "कंपनी"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "विभाग"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "पहला नाम"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "अंतिम नाम"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "सड़क"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "देश"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "ZIP Code"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "नगर"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "शीर्षक"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "स्थान"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "पता.प्रपत्र"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "आरंभिक"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "पूरक बंद"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "फोन: निवास"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "फोन: कार्यालय"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "टिप्पणी"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "उपयोक्ता 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "उपयोक्ता 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "उपयोक्ता 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "उपयोक्ता 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "राज्य"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "दूरभाष: दफ्तर"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "पेजर"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "मोबाइल"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "दूरभाष: अन्य"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "कैलेंडर"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "अमंत्रित करें"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE जरूरत"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE चुनें"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE खराब है"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "स्रोत कोड"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "पुस्तचिह्न फ़ाइल"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "आरेखी"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "विन्यास फ़ाइल"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "अनुप्रयोग"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "डेटाबेस सारणी"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "तंत्र फ़ाइल"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word दस्तावेज़ "
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "सहायता फ़ाइल"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML दस्तावेज़"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "अभिलेख फ़ाइल"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "लॉग फ़ाइल"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice डेटाबेस"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 मुख्य दस्तावेज़"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice चित्र"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "पाठ फ़ाइल"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "लिंक"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "स्टारऑफिस 3.0 - 5.0 नमूना ख़ाका"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel दस्तावेज़"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel नमूना"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "समुदाय फ़ाइल"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "फ़ाइल"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "फ़ोल्डर"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "पाठ दस्तावेज़"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "स्प्रेडशीट्"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "प्रस्तुति"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "रेखाचित्र"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML दस्तावेज़"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "मास्टर दस्तावेज़"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "सूत्र"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "डेटाबेस"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Local drive"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Disk drive"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM drive"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "संजाल कनेक्शन"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint दस्तावेज़"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint नमूना"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint Show"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML दस्तावेज़"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "ओपनडॉक्यूमेंट डेटाबेस"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "ओपनडॉक्यूमेंट रेखाचित्र"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "ओपनडॉक्यूमेंट सूत्र"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "ओपनडॉक्यूमेंट मुख्य दस्तावेज़"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "ओपनडॉक्यूमेंट प्रस्तुति"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "ओपनडॉक्यूमेंट स्प्रेडशीट"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "ओपनडॉक्यूमेंट पाठ"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "ओपनडॉक्यूमेंट स्प्रेडशीट नमूना ख़ाका"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "ओपनडॉक्यूमेंट रेखाचित्र नमूना"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "ओपनडॉक्यूमेंट प्रस्तुति नमूना ख़ाका"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "ओपनडॉक्यूमेंट पाठ नमूना"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME विस्तार"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/hi/svx/messages.po b/source/hi/svx/messages.po
index aa2d83faa2e..04b29ba89f9 100644
--- a/source/hi/svx/messages.po
+++ b/source/hi/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Hindi <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/hi/>\n"
@@ -16670,12 +16670,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr ""
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
-#, fuzzy
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "टिप्पणी"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/hi/sw/messages.po b/source/hi/sw/messages.po
index dd1af42530a..c764baf34bf 100644
--- a/source/hi/sw/messages.po
+++ b/source/hi/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17814,88 +17814,94 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "सामान्य"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "शीर्षिका (_d)"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
#, fuzzy
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "नए पृष्ठ पर शीर्षिका पंक्ति दुहराएँ (_p)"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "पृष्ठ पर सारणी मत बाँटें (_s)"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
#, fuzzy
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "शीर्षिका पंक्ति (_w):"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "विकल्प"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr ""
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20495,295 +20501,295 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "शीर्षिका"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "पादिका"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
#, fuzzy
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "स्तर बढ़ायें"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
#, fuzzy
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "स्तर घटायें"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
#, fuzzy
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "कर्षण मोड"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "दस्तावेज़"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
#, fuzzy
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "सक्रिय विंडो"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
#, fuzzy
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "संपादन करें"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "अद्यतन करें"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "जोड़ें"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
#, fuzzy
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "ऊपर खिसकाएँ (_U)"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "नीचे जाएँ"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/hr/chart2/messages.po b/source/hr/chart2/messages.po
index a6810f33a60..473ca46ae2e 100644
--- a/source/hr/chart2/messages.po
+++ b/source/hr/chart2/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-08-18 11:35+0000\n"
-"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
+"PO-Revision-Date: 2020-11-18 15:35+0000\n"
+"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/chart2messages/hr/>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1563445756.000000\n"
#. NCRDD
@@ -1344,7 +1344,7 @@ msgstr "Novi redak"
#: chart2/uiconfig/ui/dlg_DataLabel.ui:281
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Period"
-msgstr "Period"
+msgstr "Točka"
#. 8Z3DJ
#: chart2/uiconfig/ui/dlg_DataLabel.ui:285
@@ -3156,7 +3156,7 @@ msgstr "Linija osi"
#: chart2/uiconfig/ui/tp_AxisPositions.ui:186
msgctxt "tp_AxisPositions|RB_ON"
msgid "_On tick marks"
-msgstr ""
+msgstr "_Na oznakama"
#. FaKJZ
#: chart2/uiconfig/ui/tp_AxisPositions.ui:195
@@ -3168,7 +3168,7 @@ msgstr ""
#: chart2/uiconfig/ui/tp_AxisPositions.ui:206
msgctxt "tp_AxisPositions|RB_BETWEEN"
msgid "_Between tick marks"
-msgstr ""
+msgstr "_Između oznaka"
#. BSx2x
#: chart2/uiconfig/ui/tp_AxisPositions.ui:216
@@ -3642,7 +3642,7 @@ msgstr "Novi redak"
#: chart2/uiconfig/ui/tp_DataLabel.ui:213
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Period"
-msgstr "Period"
+msgstr "Točka"
#. jjR8u
#: chart2/uiconfig/ui/tp_DataLabel.ui:217
@@ -4278,7 +4278,7 @@ msgstr ""
#: chart2/uiconfig/ui/tp_LegendPosition.ui:249
msgctxt "tp_LegendPosition|TXT_OVERLAY"
msgid "Overlay"
-msgstr ""
+msgstr "Prekrivanje"
#. 8783D
#: chart2/uiconfig/ui/tp_PolarOptions.ui:30
diff --git a/source/hr/cui/messages.po b/source/hr/cui/messages.po
index 163f684acce..dd0230f6ed7 100644
--- a/source/hr/cui/messages.po
+++ b/source/hr/cui/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-03-14 17:15+0000\n"
+"PO-Revision-Date: 2020-11-19 20:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/hr/>\n"
"Language: hr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1566194989.000000\n"
#. GyY9M
@@ -3655,7 +3655,7 @@ msgstr "Napredno"
#: cui/inc/treeopt.hrc:45
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Basic IDE"
-msgstr "Basic IDE"
+msgstr "Osnovni IDE"
#. ZS4Sx
#: cui/inc/treeopt.hrc:46
@@ -15647,13 +15647,13 @@ msgstr "_Nema proxy-a za:"
#: cui/uiconfig/ui/optproxypage.ui:266
msgctxt "optproxypage|httpsportft"
msgid "P_ort:"
-msgstr "P_ort:"
+msgstr "P_riključak:"
#. kmBDu
#: cui/uiconfig/ui/optproxypage.ui:279
msgctxt "optproxypage|ftpportft"
msgid "P_ort:"
-msgstr "P_ort:"
+msgstr "P_riključak:"
#. RW6E4
#: cui/uiconfig/ui/optproxypage.ui:292
@@ -16788,7 +16788,7 @@ msgstr "Automatski"
#: cui/uiconfig/ui/optviewpage.ui:444
msgctxt "optviewpage|iconstyle"
msgid "Galaxy"
-msgstr "Galaxy"
+msgstr "Galaksija"
#. RNRKB
#: cui/uiconfig/ui/optviewpage.ui:445
@@ -16800,13 +16800,13 @@ msgstr "Visoki kontrast"
#: cui/uiconfig/ui/optviewpage.ui:446
msgctxt "optviewpage|iconstyle"
msgid "Oxygen"
-msgstr "Oxygen"
+msgstr "Kisik"
#. CGhUk
#: cui/uiconfig/ui/optviewpage.ui:447
msgctxt "optviewpage|iconstyle"
msgid "Classic"
-msgstr "Classic"
+msgstr "Klasičan"
#. biYuj
#: cui/uiconfig/ui/optviewpage.ui:448
@@ -16818,7 +16818,7 @@ msgstr "Sifr"
#: cui/uiconfig/ui/optviewpage.ui:449
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
-msgstr "Breeze"
+msgstr "Povjetarac"
#. dDE86
#: cui/uiconfig/ui/optviewpage.ui:453
@@ -16878,31 +16878,31 @@ msgstr ""
#: cui/uiconfig/ui/optviewpage.ui:584
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
-msgstr ""
+msgstr "Koristi Skia za sva iscrtavanja"
#. RFqrA
#: cui/uiconfig/ui/optviewpage.ui:599
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
-msgstr ""
+msgstr "Prisili iscrtavanje upotrebom Skia softvera"
#. DTMxy
#: cui/uiconfig/ui/optviewpage.ui:603
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
-msgstr ""
+msgstr "Zahtijeva ponovno pokretanje. Aktiviranjem ove postavke spriječit će se upotreba grafičkih upravljačkih programa."
#. 5pA7K
#: cui/uiconfig/ui/optviewpage.ui:618
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
-msgstr ""
+msgstr "Skia je trenutačno aktiviran."
#. yDGEV
#: cui/uiconfig/ui/optviewpage.ui:630
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
-msgstr ""
+msgstr "Skia je trenutačno deaktiviran."
#. sy9iz
#: cui/uiconfig/ui/optviewpage.ui:688
@@ -16926,7 +16926,7 @@ msgstr ""
#: cui/uiconfig/ui/optviewpage.ui:740
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
-msgstr "Za_glađivanje fontova na zaslonu"
+msgstr "Za_glađivanje fontova na ekranu"
#. 5QEjG
#: cui/uiconfig/ui/optviewpage.ui:749
diff --git a/source/hr/extensions/messages.po b/source/hr/extensions/messages.po
index e9956dffc75..149eac0f16e 100644
--- a/source/hr/extensions/messages.po
+++ b/source/hr/extensions/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-08-18 11:35+0000\n"
-"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
+"PO-Revision-Date: 2020-11-18 15:35+0000\n"
+"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/extensionsmessages/hr/>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1563532592.000000\n"
#. cBx8W
@@ -122,7 +122,7 @@ msgstr "Sql"
#: extensions/inc/stringarrays.hrc:51
msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
msgid "Sql [Native]"
-msgstr "Sql [Native]"
+msgstr "Sql [izvorni]"
#. kMQfy
#: extensions/inc/stringarrays.hrc:52
@@ -416,13 +416,13 @@ msgstr "_blank"
#: extensions/inc/stringarrays.hrc:140
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
-msgstr "_nadređeno"
+msgstr "_parent"
#. pQZAG
#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
-msgstr "_isti"
+msgstr "_self"
#. FwYDV
#: extensions/inc/stringarrays.hrc:142
diff --git a/source/hr/extras/source/autocorr/emoji.po b/source/hr/extras/source/autocorr/emoji.po
index 6703c1709fc..00c097df16b 100644
--- a/source/hr/extras/source/autocorr/emoji.po
+++ b/source/hr/extras/source/autocorr/emoji.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2019-12-24 17:05+0000\n"
+"PO-Revision-Date: 2020-11-19 20:36+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/extrassourceautocorremoji/hr/>\n"
"Language: hr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.9.1\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1563441569.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
@@ -14424,7 +14424,7 @@ msgctxt ""
"SAUROPOD\n"
"LngText.text"
msgid "dinosaur"
-msgstr "dinosaur"
+msgstr "dinosaurus"
#. 🦖 (U+1F996), see http://wiki.documentfoundation.org/Emoji
#. Nixns
@@ -14434,7 +14434,7 @@ msgctxt ""
"T-REX\n"
"LngText.text"
msgid "dinosaur2"
-msgstr "dinosaur2"
+msgstr "dinosaurus2"
#. 🦗 (U+1F997), see http://wiki.documentfoundation.org/Emoji
#. v74vD
diff --git a/source/hr/helpcontent2/source/text/scalc/01.po b/source/hr/helpcontent2/source/text/scalc/01.po
index dd6f3d96188..beb783bddee 100644
--- a/source/hr/helpcontent2/source/text/scalc/01.po
+++ b/source/hr/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: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:33+0100\n"
"PO-Revision-Date: 2019-07-19 13:23+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -56473,6 +56473,15 @@ msgctxt ""
msgid "Using regular expressions and nested functions"
msgstr ""
+#. dgbYx
+#: func_countifs.xhp
+msgctxt ""
+"func_countifs.xhp\n"
+"par_id831605805755075\n"
+"help.text"
+msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
+msgstr ""
+
#. iHFsx
#: func_countifs.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/sdraw.po b/source/hr/helpcontent2/source/text/sdraw.po
index 24c969d6748..f0f081cfafa 100644
--- a/source/hr/helpcontent2/source/text/sdraw.po
+++ b/source/hr/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-07-16 22:12+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -169,6 +169,60 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
+#. nstgU
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id221605492986383\n"
+"help.text"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgstr ""
+
+#. tYxbF
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id761605493042236\n"
+"help.text"
+msgid "Opens dialog box for selecting layout of user interface."
+msgstr ""
+
+#. JChXS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id102720151746522815\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. XjZkS
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id102720150112252143\n"
+"help.text"
+msgid "Show or hide annotations on the page."
+msgstr ""
+
+#. Y3uKu
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id961605560845125\n"
+"help.text"
+msgid "Shift"
+msgstr ""
+
+#. 3Eaeo
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_id301605560855098\n"
+"help.text"
+msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
+msgstr ""
+
#. 7AgpR
#: main0103.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/shared/00.po b/source/hr/helpcontent2/source/text/shared/00.po
index 70f074ce61b..a06196b3623 100644
--- a/source/hr/helpcontent2/source/text/shared/00.po
+++ b/source/hr/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2019-06-29 14:04+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2662,76 +2662,49 @@ msgctxt ""
msgid "A good example of a relational database can be given with a database containing Customer, Purchase, and Invoice tables. In the Invoice table, there is no actual customer or purchasing data; however, the table contains references through a relational link, or a relation, to the respective customer and purchasing table's fields (for example, the customer ID field from the customer table)."
msgstr "Dobar primjer relacijske baze podataka može biti baza podataka koja sadrži tablice Kupaca, Narudžbi i Računa. U tablici računa nema stvarnih podataka o kupcima ili narudžbama; međutim, tablica sadrži reference u obliku relacijske poveznice, ili relacije, na odgovarajuća polja u tablicama kupaca i narudžbi (primjerice, polje s ID oznakom kupca iz tablice kupaca)."
-#. ygQrE
+#. BtEVa
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"hd_id551604189872115\n"
-"help.text"
-msgid "Page line-spacing (register-true)"
-msgstr ""
-
-#. Uxkvo
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id3154223\n"
-"help.text"
-msgid "<variable id=\"registertrue_intro\">Register-true is a typography term that is used in printing.</variable> This term refers to the congruent imprint of the lines within a type area on the front and the back side of a page. The register-true feature makes a page easier to read by preventing gray shadows from shining through between the lines of text."
-msgstr ""
-
-#. yHUNF
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id441604191438775\n"
+"bm_id3147315\n"
"help.text"
-msgid "The register-true term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
+msgid "<bookmark_value>register-true; definition</bookmark_value><bookmark_value>page line-spacing; definition</bookmark_value>"
msgstr ""
-#. y2Gm2
+#. ygQrE
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"par_id761604345191168\n"
+"hd_id551604189872115\n"
"help.text"
-msgid "<variable id=\"register_purpose\">Register-true printing is particularly useful for documents that will have two pages set next to each other (e.g., in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing.</variable>"
+msgid "Page line-spacing (register-true)"
msgstr ""
-#. 8nivG
+#. yspD9
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "<variable id=\"registertrue_in_LO\">In %PRODUCTNAME, this feature is called</variable> <link href=\"text/swriter/guide/registertrue.xhp\" name=\"pagelinespacinghelp\"><emph>Page line-spacing</emph></link>."
+msgid "In %PRODUCTNAME, the register-true feature is called <emph>Page line-spacing</emph>."
msgstr ""
-#. cg9UW
+#. WxQBJ
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"bm_id3147315\n"
+"par_id3154223\n"
"help.text"
-msgid "<bookmark_value>register-true; definition</bookmark_value>"
+msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other."
msgstr ""
-#. d59SH
+#. BNJUC
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
-"hd_id3147315\n"
-"help.text"
-msgid "Register-true"
-msgstr "Točno registrirano"
-
-#. ECfHB
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_id961604191800181\n"
+"par_id761604345191168\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <variable id=\"glossary-pagelinespacing\"><link href=\"text/shared/00/00000005.xhp#page line-spacing\" name=\"pagelinespacingsection\">Page line-spacing</link></variable>."
+msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. Es2pF
diff --git a/source/hr/helpcontent2/source/text/shared/01.po b/source/hr/helpcontent2/source/text/shared/01.po
index 3ed6eb84a0f..34cbc04d970 100644
--- a/source/hr/helpcontent2/source/text/shared/01.po
+++ b/source/hr/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-07-19 13:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5119,24 +5119,6 @@ msgctxt ""
msgid "For some document types, you can choose to print a brochure."
msgstr ""
-#. PgzBQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
-"help.text"
-msgid "More Options"
-msgstr ""
-
-#. jRGiQ
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the <emph>More Options</emph> window you can set some additional options for the current print job.</ahelp>"
-msgstr ""
-
#. vXCZ9
#: 01130000.xhp
msgctxt ""
@@ -9394,13 +9376,13 @@ msgctxt ""
msgid "Switches between master view and normal view."
msgstr ""
-#. hFhkw
+#. W32iU
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3145313\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgid "<image id=\"img_id3155535\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155535\">Icon</alt></image>"
msgstr ""
#. 3Lq2G
@@ -9430,13 +9412,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the <emph>Navigator</emph> list. If the selection is a file, the file is opened for editing. If the selection is an index, the <emph>Index</emph> dialog is opened.</ahelp>"
msgstr ""
-#. ZEFUA
+#. sWH9B
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgid "<image id=\"img_id3145416\" src=\"sw/res/sc20245.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145416\">Icon</alt></image>"
msgstr ""
#. nRB3E
@@ -9466,13 +9448,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
msgstr ""
-#. ikFfC
+#. U2EDW
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3159166\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgid "<image id=\"img_id3153146\" src=\"sw/res/sc20246.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153146\">Icon</alt></image>"
msgstr ""
#. F4J5u
@@ -9601,13 +9583,13 @@ msgctxt ""
msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr ""
-#. KuiaF
+#. 7ibA3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153951\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgid "<image id=\"img_id3146984\" src=\"sw/res/sc20247.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146984\">Icon</alt></image>"
msgstr ""
#. ijR7M
@@ -9709,13 +9691,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/save\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr ""
-#. yRk2H
+#. L2WfA
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3151351\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgid "<image id=\"img_id3152885\" src=\"sw/res/sc20248.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152885\">Icon</alt></image>"
msgstr ""
#. ADEyJ
@@ -9745,13 +9727,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/moveup\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. RNAyD
+#. adwgq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156178\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgid "<image id=\"img_id3155083\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155083\">Icon</alt></image>"
msgstr ""
#. GqEUL
@@ -9781,13 +9763,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/movedown\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#. 49owc
+#. 2FFAZ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154790\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgid "<image id=\"img_id3166413\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166413\">Icon</alt></image>"
msgstr ""
#. DLEGF
diff --git a/source/hr/helpcontent2/source/text/shared/02.po b/source/hr/helpcontent2/source/text/shared/02.po
index d90d2e0ed98..4625b672dfb 100644
--- a/source/hr/helpcontent2/source/text/shared/02.po
+++ b/source/hr/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-07-19 11:24+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11032,14 +11032,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. D2wJy
+#. WWFB7
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link>"
-msgstr "<link href=\"text/shared/02/02130000.xhp\" name=\"Smanji uvlaku\">Smanji uvlaku</link>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgstr ""
#. DCXbA
#: 02130000.xhp
@@ -11059,13 +11059,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
-#. LjaJg
+#. ii8Wo
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155338\n"
"help.text"
-msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150506\">Icon</alt></image>"
+msgid "<image id=\"img_id3150506\" src=\"cmd/sc_decrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150506\">Icon</alt></image>"
msgstr ""
#. 9iqpg
@@ -11104,14 +11104,14 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr ""
-#. FpgFr
+#. ydABo
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link>"
-msgstr "<link href=\"text/shared/02/02140000.xhp\" name=\"Povećaj uvlaku\">Povećaj uvlaku</link>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgstr ""
#. FBggx
#: 02140000.xhp
@@ -11131,13 +11131,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
-#. JRxtC
+#. LBvjm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149388\">Icon</alt></image>"
+msgid "<image id=\"img_id3149388\" src=\"cmd/sc_incrementindent.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149388\">Icon</alt></image>"
msgstr ""
#. bAyat
diff --git a/source/hr/helpcontent2/source/text/shared/optionen.po b/source/hr/helpcontent2/source/text/shared/optionen.po
index ae658269bbc..f3005ad8cf5 100644
--- a/source/hr/helpcontent2/source/text/shared/optionen.po
+++ b/source/hr/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-07-19 13:30+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11860,31 +11860,31 @@ msgctxt ""
msgid "Snap"
msgstr "Poravnanje"
-#. EpRvi
+#. c8Psj
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3163802\n"
"help.text"
-msgid "To snap lines"
-msgstr "Na privlačne linije"
+msgid "To snap guides"
+msgstr ""
-#. Zwx7w
+#. qZazt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap line when you release the mouse.</ahelp></variable>"
+msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. u4bG5
+#. Dwoaz
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Lines</emph></link></caseinline><defaultinline><emph>Snap to Snap Lines</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
msgstr ""
#. eUCCJ
diff --git a/source/hr/helpcontent2/source/text/simpress/02.po b/source/hr/helpcontent2/source/text/simpress/02.po
index 876d8076d3f..7d6d6eeed94 100644
--- a/source/hr/helpcontent2/source/text/simpress/02.po
+++ b/source/hr/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-07-19 12:00+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5695,41 +5695,41 @@ msgctxt ""
msgid "Exit all groups"
msgstr ""
-#. vxhB2
+#. tScTM
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"tit\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Privlači na privlačne linije"
+msgid "Snap to Snap Guides"
+msgstr ""
-#. UcCpg
+#. DQ4DB
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Privlači na privlačne linije</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgstr ""
-#. BH6cq
+#. GXfRk
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
+msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146969\">Icon</alt></image>"
msgstr ""
-#. EaBaa
+#. wYSJV
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Snap to Snap Lines"
-msgstr "Privlači na privlačne linije"
+msgid "Snap to Snap Guides"
+msgstr ""
#. oXWsX
#: 13150000.xhp
diff --git a/source/hr/helpcontent2/source/text/swriter.po b/source/hr/helpcontent2/source/text/swriter.po
index 5810d83aaca..cb63b9da5bb 100644
--- a/source/hr/helpcontent2/source/text/swriter.po
+++ b/source/hr/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-03 12:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-07-15 21:49+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2212,14 +2212,14 @@ msgctxt ""
msgid "Left-To-Right"
msgstr "s lijeva na desno"
-#. dNWjD
+#. 9tEuw
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10784\n"
"help.text"
-msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
-msgstr "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id8354747\">ikona slijeva nadesno</alt></image>"
+msgid "<image id=\"img_id8354747\" src=\"cmd/sc_paralefttoright.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8354747\">left to right icon</alt></image>"
+msgstr ""
#. Xg9vt
#: main0202.xhp
@@ -2239,14 +2239,14 @@ msgctxt ""
msgid "Right-To-Left"
msgstr "S desna na lijevo"
-#. bTEHY
+#. iE56r
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN107DF\n"
"help.text"
-msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
-msgstr "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id2405774\">ikona zdesna nalijevo</alt></image>"
+msgid "<image id=\"img_id2405774\" src=\"cmd/sc_pararighttoleft.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id2405774\">right to left icon</alt></image>"
+msgstr ""
#. TMwGp
#: main0202.xhp
diff --git a/source/hr/helpcontent2/source/text/swriter/01.po b/source/hr/helpcontent2/source/text/swriter/01.po
index 27159f782f3..d72c33d1d33 100644
--- a/source/hr/helpcontent2/source/text/swriter/01.po
+++ b/source/hr/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2019-07-19 13:17+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Navigator"
msgstr "Navigator"
-#. G3kV4
+#. 5Pc72
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\"><variable id=\"Navigator\">Navigator</variable></link>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
msgstr ""
#. uXgCi
@@ -709,13 +709,13 @@ msgctxt ""
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
msgstr ""
-#. M9FCf
+#. FqB3h
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgid "Click the plus sign (<widget>+</widget>) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
msgstr ""
#. WD2Zz
@@ -763,13 +763,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. ZMb97
+#. LH5bG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
#. z3HC5
@@ -799,13 +799,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
msgstr ""
-#. 33JYo
+#. pHVYb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
#. xyGWM
@@ -907,13 +907,13 @@ msgctxt ""
msgid "Context Menu"
msgstr ""
-#. eZEns
+#. JiJpY
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id721603290925895\n"
"help.text"
-msgid "<image src=\"sw/res/sc20179.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id1001603290925895\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id591603290925895\">Headings Icon</alt></image>"
msgstr ""
#. KF8gH
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. kV2ci
+#. xFGwj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -943,13 +943,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. 7VDkt
+#. fVaAR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, Outline Content Visibility, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -30103,6 +30103,447 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>Mail Merge Recipients</emph> dialog.</ahelp>"
msgstr ""
+#. USkGq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. vE4fu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id141603814665942\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;enabling</bookmark_value>"
+msgstr ""
+
+#. JDacS
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id311603588857975\n"
+"help.text"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. iBBcY
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id781603591328239\n"
+"help.text"
+msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes."
+msgstr ""
+
+#. 9uBsE
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id941603713070812\n"
+"help.text"
+msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.<br/><br/>To enable, <embedvar href=\"text/shared/optionen/experimental.xhp#exptal\"/>, then still in <menuitem>Options</menuitem>, choose <emph>%PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View</emph>, and select the <menuitem>Show outline content visibility</menuitem> checkbox."
+msgstr ""
+
+#. WeiZ3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603592299868\n"
+"help.text"
+msgid "In Navigator (<keycode>F5</keycode>) (for <emph>Headings</emph> in Content View)"
+msgstr ""
+
+#. uqAng
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id801603592797580\n"
+"help.text"
+msgid "With mouse (on a heading)"
+msgstr ""
+
+#. DKDnc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603902789914\n"
+"help.text"
+msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level."
+msgstr ""
+
+#. ZnHHW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id711604659189386\n"
+"help.text"
+msgid "<bookmark_value>Navigator;Outline Content Visibility</bookmark_value><bookmark_value>Outline Content Visibility;with Navigator</bookmark_value>"
+msgstr ""
+
+#. xVBGd
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id931603593824856\n"
+"help.text"
+msgid "Using Outline Content Visibility with Navigator"
+msgstr ""
+
+#. iHEx5
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id161603902590811\n"
+"help.text"
+msgid "In Navigator, all commands are shown in the context menu for <emph>Headings</emph> and items under <emph>Headings</emph>. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose <menuitem>Outline Content Visibility</menuitem>, and one of the following commands, depending on what is selected."
+msgstr ""
+
+#. XymTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id111603594832364\n"
+"help.text"
+msgid "Hide content for all headings"
+msgstr ""
+
+#. Ya9AD
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id171603594868435\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem>."
+msgstr ""
+
+#. qAiBQ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id201603902018701\n"
+"help.text"
+msgid "<image src=\"sw/res/nc20000.png\" id=\"img_id871603787633618\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761603787633618\">Headings Icon</alt></image>"
+msgstr ""
+
+#. yTGK2
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111603902018701\n"
+"help.text"
+msgid "Headings icon"
+msgstr ""
+
+#. YzYYt
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id381603902284237\n"
+"help.text"
+msgid "Show content for all headings"
+msgstr ""
+
+#. uHoJa
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id431603902342365\n"
+"help.text"
+msgid "Headings icon is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem>."
+msgstr ""
+
+#. mRE8s
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id991603595158130\n"
+"help.text"
+msgid "Hide content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. q8qzv
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id871603595297049\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Hide All</menuitem> to hide all content until the next heading at the same outline level."
+msgstr ""
+
+#. ZidnP
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id131603923006495\n"
+"help.text"
+msgid "Show content for all subheadings, relative to an outline level"
+msgstr ""
+
+#. PBKaL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id501603923049090\n"
+"help.text"
+msgid "Heading with subheadings is selected. Right-click and choose <menuitem>Outline Content Visibility - Show All</menuitem> to show all content until the next heading at the same outline level."
+msgstr ""
+
+#. TEbxh
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id111604356830363\n"
+"help.text"
+msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both <menuitem>Show All</menuitem> and <menuitem>Hide All</menuitem>."
+msgstr ""
+
+#. YZWyc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id431603594946909\n"
+"help.text"
+msgid "Hide or show content under a single heading"
+msgstr ""
+
+#. t26Hb
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id441603594965562\n"
+"help.text"
+msgid "For selected heading, right-click and choose <menuitem>Outline Content Visibility - Toggle</menuitem>"
+msgstr ""
+
+#. DFcCW
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id961604566488300\n"
+"help.text"
+msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use <widget>-</widget> and <widget>+</widget> (or arrow) signs or <menuitem>Collapse All / Expand All</menuitem> in <link href=\"text/shared/guide/contextmenu.xhp\" name=\"contextmenu\">context menu</link> for headings."
+msgstr ""
+
+#. jCcW3
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"bm_id861604659229058\n"
+"help.text"
+msgid "<bookmark_value>Outline Content Visibility;with mouse</bookmark_value>"
+msgstr ""
+
+#. FKecH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id961603593527184\n"
+"help.text"
+msgid "Using Outline Content Visibility with Mouse"
+msgstr ""
+
+#. trciq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id641604365236177\n"
+"help.text"
+msgid "Over a heading"
+msgstr ""
+
+#. zBdgM
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id331603591793655\n"
+"help.text"
+msgid "Press the <keycode>Ctrl</keycode> key. Place mouse over (or close to a line with) a heading.<br/>(Arrow in left margin gives visual cue.)"
+msgstr ""
+
+#. FRtMg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id681604492926867\n"
+"help.text"
+msgid "When mouse pointer image changes to hand pointer, the following commands are possible:"
+msgstr ""
+
+#. BnPmu
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594434731\n"
+"help.text"
+msgid "<variable id=\"click-toggle\">Click to toggle <variable id=\"visibility\">visibility of content from selected heading to next heading.</variable></variable>"
+msgstr ""
+
+#. CwqVy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594448708\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level.</variable>"
+msgstr ""
+
+#. bhurB
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id101604365425000\n"
+"help.text"
+msgid "Arrows in left margin"
+msgstr ""
+
+#. CVGFc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541604366257774\n"
+"help.text"
+msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)"
+msgstr ""
+
+#. pyDjy
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id451603594341994\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#click-toggle\"/>"
+msgstr ""
+
+#. AwFxg
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id71603594662394\n"
+"help.text"
+msgid "<embedvar href=\"swriter/01/outlinecontent_visibility.xhp#rightclick\"/>"
+msgstr ""
+
+#. UkamL
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id681603875505853\n"
+"help.text"
+msgid "Customized Control"
+msgstr ""
+
+#. GEyFk
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id661603875533124\n"
+"help.text"
+msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key."
+msgstr ""
+
+#. DZDTC
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id541603875590171\n"
+"help.text"
+msgid "<emph>Show outline content visibility</emph> enables and disables this feature (both for mouse and Navigator)."
+msgstr ""
+
+#. XeqHN
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id791603875551155\n"
+"help.text"
+msgid "<emph>Toggle Outline Content Visibility</emph> toggles <embedvar href=\"text/swriter/01/outlinecontent_visibility.xhp#visibility\"/>"
+msgstr ""
+
+#. DKBZq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id481604366466503\n"
+"help.text"
+msgid "Place the cursor in the document. Use the <menuitem>Toggle</menuitem> command to hide the content in relation to the first heading above the cursor position."
+msgstr ""
+
+#. wqMek
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id861604494831275\n"
+"help.text"
+msgid "Depending on your customization, this <menuitem>Toggle</menuitem> command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key."
+msgstr ""
+
+#. PPkhx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"hd_id81604416400633\n"
+"help.text"
+msgid "Saving Your Configuration"
+msgstr ""
+
+#. VbFMU
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id101604416417417\n"
+"help.text"
+msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes."
+msgstr ""
+
+#. RQvTc
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id981604412273516\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgstr ""
+
+#. By4tx
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id31604412603892\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgstr ""
+
+#. GFNAq
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id401603926410184\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgstr ""
+
+#. UEKDH
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id271604411886782\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgstr ""
+
+#. ucbYZ
+#: outlinecontent_visibility.xhp
+msgctxt ""
+"outlinecontent_visibility.xhp\n"
+"par_id251603931664784\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgstr ""
+
#. KadxR
#: selection_mode.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/swriter/guide.po b/source/hr/helpcontent2/source/text/swriter/guide.po
index bbe1f05f23d..83b1a9ed4d2 100644
--- a/source/hr/helpcontent2/source/text/swriter/guide.po
+++ b/source/hr/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-10-19 12:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/hr/>\n"
@@ -7792,49 +7792,49 @@ msgctxt ""
msgid "<variable id=\"indenting\"><link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link></variable>"
msgstr ""
-#. A5fSr
+#. 7YqqH
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id5589159\n"
+"par_id9936216\n"
"help.text"
-msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
msgstr ""
-#. 7YqqH
+#. 8uFbM
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id9936216\n"
+"par_id4013794\n"
"help.text"
-msgid "You can change the indents for the current paragraph, or for all selected paragraphs, or for a Paragraph Style."
+msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
msgstr ""
-#. MR5fF
+#. H4LXQ
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id7953123\n"
+"par_id1631824\n"
"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
+msgid "Right-click a paragraph and choose <menuitem>Paragraph - Edit Style - Indents & Spacing</menuitem> tab to change the indents for all paragraphs that have the same Paragraph Style."
msgstr ""
-#. 8uFbM
+#. MR5fF
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id4013794\n"
+"par_id7953123\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph - Indents & Spacing</item> to change the indents for the current paragraph or for all selected paragraphs. You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <item type=\"menuitem\">View - Ruler</item>."
msgstr ""
-#. pFiGA
+#. Ca7Di
#: indenting.xhp
msgctxt ""
"indenting.xhp\n"
-"par_id1631824\n"
+"hd_id361605222538173\n"
"help.text"
-msgid "Right-click a paragraph and choose <item type=\"menuitem\">Edit Paragraph Style - Indents & Spacing</item> to change the indents for all paragraphs that have the same Paragraph Style."
+msgid "Positioning indents"
msgstr ""
#. qUxKq
@@ -7846,6 +7846,15 @@ msgctxt ""
msgid "Indents are calculated with respect to the left and right page margins. If you want the paragraph to extend into the page margin, enter a negative number."
msgstr ""
+#. A5fSr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id5589159\n"
+"help.text"
+msgid "To change the measurement units, 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 - General</item>, and then select a new measurement unit in the Settings area."
+msgstr ""
+
#. bFAbP
#: indenting.xhp
msgctxt ""
@@ -7855,6 +7864,15 @@ msgctxt ""
msgid "The indents are different regarding the writing direction. For example, look at the <item type=\"menuitem\">Before text </item>indent value in left-to-right languages. The left edge of the paragraph is indented with respect to the left page margin. In right-to-left languages, the right edge of the paragraph is indented with respect to the right page margin."
msgstr ""
+#. GJYAr
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"hd_id671605222596649\n"
+"help.text"
+msgid "Hanging indents"
+msgstr ""
+
#. mF3Ak
#: indenting.xhp
msgctxt ""
@@ -7864,6 +7882,51 @@ msgctxt ""
msgid "For a hanging indent, enter a positive value for <item type=\"menuitem\">Before text</item> and a negative value for <item type=\"menuitem\">First line</item>."
msgstr ""
+#. SvkCJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id811605224853050\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of <menuitem>Before text</menuitem> and <menuitem>First line</menuitem>. This enables you to toggle a paragraph between an indented first line and a hanging indent."
+msgstr ""
+
+#. C5rYC
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id151605225966778\n"
+"help.text"
+msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent."
+msgstr ""
+
+#. 3kNCk
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id331605223016307\n"
+"help.text"
+msgid "<image src=\"cmd/lc_hangingindent.png\" id=\"img_id121605223016307\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61605223016307\">Hanging Indent Icon</alt></image>"
+msgstr ""
+
+#. qgELJ
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id881605223016307\n"
+"help.text"
+msgid "Hanging Indent Icon"
+msgstr ""
+
+#. kSX2M
+#: indenting.xhp
+msgctxt ""
+"indenting.xhp\n"
+"par_id901605225508322\n"
+"help.text"
+msgid "The <emph>Hanging Indent</emph> command can be added as a <link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"addbutton\">button to a toolbar</link>, an <link href=\"text/shared/01/06140100.xhp\" name=\"addmenuitem\">item in a menu</link> or <link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">context menu</link>, or a <link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">shortcut key</link>."
+msgstr ""
+
#. YBBUC
#: indenting.xhp
msgctxt ""
@@ -10231,13 +10294,13 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr ""
-#. C95Pb
+#. bnAzh
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
msgstr ""
#. aahB7
@@ -10267,13 +10330,22 @@ msgctxt ""
msgid "Do one of the following:"
msgstr "Učinite nešto od navedenog:"
-#. EKmWw
+#. zoCJb
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"par_id3155919\n"
"help.text"
-msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
+msgid "Choose <menuitem>Table > Number recognition</menuitem>."
+msgstr ""
+
+#. en4GC
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id531605970858214\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number recognition</menuitem> command."
msgstr ""
#. hDANA
@@ -10285,6 +10357,15 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME Writer - Table</item>, and select or clear the <item type=\"menuitem\">Number recognition</item> check box."
msgstr ""
+#. FDjNL
+#: number_date_conv.xhp
+msgctxt ""
+"number_date_conv.xhp\n"
+"par_id781605970689063\n"
+"help.text"
+msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
+msgstr ""
+
#. gsMre
#: number_date_conv.xhp
msgctxt ""
@@ -12211,6 +12292,24 @@ msgctxt ""
msgid "When you create a document that you want to print as a brochure, use portrait orientation for the pages. Writer applies the brochure layout when you print the document."
msgstr ""
+#. yGAXr
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id871605701051745\n"
+"help.text"
+msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents."
+msgstr ""
+
+#. 5tGLL
+#: print_brochure.xhp
+msgctxt ""
+"print_brochure.xhp\n"
+"par_id191605701997366\n"
+"help.text"
+msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages."
+msgstr ""
+
#. BGTYA
#: print_brochure.xhp
msgctxt ""
@@ -12256,49 +12355,49 @@ msgctxt ""
msgid "If your printer prints duplex, and because brochures always print in landscape mode, you should use the \"duplex - short edge\" setting in your printer setup dialog."
msgstr ""
-#. Bdpyf
+#. ruTQn
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10628\n"
"help.text"
-msgid "Return to <emph>Print</emph> dialog, and click the <emph>Page Layout</emph> tab page."
+msgid "Return to <emph>Print</emph> dialog."
msgstr ""
-#. npEFG
+#. fkF4i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN1062C\n"
"help.text"
-msgid "Select <emph>Brochure</emph>."
+msgid "In the <emph>Page Layout</emph> section, select <emph>Brochure</emph>."
msgstr ""
-#. GEepL
+#. vB8vh
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10740\n"
"help.text"
-msgid "For a printer that automatically prints on both sides of a page, specify to include \"All pages\"."
+msgid "For a printer that automatically prints on both sides of a page, specify in the <emph>Range and Copies</emph> section to include <emph>Odd and Even Pages</emph>."
msgstr ""
-#. BQBxQ
+#. DwUEJ
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN10630\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Odaberite <emph>U redu</emph>."
+msgid "Click <emph>Print</emph>."
+msgstr ""
-#. vgd9E
+#. 3HQ8i
#: print_brochure.xhp
msgctxt ""
"print_brochure.xhp\n"
"par_idN106EA\n"
"help.text"
-msgid "If %PRODUCTNAME prints the pages in the wrong order, open the <emph>Options</emph> tab page, select <emph>Print in reverse page order</emph>, and then print the document again."
+msgid "If %PRODUCTNAME prints the pages in the wrong order, select <emph>Print in reverse order</emph> in the <emph>Range and Copies</emph> section, and then print the document again."
msgstr ""
#. FgeK4
@@ -12373,6 +12472,231 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
msgstr ""
+#. wXuFr
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting What to Print"
+msgstr ""
+
+#. AiDCa
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"bm_id541605272263762\n"
+"help.text"
+msgid "<bookmark_value>selecting; pages to print</bookmark_value><bookmark_value>printing;page range</bookmark_value><bookmark_value>printing;selection</bookmark_value>"
+msgstr ""
+
+#. WiStT
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id721605269733190\n"
+"help.text"
+msgid "<variable id=\"printselection\"><link href=\"text/swriter/guide/print_selection.xhp\" name=\"print_selection_link\">Selecting What to Print</link></variable>"
+msgstr ""
+
+#. FzVEC
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id501605271321756\n"
+"help.text"
+msgid "You can choose to print individual pages, a range of pages, or a selection from a document."
+msgstr ""
+
+#. 4KAbF
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id601605269573468\n"
+"help.text"
+msgid "Printing a single page"
+msgstr ""
+
+#. KhpCc
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id571605684186001\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. 2GBM8
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id31605269603220\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. QtixM
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id251605269806172\n"
+"help.text"
+msgid "Enter the page number you want to print."
+msgstr ""
+
+#. 3oqEG
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id641605269861744\n"
+"help.text"
+msgid "The preview box on the left shows the selected page."
+msgstr ""
+
+#. KkcGy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id171605269647972\n"
+"help.text"
+msgid "Printing a range of pages"
+msgstr ""
+
+#. DBQVy
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id731605685039891\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. hWBFk
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605269669284\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, select the <emph>Pages</emph> option. The text box will show the current page number."
+msgstr ""
+
+#. 9F38F
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id331605269672260\n"
+"help.text"
+msgid "Enter the page numbers to print."
+msgstr ""
+
+#. 5iRGH
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605270284520\n"
+"help.text"
+msgid "• Use <literal>-</literal> for a range of pages (e.g., <input>1–4</input> will print all pages from 1 to 4)."
+msgstr ""
+
+#. RfLAA
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id651605685305228\n"
+"help.text"
+msgid "• Partial ranges are also permitted."
+msgstr ""
+
+#. Bugra
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id781605686618241\n"
+"help.text"
+msgid "<input>-5</input> prints all pages up to page 5."
+msgstr ""
+
+#. eQhF4
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id741605686988056\n"
+"help.text"
+msgid "<input>10-</input> prints from page 10 to end of document."
+msgstr ""
+
+#. wcTVv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id951605270474391\n"
+"help.text"
+msgid "• Use <literal>,</literal> or <literal>;</literal> for a list of pages (e.g., <input> 1,3;7</input> will print pages 1, 3 and 7. Spaces are optional. 1, 3, 7 will also work)."
+msgstr ""
+
+#. GzqGZ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id611605270697509\n"
+"help.text"
+msgid "• Combinations are also possible (e.g., <input>1, 3, 5-10, 15-</input> will print pages 1,3, 5 through 10, and 15 to end of document."
+msgstr ""
+
+#. FRjsx
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id581605269685019\n"
+"help.text"
+msgid "The preview box on the left shows the selected pages."
+msgstr ""
+
+#. PZtKv
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"hd_id571605269596899\n"
+"help.text"
+msgid "Printing a selection of text or graphics"
+msgstr ""
+
+#. 5KxGz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id261605270158305\n"
+"help.text"
+msgid "Select the content to print."
+msgstr ""
+
+#. mwEd6
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id481605687683495\n"
+"help.text"
+msgid "Choose <menuitem>File > Print</menuitem> to open the <emph>Print</emph> dialog."
+msgstr ""
+
+#. iaYKz
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id911605270164153\n"
+"help.text"
+msgid "In the <emph>Range and Copies</emph> section, choose the <emph>Selection</emph> option."
+msgstr ""
+
+#. aFMaJ
+#: print_selection.xhp
+msgctxt ""
+"print_selection.xhp\n"
+"par_id871605270949919\n"
+"help.text"
+msgid "The preview box shows the selected material."
+msgstr ""
+
#. bJ768
#: print_small.xhp
msgctxt ""
@@ -12400,32 +12724,32 @@ msgctxt ""
msgid "<variable id=\"print_small\"><link href=\"text/swriter/guide/print_small.xhp\" name=\"Printing Multiple Pages on One Sheet\">Printing Multiple Pages on One Sheet</link></variable>"
msgstr ""
-#. oeADh
+#. Q9FyG
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3149829\n"
"help.text"
-msgid "On the <emph>Page Layout</emph> tab page of the <item type=\"menuitem\">File - Print</item> dialog, you have the option to print multiple pages on one sheet."
+msgid "In the <emph>Page Layout</emph> section of the <menuitem>File - Print</menuitem> dialog, you have the option to print multiple pages on one sheet."
msgstr ""
-#. EjozA
+#. 7nqCv
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3156098\n"
"help.text"
-msgid "Choose <emph>File - Print</emph> and click the <emph>Page Layout</emph> tab."
+msgid "Choose <menuitem>File - Print</menuitem>"
msgstr ""
-#. X5Nep
+#. 5EBvC
#: print_small.xhp
msgctxt ""
"print_small.xhp\n"
"par_id3155055\n"
"help.text"
-msgid "Do one of the following:"
-msgstr "Učinite nešto od navedenog:"
+msgid "In the <emph>Page Layout</emph> section, do one of the following:"
+msgstr ""
#. G8yiU
#: print_small.xhp
@@ -13390,13 +13714,13 @@ msgctxt ""
msgid "<variable id=\"registertrue\"><link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link></variable>"
msgstr ""
-#. DnEGL
+#. dagQY
#: registertrue.xhp
msgctxt ""
"registertrue.xhp\n"
"par_id391604248923423\n"
"help.text"
-msgid "<embedvar href=\"text/shared/00/00000005.xhp#registertrue_intro\"/> <embedvar href=\"text/shared/00/00000005.xhp#registertrue_in_LO\"/> <embedvar href=\"text/shared/00/00000005.xhp#glossary-pagelinespacing\"/>. <embedvar href=\"text/shared/00/00000005.xhp#register_purpose\"/>"
+msgid "<link href=\"text/shared/00/00000005.xhp#pageline-spacing\" name=\"page line-spacing\"><emph>Page line-spacing</emph></link> printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing."
msgstr ""
#. XHAM3
diff --git a/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po
index c5878a76fba..13d25351e22 100644
--- a/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-03-31 10:35+0200\n"
-"PO-Revision-Date: 2020-03-14 17:15+0000\n"
+"PO-Revision-Date: 2020-11-18 15:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/instsetoo_nativeinc_openofficewindowsmsi_languages/hr/>\n"
"Language: hr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1563540765.000000\n"
#. tBfTE
@@ -3119,7 +3119,7 @@ msgctxt ""
"OOO_CONTROL_323\n"
"LngText.text"
msgid "The following applications are using files that need to be updated by this setup. You can let Installation Wizard close them and attempt to restart them, or reboot the system later to complete the setup."
-msgstr ""
+msgstr "Sljedeći programi koriste datoteke koje se s ovom instalacijom moraju aktualizirati. Možeš dozvoliti čarobnjaku za instalaciju da ih zatvori i da ih pokuša ponovo pokrenuti ili ponovo pokreni sustav za dovršavanje instalacije."
#. qDAnG
#: Control.ulf
@@ -4613,7 +4613,7 @@ msgctxt ""
"OOO_RADIOBUTTON_11\n"
"LngText.text"
msgid "&Do not close applications. A reboot will be required to complete the setup."
-msgstr ""
+msgstr "&Nemoj zatvoriti programe. Za dovršavanje instalacije morat će se ponovo pokrenuti."
#. 94ZFb
#: UIText.ulf
diff --git a/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po
index 743fd3fc0fd..ebe6f71492e 100644
--- a/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hr/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-03-16 20:15+0000\n"
+"PO-Revision-Date: 2020-11-18 15:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/hr/>\n"
"Language: hr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1565194753.000000\n"
#. W5ukN
@@ -4534,7 +4534,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Use Text Import Dialog"
-msgstr ""
+msgstr "Koristi dijalog za uvoz teksta"
#. yombs
#: CalcCommands.xcu
@@ -4544,7 +4544,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Use text import dialog"
-msgstr ""
+msgstr "Koristi dijalog za uvoz teksta"
#. uoxAP
#: CalcCommands.xcu
@@ -15174,7 +15174,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Through White"
-msgstr ""
+msgstr "Kroz bijelu"
#. mFSnT
#: Effects.xcu
@@ -16064,7 +16064,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Fontwork"
-msgstr ""
+msgstr "Umetni Fontwork"
#. 5UN6F
#: GenericCommands.xcu
@@ -16084,7 +16084,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Fontwork Text"
-msgstr ""
+msgstr "Umetni Fontwork-tekst"
#. xaHfX
#: GenericCommands.xcu
@@ -18324,7 +18324,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit Macros..."
-msgstr ""
+msgstr "Uredi makronaredbe …"
#. Ws9jQ
#: GenericCommands.xcu
@@ -23256,7 +23256,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Show Tip of the Day"
-msgstr ""
+msgstr "Prikaži savjet dana"
#. 6VUAq
#: GenericCommands.xcu
@@ -23266,7 +23266,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show the Tip of the Day dialog"
-msgstr ""
+msgstr "Prikaži dijalog savjeta dana"
#. GjCU6
#: GenericCommands.xcu
@@ -23886,7 +23886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Find and Rep~lace..."
-msgstr ""
+msgstr "Nađi i ~zamijeni …"
#. B4Dm5
#: GenericCommands.xcu
@@ -25986,7 +25986,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert N~arrow No-break Space"
-msgstr ""
+msgstr "Umetni uski ner~astavni razmak"
#. txaEk
#: GenericCommands.xcu
@@ -28276,7 +28276,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit Mode"
-msgstr ""
+msgstr "Modus uređivanja"
#. GZdEa
#: ReportCommands.xcu
@@ -28986,7 +28986,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed Compact"
-msgstr "Kompaktno kartično"
+msgstr "Kartično kompaktno"
#. 5CbqL
#: ToolbarMode.xcu
@@ -29076,7 +29076,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed Compact"
-msgstr "Koncept kartica"
+msgstr "Kartično kompaktno"
#. EfebG
#: ToolbarMode.xcu
@@ -29146,7 +29146,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed Compact"
-msgstr "Kompaktno kartično"
+msgstr "Kartično kompaktno"
#. quFBW
#: ToolbarMode.xcu
@@ -29216,7 +29216,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed Compact"
-msgstr "Kompaktno kartično"
+msgstr "Kartično kompaktno"
#. nrNaZ
#: ToolbarMode.xcu
@@ -30096,7 +30096,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Set Reminder"
-msgstr ""
+msgstr "Postavi podsjenik"
#. n2p7v
#: WriterCommands.xcu
@@ -30106,7 +30106,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Set Reminder"
-msgstr ""
+msgstr "Postavi podsjetnik"
#. g5xTe
#: WriterCommands.xcu
@@ -33856,7 +33856,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show Whitespac~e"
-msgstr ""
+msgstr "Pokaži razmakn~e znakove"
#. RHnwE
#: WriterCommands.xcu
@@ -34126,7 +34126,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Accessibility Check..."
-msgstr ""
+msgstr "~Provjera pristupačnosti …"
#. BWWDU
#: WriterCommands.xcu
@@ -35156,7 +35156,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Protect Document"
-msgstr ""
+msgstr "~Zaštiti dokument"
#. ByLdE
#: WriterCommands.xcu
@@ -35166,7 +35166,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Protect Fields"
-msgstr ""
+msgstr "Zaštiti polja"
#. zDPPk
#: WriterCommands.xcu
@@ -35176,7 +35176,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Protect fields in current document"
-msgstr ""
+msgstr "Zaštiti polja u trenutačnom dokumentu"
#. CdnED
#: WriterCommands.xcu
@@ -35186,7 +35186,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Protect Bookmarks"
-msgstr ""
+msgstr "Zaštiti zabilješke"
#. WjWoa
#: WriterCommands.xcu
@@ -35196,7 +35196,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Protect bookmarks in current document"
-msgstr ""
+msgstr "Zaštiti zabilješke u trenutačnom dokumentu"
#. iQC5j
#: WriterCommands.xcu
diff --git a/source/hr/sc/messages.po b/source/hr/sc/messages.po
index 16034595799..cafefd6bbff 100644
--- a/source/hr/sc/messages.po
+++ b/source/hr/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-03-16 20:15+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-19 20:36+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/hr/>\n"
"Language: hr\n"
@@ -1471,7 +1471,7 @@ msgstr "Dif uvoz"
#: sc/inc/globstr.hrc:272
msgctxt "STR_STYLENAME_STANDARD"
msgid "Default"
-msgstr ""
+msgstr "Sandardno"
#. TG9pD
#: sc/inc/globstr.hrc:273
@@ -2611,7 +2611,7 @@ msgstr "Ovaj dokumet nije spremljen, a na njega se poziva drugi dokument. Zatvar
#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_CONDITION"
msgid "Cell value"
-msgstr ""
+msgstr "Vrijednost ćelije"
#. E8yxG
#: sc/inc/globstr.hrc:451
@@ -2635,25 +2635,25 @@ msgstr "Grupa ikona"
#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_BETWEEN"
msgid "is between"
-msgstr ""
+msgstr "je između"
#. VwraP
#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_NOTBETWEEN"
msgid "is not between"
-msgstr ""
+msgstr "nije između"
#. 35tDp
#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_UNIQUE"
msgid "is unique"
-msgstr ""
+msgstr "je jedinstveno"
#. CCscL
#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_DUPLICATE"
msgid "is duplicate"
-msgstr ""
+msgstr "je duplikat"
#. owhPn
#: sc/inc/globstr.hrc:458
@@ -2695,61 +2695,61 @@ msgstr ""
#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "is above average"
-msgstr ""
+msgstr "je iznad prosjeka"
#. 4QM7C
#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "is below average"
-msgstr ""
+msgstr "je ispod prosjeka"
#. CZfTg
#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "is above or equal average"
-msgstr ""
+msgstr "je iznad ili jednako prosjeku"
#. GmUGP
#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "is below or equal average"
-msgstr ""
+msgstr "je ispod ili jednako prosjeku"
#. 8DgQ9
#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_ERROR"
msgid "is an error code"
-msgstr ""
+msgstr "je kȏd greške"
#. ifj7i
#: sc/inc/globstr.hrc:469
msgctxt "STR_COND_NOERROR"
msgid "is not an error code"
-msgstr ""
+msgstr "nije kȏd greške"
#. pqqqU
#: sc/inc/globstr.hrc:470
msgctxt "STR_COND_BEGINS_WITH"
msgid "begins with"
-msgstr ""
+msgstr "počinje s"
#. atMkM
#: sc/inc/globstr.hrc:471
msgctxt "STR_COND_ENDS_WITH"
msgid "ends with"
-msgstr ""
+msgstr "završava s"
#. 96Aos
#: sc/inc/globstr.hrc:472
msgctxt "STR_COND_CONTAINS"
msgid "contains"
-msgstr ""
+msgstr "sadržava"
#. X5K9F
#: sc/inc/globstr.hrc:473
msgctxt "STR_COND_NOT_CONTAINS"
msgid "does not contain"
-msgstr ""
+msgstr "ne sadržava"
#. GvCEB
#: sc/inc/globstr.hrc:474
@@ -3133,55 +3133,55 @@ msgstr ""
#: sc/inc/globstr.hrc:533
msgctxt "STR_SHRINKTOFITCELL_ON"
msgid "Shrink to fit cell: On"
-msgstr ""
+msgstr "Smanji na dimeziju ćelije: uključeno"
#. smuAM
#: sc/inc/globstr.hrc:534
msgctxt "STR_SHRINKTOFITCELL_OFF"
msgid "Shrink to fit cell: Off"
-msgstr ""
+msgstr "Smanji na dimeziju ćelije: isključeno"
#. QxyGF
#: sc/inc/globstr.hrc:535
msgctxt "STR_VERTICALSTACKCELL_ON"
msgid "Vertically stacked: On"
-msgstr ""
+msgstr "Okomito složeno: uključeno"
#. 2x976
#: sc/inc/globstr.hrc:536
msgctxt "STR_VERTICALSTACKCELL_OFF"
msgid "Vertically stacked: Off"
-msgstr ""
+msgstr "Okomito složeno: isključeno"
#. uxnQA
#: sc/inc/globstr.hrc:537
msgctxt "STR_LINEBREAKCELL_ON"
msgid "Wrap text automatically: On"
-msgstr ""
+msgstr "Prelomi tekst automatski: uključeno"
#. tPYPJ
#: sc/inc/globstr.hrc:538
msgctxt "STR_LINEBREAKCELL_OFF"
msgid "Wrap text automatically: Off"
-msgstr ""
+msgstr "Prelomi tekst automatski: isključeno"
#. LVJeJ
#: sc/inc/globstr.hrc:539
msgctxt "STR_HYPHENATECELL_ON"
msgid "Hyphenate: On"
-msgstr ""
+msgstr "Rastavljanje riječi: uključeno"
#. kXiLH
#: sc/inc/globstr.hrc:540
msgctxt "STR_HYPHENATECELL_OFF"
msgid "Hyphenate: Off"
-msgstr ""
+msgstr "Rastavljanje riječi: isključeno"
#. 5Vr2B
#: sc/inc/globstr.hrc:541
msgctxt "STR_INDENTCELL"
msgid "Indent: "
-msgstr ""
+msgstr "Uvlaka: "
#. dB8cp
#: sc/inc/pvfundlg.hrc:27
@@ -16409,13 +16409,13 @@ msgstr "U slučaju, da je Polar=TRUE, frekvencijske komponente ispod te veličin
#: sc/inc/scfuncs.hrc:4140
msgctxt "SC_OPCODE_RANDOM_NV"
msgid "Returns a random number between 0 and 1, non-volatile."
-msgstr ""
+msgstr "Vraća slučajni broj između 0 i 1, nepromjenjiv."
#. op2W5
#: sc/inc/scfuncs.hrc:4146
msgctxt "SC_OPCODE_RANDBETWEEN_NV"
msgid "Returns a random integer between the numbers you specify, non-volatile."
-msgstr ""
+msgstr "Vraća nasumični cijeli broj između određenih brojeva, nepromjenjiv."
#. o3i8h
#: sc/inc/scfuncs.hrc:4147
@@ -25410,7 +25410,7 @@ msgstr "_Pogled"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7940
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
-msgstr "D_raw"
+msgstr "C_rtaj"
#. QNg9L
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8309
@@ -28628,38 +28628,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Koristi metriku pisača za oblikovanje teksta"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Istakni označavanja u zaglavljima stup_ca/retka"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Ažuriraj reference prilikom razvrstavanja raspona ćelija"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Postavke unosa"
@@ -28746,7 +28752,7 @@ msgstr "Sql"
#: sc/uiconfig/scalc/ui/selectdatasource.ui:150
msgctxt "selectdatasource|type"
msgid "Sql [Native]"
-msgstr "Sql [Native]"
+msgstr "Sql [izvorni]"
#. jZRBA
#: sc/uiconfig/scalc/ui/selectdatasource.ui:154
diff --git a/source/hr/sd/messages.po b/source/hr/sd/messages.po
index ce643d60916..0b18ecdd239 100644
--- a/source/hr/sd/messages.po
+++ b/source/hr/sd/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-07-15 13:16+0000\n"
+"PO-Revision-Date: 2020-11-19 20:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/hr/>\n"
"Language: hr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1563403648.000000\n"
#. WDjkB
@@ -1120,9 +1120,9 @@ msgstr "Prezentiranje: %s"
msgctxt "STR_SLIDES"
msgid "%1 slide"
msgid_plural "%1 slides"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] "%1 slajd"
+msgstr[1] "%1 slajda"
+msgstr[2] "%1 slajdova"
#. DhF9g
#. Strings for animation effects
@@ -1135,7 +1135,7 @@ msgstr "Umetni tekst"
#: sd/inc/strings.hrc:159
msgctxt "STR_LOAD_PRESENTATION_LAYOUT"
msgid "Load Master Slide"
-msgstr "Učitavanje nadzornoga slajda"
+msgstr "Učitaj nadzorni slajd"
#. HxEp8
#: sd/inc/strings.hrc:160
@@ -1159,13 +1159,13 @@ msgstr "Desno"
#: sd/inc/strings.hrc:163
msgctxt "STR_GLUE_ESCDIR_TOP"
msgid "Top"
-msgstr "Vrh"
+msgstr "Gore"
#. VP34S
#: sd/inc/strings.hrc:164
msgctxt "STR_GLUE_ESCDIR_BOTTOM"
msgid "Bottom"
-msgstr "Dno"
+msgstr "Dolje"
#. bVVKo
#: sd/inc/strings.hrc:165
@@ -4247,7 +4247,7 @@ msgstr "_Tablica"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6656
msgctxt "draw_notebookbar_groupedbar_compact|calculatet"
msgid "_Calc"
-msgstr "_Calc"
+msgstr "Raču_nanje"
#. 5GKtj
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6930
@@ -5259,7 +5259,7 @@ msgstr "_Vrati na početak nakon završenog prikazivanja"
#: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:184
msgctxt "customanimationtimingtab|label11"
msgid "Timing"
-msgstr "Timing"
+msgstr "Postavljanje vremena"
#. CwXRW
#: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:217
@@ -6905,7 +6905,7 @@ msgstr "Sli~ka"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14012
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
-msgstr "D_raw"
+msgstr "C_rtanje"
#. 78DU3
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14064
@@ -7033,7 +7033,7 @@ msgstr "S_lajd"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12751
msgctxt "notebookbar_groupedbar_compact|draw"
msgid "D_raw"
-msgstr "D_raw"
+msgstr "C_rtanje"
#. GYqWX
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3936
@@ -7100,7 +7100,7 @@ msgstr "_Tablica"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6712
msgctxt "notebookbar_groupedbar_compact|calculatet"
msgid "_Calc"
-msgstr "_Calc"
+msgstr "Raču_nanje"
#. DC7Hv
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6986
@@ -7244,13 +7244,13 @@ msgstr "Umetn_i"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4284
msgctxt "notebookbar_groupedbar_full|draw"
msgid "D_raw"
-msgstr "D_raw"
+msgstr "C_rtaj"
#. gQQfL
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4472
msgctxt "notebookbar_groupedbar_full|reviewb"
msgid "_Review"
-msgstr "_Provjera"
+msgstr "_Provjeri"
#. BHDdD
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4622
@@ -7328,13 +7328,13 @@ msgstr "_Redci"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7506
msgctxt "notebookbar_groupedbar_full|calculatet"
msgid "_Calc"
-msgstr "_Calc"
+msgstr "Raču_nanje"
#. WfzeY
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7846
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
-msgstr "D_raw"
+msgstr "C_rtaj"
#. QNg9L
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8141
@@ -7414,7 +7414,7 @@ msgstr "Umetn_i"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12219
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
-msgstr "D_raw"
+msgstr "C_rtaj"
#. tcCdm
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12715
@@ -9040,13 +9040,13 @@ msgstr "Poza_dina"
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1890
msgctxt "publishingdialog|selectColorLabel"
msgid "Select Color Scheme"
-msgstr "Odaberite shemu boja"
+msgstr "Odaberi shemu boja"
#. CAzyf
#: sd/uiconfig/simpress/ui/remotedialog.ui:8
msgctxt "remotedialog|RemoteDialog"
msgid "Impress Remote"
-msgstr "Impress Remote"
+msgstr "Udaljeni Impress"
#. pEkbh
#: sd/uiconfig/simpress/ui/remotedialog.ui:144
diff --git a/source/hr/sfx2/messages.po b/source/hr/sfx2/messages.po
index 9a30ead33dc..8020d465aae 100644
--- a/source/hr/sfx2/messages.po
+++ b/source/hr/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-03-15 18:15+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/hr/>\n"
@@ -1652,286 +1652,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Zatvori ploču"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Prikvači"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Otkvači"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Više mogućnosti"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Zatvori bočnu traku"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Postavke bočne trake"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Prilagodba"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Vrati zadano"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Zatvori bočnu traku"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Košnica"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Plava krivulja"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Tlocrt"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Svjetloplava"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Elegantno crveno"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Šumska ptica"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impresivno"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiracija"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Svjetla"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Intenzivno zeleno"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropola"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Ponoćnoplava"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Ilustracije prirode"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Olovka"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klavir"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfelj"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Napredak"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Zalazak sunca"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Neka prošla vremena"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Živahno"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Rezime"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Uobičajeno"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderno"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderno poslovno pismo u sans-serifu"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderno poslovno pismo u serifu"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Posjetnica s logom"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Ukloni"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Očisti sve"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Dužina zaporke"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Lozinka koju ste unijeli uzrokuje probleme interoperabilnosti. Unesite zaporku kraću od 52 bajta ili duža od 55 bajta."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-pritisak za otvaranje hiperpoveznice: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Pritisni za otvaranje poveznice: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(koristi se od: %STYLELIST)"
@@ -4153,6 +4117,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Obriši..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/hr/starmath/messages.po b/source/hr/starmath/messages.po
index 5334ef65ca8..5dbc3d94159 100644
--- a/source/hr/starmath/messages.po
+++ b/source/hr/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-03-14 17:16+0000\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"PO-Revision-Date: 2020-11-18 15:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/hr/>\n"
"Language: hr\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "ili"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+ znak"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "- znak"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+- znak"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "-+ znak"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Booleova operacija NE"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Zbrajanje +"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Oduzimanje -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Množenje (točka)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Množenje (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Množenje (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Dijeljenje (kosa crta)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Dijeljenje (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Dijeljenje (razlomak)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Kosa crta u krugu"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Točka u krugu"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Minus u krugu"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Plus u krugu"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Tenzorski umnožak"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Booleova operacija I"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Booleova operacija ILI"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Je točno"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Nije jednako"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Je manje od"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Je veće od"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Manje je ili jednako"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Veće je ili jednako"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Manje je ili jednako"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Veće je ili jednako"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Je puno manje od"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Je puno veće od"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Definirano je kao"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Je kongruentno s"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Je otprilike"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Je slično s"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Slično je ili jednako"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Je proporcionalno sa"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Je ortogonalno prema"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Je paralelno sa"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Prema"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Odgovara (lijevo)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Odgovara (desno)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Je u"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Nije u"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Je vlasnik"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Unija"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Sjecište"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Razlika"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Podskup"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Podskup ili jednako"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Nadskup"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Nadskup ili jednak"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Nije podskup"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Nije podskup ili jednak"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Nije nadskup"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Nije podskup ili jednako"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Apsolutna vrijednost"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Faktorijelno"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Korijen"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N-ti korijen"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Eksponencijalna funkcija"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Eksponencijalna funkcija"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Prirodni logaritam"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logaritam"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sinus"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Kosinus"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangenta"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Kotangens"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arkus sinus"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arkus kosinus"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arkus tangens"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arkus kotangens"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Hiperbolni sinus"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Hiperbolni kosinus"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Hiperbolni tangens"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Hiperbolni kotangens"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Hiperbolni sinus područja"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Hiperbolni kosinus područja"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Hiperbolni tangens područja"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Hiperbolni kotangens područja"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Zbroj"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Indeks zbroja"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Eksponent zbroja"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Eksponent/Indeks zbroja"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Umnožak"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Indeks umnoška"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Eksponent umnoška"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Eksponent/Indeks umnoška"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Nusproizvod"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Indeks coprodukta"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Eksponent coprodukta"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Eksponent/Indeks coprodukta"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Limes"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Indeks limesa"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Eksponent limesa"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Eksponent/Indeks limesa"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Donja granica"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Limes inferior prikazan kao indeks"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Limes inferior prikazan kao eksponent"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Limes inferior eksponent/indeks"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Limes superior"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Limes superior prikazan kao indeks"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Limes superior prikazan kao eksponent"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Limes superior eksponent/indeks"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Postoji"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Ne postoji"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Za sve"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integral"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Indeks integrala"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Eksponent integrala"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Eksponent/Indeks integrala"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Dvostruki integral"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Indeks dvostrukog integrala"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Eksponent dvostrukog integrala"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Eksponent/Indeks dvostrukog integrala"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Trostruki integral"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Indeks trostrukog integrala"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Eksponent trostrukog integrala"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Eksponent/Indeks trostrukog integrala"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Integral krivulje"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Indeks krivuljnog integrala"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Eksponent krivuljnog integrala"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Eksponent/Indeks krivuljnog integrala"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Dvostruki integral krivulje"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Indeks dvostrukog krivuljnog integrala"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Eksponent dvostrukog krivuljnog integrala"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Eksponent/Indeks dvostrukog krivuljnog integrala"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Trostruki krivuljni integral"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Indeks trostrukog krivuljnog integrala"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Eksponent trostrukog krivuljnog integrala"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Eksponent/Indeks trostrukog krivuljnog integrala"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
-msgstr "Oštar naglasak"
+msgstr "Akut naglasak"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Linija iznad"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Breve"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
-msgstr "Obrnuti prijeglas"
+msgstr "Obrnuti cirkumfleks"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Krug"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Točka"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Dvostruka točka"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Trostruka točka"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Jako naglašeno"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
-msgstr "Prijeglas"
+msgstr "Cirkumfleks"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tilda"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Vektorska strelica"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Harpun"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Linija ispod"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Linija iznad"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Linija kroz"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
-msgstr "Prozirnost"
+msgstr "Prozirno"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Podebljani font"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Kurzivni font"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
-msgstr "Promjena veličine"
+msgstr "Promijeni veličinu"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Promijeni font"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Crna boja"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Plava boja"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Zelena boja"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Crvena boja"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
-msgstr "Boja siva"
+msgstr "Siva boja"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
-msgstr "Boja limeta"
+msgstr "Limeta boja"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
-msgstr "Boja kestenjasta"
+msgstr "Kestenjasta boja"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
-msgstr "Boja mornarska"
+msgstr "Tamnoplava boja"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
-msgstr "Boja maslinasta"
+msgstr "Maslinasta boja"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
-msgstr "Boja ljubičasta"
+msgstr "Ljubičasta boja"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
-msgstr "Boja srebrna"
+msgstr "Srebrna boja"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
-msgstr "Boja tirkizna"
+msgstr "Tirkizna boja"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Žuta boja"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
-msgstr ""
+msgstr "RGB boja"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
+msgstr ""
+
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Grupiranje zagrada"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Okrugle zagrade"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Uglate zagrade"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Dvostruke uglate zagrade"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Vitičaste zagrade"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Šiljaste zagrade"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Stropne"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Podne"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Pojedine linije"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Dvostruke linije"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Zagrade operatora"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Zagrade (skalabilne)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Uglate zagrade (skalabilne)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Dvostruke uglate zagrade (skalabilne)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Vitičaste zagrade (skalabilne)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Šiljaste zagrade (skalabilne)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Stropne (skalabilne)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Podne (skalabilne)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Jednostruke linije (skalabilne)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Dvostruke linije (skalabilne)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Zagrade operatora (skalabilne)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Procjenjeno na"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Gornji dio vitičaste zagrade (skalabilno)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Donji dio vitičaste zagrade (skalabilno)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Indeks desno"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Eksponent"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Indeks lijevo"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Eksponent lijevo"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Indeks dolje"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Eksponent gore"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Mali razmak"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Prazno"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Nova linija"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Okomito naslaganje (2 elementa)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Okomito naslaganje"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Skup matrica"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Poravnaj ulijevo"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Poravnaj centrirano"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Poravnaj udesno"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
-msgstr "Aleph"
+msgstr "Alef"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Prazni skup"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Realni dio"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Imaginarni dio"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Beskonačnost"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Djelomično"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Točke u sredini"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Točke prema gore"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Točke prema dolje"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Točke dolje"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Točke okomito"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Nadodavanje"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Dijeljenje (kosa crta)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Dijeljenje (obrnuta kosa crta)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Dijeli"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Ne dijeli se"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Dvostruka strelica lijevo"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Dvostruka strelica lijevo i desno"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Dvostruka strelica desno"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Skup prirodnih brojeva"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Skup cijelih brojeva"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Postavi razlomke"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Skup realnih brojeva"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Skup kompleksnih brojeva"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Veliki prijeglas"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Velika tilda"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Velika vektorska strelica"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Veliki harpun"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h traka"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda traka"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Strelica ulijevo"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Strelica udesno"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Strelica gore"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Strelica dolje"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Bez razmaka"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Prethodi"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Prethodi ili je jednak"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Prethodi ili je ekvivalent"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Naslijeđuje"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Naslijeđuje ili je jednak"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Naslijeđuje ili je ekvivalent"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Ne prethodi"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Ne naslijeđuje"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Unarni/binarni operatori"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Relacije"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Postavi operacije"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funkcije"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operatori"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Svojstva"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Zagrade"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Oblikovanja"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Ostalo"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Primjeri"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Opseg"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Ekvivalent mase i energije"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Pitagorin poučak"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Gaussova distribucija"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standardno"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kurziv"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Podebljano"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "crni"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "plava"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "zelena"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "crvena"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "siva"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "limeta"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "kestenjasta"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "mornarska"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "maslinasta"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "ljubičasta"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "srebrna"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "tirkizna"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "žuta"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
-msgstr ""
+msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "sakrij"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "veličina"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "font"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "lijevo"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centrirano"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "desno"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Naredbe"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formula"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Spremanje dokumenta …"
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Formula"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "GREŠKA : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Neočekivani znak"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Neočekivani token"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' očekivano"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' očekivano"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' očekivano"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' očekivano"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Nepodudaranje lijevih i desnih simbola"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "očekuje se 'fiksno', 'sans' ili 'serif'"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'veličina' praćena neočekivanim tokenom"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Dvostruko poravnanje nije dopušteno"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Dvostruki indeks/eksponent nije dozvoljen"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' očekivano"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Boja je nužna"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'DESNO' očekivano"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Sadržaj"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Naslov"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Tekst formule"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "~Obrub"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Veličina"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "~Izvorna veličina"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~Prilagodi stranici"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skaliranje"
diff --git a/source/hr/svtools/messages.po b/source/hr/svtools/messages.po
index 603c9d51cb9..b5204ab3924 100644
--- a/source/hr/svtools/messages.po
+++ b/source/hr/svtools/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-03-14 17:16+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-18 15:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/hr/>\n"
"Language: hr\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Vrati: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Ponovi: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Ponovi: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Neoblikovani tekst"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Neoblikovani tekst (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bitmapna slika (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Metadatoteka sučelja grafičkoga uređaja (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Dokument s formatiranim tekstom (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Dokument s formatiranim tekstom (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME crtežni format"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView bitmapa/animacija (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Info stanje od Svx interne veze"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME poveznica (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscapeova zabilješka"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Format Star poslužitelja"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Format Star objekta"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet objekt"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Objekt priključka"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 objekt"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 objekt"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 objekt"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 objekt"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 objekt"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Nadzorni objekt 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Nadzorni objekt 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw objekt"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 objekt"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 objekt"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 objekt"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc objekt"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 objekt"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 objekt"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart objekt"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 objekt"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 objekt"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage objekt"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 objekt"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 objekt"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath objekt"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 objekt"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 objekt"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint objekt"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText jezik označivanja (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Pročišćen HyperText Markup Language (Jednostavan HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel binarni datotečni format razmjene podataka 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel binarni datotečni format razmjene podataka 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Svila"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dinamička razmjena podataka (DDE poveznica)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Datotečni format razmjene podataka (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word objekt"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet objekt"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office dokument objekt"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes dokument info"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx dokument"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 objekt"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Grafički objekt"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer objekt"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web objekt"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Nadzorni objekt"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw objekt"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress objekt"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc objekt"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart objekt"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math objekt"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows metadatoteka"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Objekt izvor podataka"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Izvor podataka - tablica"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL upit"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 dijaloški okvir"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Veza"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML oblik bez komentara"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Grafika za prenošenje mrežom (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objekt % nije bilo moguće umetnuti."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objekt iz datoteke % nije bilo moguće umetnuti."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Daljnji objekti"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Nepoznati izvor"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bajtova"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1234 +501,1234 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerički"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Obično"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Skup slovnih znakova"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Rječnik"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Potez kistom"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonski imenik"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetski (alfanumerički prvo)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetski (alfanumerički zadnje)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerički"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Rječnik"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Potez kistom"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetski (alfanumerički prvo, grupirano prema slogovima)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetski (alfanumerički prvo, grupirano prema suglasnicima)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetski (alfanumerički na kraju, grupirano prema slogovima)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetski (alfanumerički prvo, grupirano prema suglasnicima)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Svjetli"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Svijetli kurziv"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normalni"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kurziv"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Podebljano"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Debeli kurziv"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Crni"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Crni kurziv"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Book"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Podebljano nakošeno"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Uski"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Uski debeli"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Uski debeli kurziv"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Uski debeli nakošeni"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Uski kurziv"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Uski nakošeni"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Jako-svijetli"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Jako-svijetli kurziv"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Nakošeno"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Djelomično podebljano"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Polu-debeli kurziv"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Isti font će biti korišten na vašem pisaču i zaslonu."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Ovo je font za ispis. Slika na zaslonu može odstupati."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Ovaj stil fonta bit će simuliran ili će biti korišten najbliži odgovarajući stil."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Ovaj font nije instaliran. Koristit će se najbliži odgovarajući font."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Pomakni na početak"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Pomakni lijevo"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Pomakni desno"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Pomakni na kraj"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Dodaj"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Vodoravno ravnalo"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Okomito ravnalo"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "granica od 1 bita"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bit podrhtavanje"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 bita sivi tonovi"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 bita boja"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 bita sivi tonovi"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 bita boja"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 bit stvarne boje"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Slika treba otprilike %1 KB memorije."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Slika treba otprilike %1 KB memorije, veličina datoteke iznosi %2 KB."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Veličina datoteke je %1 KB."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "poslužitelj"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Drugi CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Spremno"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Pauzirano"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Čeka se brisanje"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Zauzeto"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Inicijalizacija"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Čekanje"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Zagrijavanje"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "U radu"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Ispisujem"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Neumreženo"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Greška"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Nepoznati poslužitelj"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Zastoj papira"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Nema dovoljno papira"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Ručno punjenje"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problem s papirom"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "U/I aktivno"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Izlazni prostor pun"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Toner pri kraju"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Nema tonera"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Obriši stranicu"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Potrebno je korisnikova intervencija"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Nema dovoljno memorije"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Omotnica otvorena"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Štednja energije"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Zadani pisač"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumenti"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ništa>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Tvrtka"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Odjel"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Ime"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Prezime"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Ulica"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Zemlja"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Poštanski broj"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Grad"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Naslov"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Položaj"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Adresni obrazac"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Inicijali"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Završni pozdrav"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel: kućni"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel: posao"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Faks"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-pošta"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Zabilješka"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Korisnik 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Korisnik 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Korisnik 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Korisnik 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Država"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel: ured"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Dojavljivač"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobilni"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel: ostalo"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalendar"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Pozovi"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$ $service$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr ""
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME postava je promijenjena. Pod %PRODUCTNAME - Mogućnosti - %PRODUCTNAME - Napredno, odaberite Java izvedbeno okruženje koje želite da %PRODUCTNAME koristi."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME postava je promijenjena. Pod Alati - Mogućnosti - %PRODUCTNAME - Napredno, odaberite Java izvedbeno okruženje koje želite da %PRODUCTNAME koristi."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "Potrebno je Java izvedbeno okruženje (JRE) kako bi %PRODUCTNAME izveo ovaj zadatak. Odabrano JRE je neispravno. Odaberite drugu inačicu ili instalirajte novo JRE i odaberite ga kroz %PRODUCTNAME - Mogućnosti - %PRODUCTNAME - Napredno."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "Potrebno je Java izvedbeno okruženje (JRE) kako bi %PRODUCTNAME izveo ovaj zadatak. Odabrano JRE je neispravno. Odaberite drugu inačicu ili instalirajte novo JRE i odaberite ga kroz Alati - Mogućnosti - %PRODUCTNAME - Napredno."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE nužan"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Odaberi JRE"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE je neispravan"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Izvorni kȏd"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Datoteka zabilješki"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafika"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Datoteka s postavkama"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Program"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tablica baze podataka"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Sustavska datoteka"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word dokument"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Datoteka pomoći"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML dokument"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Arhivirana datoteka"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Dnevnik"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOfficea baza podataka"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 Nadzorni dokument"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOfficea slika"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekstna datoteka"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Veza"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOfficea 3.0 - 5.0 predložak"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel dokument"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel predložak"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batch datoteka"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Datoteka"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Mapa"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tekstni dokument"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Proračunska tablica"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Prezentacija"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Crtež"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML dokument"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Nadzorni dokument"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formula"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Baza podataka"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 predložak proračunske tablice"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 predložak crteža"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 predložak prezentacije"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 predložak tekst dokumenta"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Lokalni uređaj"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Disk uređaj"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM uređaj"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Mrežna veza"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint dokument"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint predložak"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint prikaz"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 formula"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 grafikon"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 crtež"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 proračunska tablica"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 prezentacija"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 tekst dokument"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 nadzorni dokument"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML dokument"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument baza podataka"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument crtež"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument formula"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument nadzorni dokument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument prezentacija"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument proračunska tablica"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument tekst"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument predložak proračunske tablice"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument predložak crteža"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument predložak prezentacije"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument predložak teksta"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Dodatak za %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Računalna provjera pravopisa Hunspellom"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Rastavljanje na slogove Libhyphenom"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes tezaurus"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Popis zanemarenih riječi"
@@ -4439,7 +4439,7 @@ msgstr "Nenets jezik"
#: svtools/inc/langtab.hrc:353
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aka (Central African Republic)"
-msgstr ""
+msgstr "Aka (Centralnoafrička Republika)"
#. oBDBe
#: svtools/inc/langtab.hrc:354
@@ -4487,7 +4487,7 @@ msgstr "Ngungwel jezik"
#: svtools/inc/langtab.hrc:361
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Njyem (Congo)"
-msgstr "Njyem (Kongo) jezik"
+msgstr "Njyem (Kongo)"
#. G2SG8
#: svtools/inc/langtab.hrc:362
@@ -4517,13 +4517,13 @@ msgstr "Tsaangi"
#: svtools/inc/langtab.hrc:366
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yaka (Congo)"
-msgstr ""
+msgstr "Yaka (Kongo)"
#. JuMFF
#: svtools/inc/langtab.hrc:367
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yaka (Democratic Republic of the Congo)"
-msgstr ""
+msgstr "Yaka (Demokratska Republika Kongo)"
#. NDjGL
#: svtools/inc/langtab.hrc:368
@@ -4691,7 +4691,7 @@ msgstr "Engleski (Gambija)"
#: svtools/inc/langtab.hrc:395
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aranese"
-msgstr "Aranese"
+msgstr "Araneski"
#. TaEzQ
#: svtools/inc/langtab.hrc:396
@@ -5351,7 +5351,7 @@ msgstr "%PRODUCTNAME zahtjeva Java izvedbeno okruženje (JRE) kako bi izvršio o
#: svtools/uiconfig/ui/linewindow.ui:17
msgctxt "linewindow|none_line_button"
msgid "None"
-msgstr ""
+msgstr "Ništa"
#. LwyoW
#: svtools/uiconfig/ui/placeedit.ui:18
diff --git a/source/hr/svx/messages.po b/source/hr/svx/messages.po
index 8ffdc01d02a..2c8297c574f 100644
--- a/source/hr/svx/messages.po
+++ b/source/hr/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-07-15 13:16+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-19 20:36+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/hr/>\n"
"Language: hr\n"
@@ -7631,7 +7631,7 @@ msgstr "$(WIDTH) × $(HEIGHT) ($(WIDTH_IN_PX) × $(HEIGHT_IN_PX) px)"
#: include/svx/strings.hrc:1371
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
-msgstr "$(WIDTH) x $(HEIGHT) na $(DPI) DPI"
+msgstr "$(WIDTH) × $(HEIGHT) pri $(DPI) DPI"
#. n8VBe
#: include/svx/strings.hrc:1372
@@ -16332,11 +16332,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "_Zamjenski znakovi"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_Komentari"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/hr/sw/messages.po b/source/hr/sw/messages.po
index 258740ba7cb..d8ed93ab14f 100644
--- a/source/hr/sw/messages.po
+++ b/source/hr/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-03-15 18:15+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-19 20:36+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/hr/>\n"
"Language: hr\n"
@@ -10365,7 +10365,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:309
msgctxt "authenticationsettingsdialog|port_label"
msgid "P_ort:"
-msgstr "P_ort:"
+msgstr "P_riključak:"
#. RjbdV
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:324
@@ -17445,86 +17445,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Općenito"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "Za_glavlje"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "_Ponovi naslovne retke na novim stranicama"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Ne rastavljaj tablicu na više _stranica"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "N_aslovni redci:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Mogućnosti"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Stilovi"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20038,289 +20044,289 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Uključ/Isključi glavni pogled"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Izmjena glavnog i normalnog pogleda ako je otvoren glavni dokument."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Pogled navigacije sadržajem"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Zaglavlje"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Podnožje"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Sidro<–>Tekst"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Postavi podsjetnik"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Kliknite ovdje kako biste postavili podsjetnik na sadašnje mjesto pokazivača miša. Možete postavaiti do pet podsjetnika. Kako biste otišli na podsjetnik, odaberite ikonu Navigacije u navigacijskom prozoru te odaberite ikonu Podsjetnik, a zatim odaberite Prethodno ili Sljedeće."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Prikazane razine naslova"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Uključi/Isključi okvir s popisom"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Promocija razine"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Degradiraj razinu"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Unaprijedi poglavlje"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Degradiraj poglavlje"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Povlačenje kao način rada"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Dokument"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Aktivni prozor"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Uključ/Isključi glavni pogled"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Izmjena glavnog i normalnog pogleda ako je otvoren glavni dokument."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Uređivanje"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Ažuriranje"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Umetanje"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Spremi i sadržaj"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Premjesti gore"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Premjesti dolje"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
diff --git a/source/hr/xmlsecurity/messages.po b/source/hr/xmlsecurity/messages.po
index 7aee3ccc05a..39175f8f21e 100644
--- a/source/hr/xmlsecurity/messages.po
+++ b/source/hr/xmlsecurity/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:44+0100\n"
-"PO-Revision-Date: 2020-01-07 12:09+0000\n"
+"PO-Revision-Date: 2020-11-19 20:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/xmlsecuritymessages/hr/>\n"
"Language: hr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1563304702.000000\n"
#. EyJrF
@@ -472,13 +472,13 @@ msgstr "Potpisi ovog dokumenta nisu važeći"
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:426
msgctxt "digitalsignaturesdialog|oldsignatureft"
msgid "At least one signature has problems: the document is only partially signed."
-msgstr ""
+msgstr "Barem jedan potpis nije u redu: dokument je samo djelomično potpisan."
#. wn85z
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:439
msgctxt "digitalsignaturesdialog|notvalidatedft"
msgid "At least one signature has problems: the certificate could not be validated."
-msgstr ""
+msgstr "Barem jedan potpis nije u redu: nije bilo moguće provjeriti certifikat."
#. DFTZB
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:488
diff --git a/source/hsb/chart2/messages.po b/source/hsb/chart2/messages.po
index 065bc80975f..a98d884b2c4 100644
--- a/source/hsb/chart2/messages.po
+++ b/source/hsb/chart2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-15 23:35+0000\n"
+"PO-Revision-Date: 2020-11-17 20:36+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/chart2messages/hsb/>\n"
"Language: hsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1547328704.000000\n"
#. NCRDD
@@ -1608,7 +1608,7 @@ msgstr "_Celowy wobłuk"
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:258
msgctxt "dlg_InsertErrorBars|extended_tip|RB_RANGE"
msgid "Click Cell Range and then specify a cell range from which to take the positive and negative error bar values."
-msgstr ""
+msgstr "Klikńće na Celowy wobłuk a podajće potom celowy wobłuk, z kotrehož so maja pozitiwne a negatiwne hódnoty zmylkoweje hrjady wuličić."
#. vdvVR
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:276
@@ -1626,7 +1626,7 @@ msgstr "Pozitiwny _a negatiwny"
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:319
msgctxt "dlg_InsertErrorBars|extended_tip|RB_BOTH"
msgid "Shows positive and negative error bars."
-msgstr ""
+msgstr "Pokazuje pozitiwne a negatiwne zmylkowe hrjady."
#. jJw8Y
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:330
@@ -1638,7 +1638,7 @@ msgstr "Poz_itiwny"
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:340
msgctxt "dlg_InsertErrorBars|extended_tip|RB_POSITIVE"
msgid "Shows only positive error bars."
-msgstr ""
+msgstr "Pokazuje jenož pozitiwne zmylkowe hrjady."
#. 6YgbM
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:351
@@ -1650,7 +1650,7 @@ msgstr "N_egatiwny"
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:361
msgctxt "dlg_InsertErrorBars|extended_tip|RB_NEGATIVE"
msgid "Shows only negative error bars."
-msgstr ""
+msgstr "Pokazuje jenož negatiwne zmylkowe hrjady."
#. fkKQH
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:411
@@ -1668,13 +1668,13 @@ msgstr "P_ozitiwny (+)"
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:477
msgctxt "dlg_InsertErrorBars|extended_tip|MF_POSITIVE"
msgid "Enter the value to add to the displayed value as the positive error value."
-msgstr ""
+msgstr "Zapodajće hódnotu, kotraž so ma pokazanej hódnoće jako pozitiwna zmylkowa hódnota přidać."
#. SUBEs
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:495
msgctxt "dlg_InsertErrorBars|extended_tip|ED_RANGE_POSITIVE"
msgid "Enter the address range from where to get the positive error values. Use the Shrink button to select the range from a sheet."
-msgstr ""
+msgstr "Zapodajće adresowy wobłuk, z kotrehož chceće pozitiwne zmylkowe hódnoty dóstać. Wužiwajće tłóčatko Pomjeńšić, zo byšće wobłuk z tabele wubrał."
#. 5FfdH
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:510
@@ -1686,7 +1686,7 @@ msgstr "Datowy wobłuk wubrać"
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:514
msgctxt "dlg_InsertErrorBars|extended_tip|IB_RANGE_POSITIVE"
msgid "Click a button to shrink the dialog, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialog to full size."
-msgstr ""
+msgstr "Klikńće na tłóčatko, zo byšće dialog pomjeńšił, wužiwajće potom myšku, zo byšće celowy wobłuk w tabelowym dokumenće wubrał. Klikńće hišće raz na tłóčatko, zo byšće połnu wulkosć dialoga wobnowił."
#. K9wAk
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:540
@@ -1698,13 +1698,13 @@ msgstr "_Negatiwny (-)"
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:558
msgctxt "dlg_InsertErrorBars|extended_tip|MF_NEGATIVE"
msgid "Enter the value to subtract from the displayed value as the negative error value."
-msgstr ""
+msgstr "Zapodajće hódnotu, kotraž so ma wot pokazaneje hódnoty subtrahować, jako negatiwnu zmylkowu hódnotu."
#. DTR5D
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:576
msgctxt "dlg_InsertErrorBars|extended_tip|ED_RANGE_NEGATIVE"
msgid "Enter the address range from where to get the negative error values. Use the Shrink button to select the range from a sheet."
-msgstr ""
+msgstr "Zapodajće adresowy wobłuk, z kotrehož chceće negatiwne zmylkowe hódnoty dóstać. Wužiwajće tłóčatko Pomjeńšić, zo byšće wobłuk z tabele wubrał."
#. jsckc
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:591
@@ -1716,7 +1716,7 @@ msgstr "Datowy wobłuk wubrać"
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:595
msgctxt "dlg_InsertErrorBars|extended_tip|IB_RANGE_NEGATIVE"
msgid "Click a button to shrink the dialog, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialog to full size."
-msgstr ""
+msgstr "Klikńće na tłóčatko, zo byšće dialog pomjeńšił, wužiwajće potom myšku, zo byšće celowy wobłuk w tabelowym dokumenće wubrał. Klikńće hišće raz na tłóčatko, zo byšće połnu wulkosć dialoga wobnowił."
#. GZS6d
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:614
diff --git a/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po
index 82b9e7f69a2..7bfd469da8c 100644
--- a/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hsb/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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-11-04 20:47+0000\n"
+"PO-Revision-Date: 2020-11-17 20:36+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/hsb/>\n"
"Language: hsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1565003053.000000\n"
#. W5ukN
@@ -13574,7 +13574,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Regular Triangle"
-msgstr ""
+msgstr "Prawidłowny třiróžk"
#. BUJ28
#: Effects.xcu
@@ -29886,7 +29886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show ~Tracked Changes"
-msgstr ""
+msgstr "~Slědowane změny pokazać"
#. sMgCx
#: WriterCommands.xcu
diff --git a/source/hsb/sc/messages.po b/source/hsb/sc/messages.po
index c2ad0330573..965c3317b02 100644
--- a/source/hsb/sc/messages.po
+++ b/source/hsb/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-07-24 04:35+0000\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
+"PO-Revision-Date: 2020-11-18 15:35+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/hsb/>\n"
"Language: hsb\n"
@@ -1473,7 +1473,7 @@ msgstr "Dif-import"
#: sc/inc/globstr.hrc:272
msgctxt "STR_STYLENAME_STANDARD"
msgid "Default"
-msgstr ""
+msgstr "Standard"
#. TG9pD
#: sc/inc/globstr.hrc:273
@@ -28632,38 +28632,44 @@ msgctxt "extended_tip|replwarncb"
msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
msgstr ""
-#. LFenu
+#. H477x
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:375
+msgctxt "scgeneralpage|enter_paste_mode_cb"
+msgid "Press Enter to paste and clear clipboard"
+msgstr ""
+
+#. LFenu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:391
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Ćišćersku metriku za tekstowe formatowanje wužiwać"
#. ECUd7
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:383
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:399
msgctxt "extended_tip|textfmtcb"
msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
msgstr ""
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:395
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:411
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "W_uběr w hłowach špaltow/linkow wuzběhnyć"
#. payBv
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:404
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:420
msgctxt "extended_tip|markhdrcb"
msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
msgstr ""
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:416
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:432
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Poćahi při sortěrowanju celowych wobłukow aktualizować"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:437
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:453
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Zapodawanske nastajenja"
diff --git a/source/hsb/sfx2/messages.po b/source/hsb/sfx2/messages.po
index 6fb4cc84fde..2222c9b1d20 100644
--- a/source/hsb/sfx2/messages.po
+++ b/source/hsb/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
"PO-Revision-Date: 2020-10-29 14:35+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/hsb/>\n"
@@ -1655,286 +1655,250 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Wokno začinić"
-#. eprKp
-#: include/sfx2/strings.hrc:297
-msgctxt "STR_SFX_DOCK"
-msgid "Dock"
-msgstr "Přidokować"
-
-#. xE8Tq
-#: include/sfx2/strings.hrc:298
-msgctxt "STR_SFX_UNDOCK"
-msgid "Undock"
-msgstr "Wotdokować"
-
#. fDc7q
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:298
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Dalše nastajenja"
#. Csqeg
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:299
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Bóčnicu začinić"
-#. zCPnN
-#: include/sfx2/strings.hrc:302
-msgctxt "SFX_STR_SIDEBAR_SETTINGS"
-msgid "Sidebar Settings"
-msgstr "Nastajenja bóčnicy"
-
-#. i5XDP
-#: include/sfx2/strings.hrc:303
-msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
-msgid "Customization"
-msgstr "Přiměrjenje"
-
-#. A4aHk
-#: include/sfx2/strings.hrc:304
-msgctxt "SFX_STR_SIDEBAR_RESTORE"
-msgid "Restore Default"
-msgstr "Standard wobnowić"
-
-#. DJGFS
-#: include/sfx2/strings.hrc:305
-msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
-msgid "Close Sidebar"
-msgstr "Bóčnicu začinić"
-
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
#. FkuLG
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Kołć"
#. uwaPH
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Modra křiwka"
#. hHRDz
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Módropawsowe plany"
#. AEtHT
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Swětłomódra"
#. tPjXG
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Elegantna čerwjeń"
#. QDNuB
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Lěsny ptačk"
#. o8F35
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
#. C5N9D
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiracija"
#. fCKG9
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Swětła"
#. AiFo4
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Bujna zelena"
#. xo2gC
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Połnócna módrina"
#. yiCzk
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Přirodna ilustracija"
#. cCZzC
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Pisak"
#. Ji4Cw
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klawěr"
#. mrbiq
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Aktowka"
#. ysBGy
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Postup"
#. gtPt9
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Chowanje słónca"
#. 73Y2e
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Tradicionelny"
#. MSY8y
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Žiwy"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "Žiwjenjoběh"
#. Koe3V
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Tabelariski žiwjenjoběh"
#. hCpfD
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standard"
#. d7Hyk
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderny"
#. CVJEC
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderny wobchodny list bjez serifow"
#. 95GeB
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderny wobchodny list ze serifami"
#. XdU49
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Wizitka z logom"
#. UAmSj
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Jednory"
#. W7NVH
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Wotstronić"
#. JReRY
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Wšě zhašeć"
#. yC8Gs
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:339
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Dołhosć hesła"
#. FKFmJ
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:340
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Hesło, kotrež sće zapodał, problemy za zhromadne dźěło zawinuje. Prošu zapodajće hesło, kotrež je krótše hač 52 bajtow abo dlěše hač 55 bajtow."
#. jBQFN
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-kliknjenje, zo byšće hyperwotkaz wočinił: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Klikńće, zo byšće hyperwotkaz wočinił: %(link)"
#. eFJMp
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:345
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(wužity přez: %STYLELIST)"
@@ -4165,6 +4129,42 @@ msgctxt "stylecontextmenu|delete"
msgid "Delete..."
msgstr "Zhašeć..."
+#. N4BGe
+#: sfx2/uiconfig/ui/tabbarcontents.ui:24
+msgctxt "tabbar|locktaskpanel"
+msgid "Dock"
+msgstr ""
+
+#. GNBR3
+#: sfx2/uiconfig/ui/tabbarcontents.ui:33
+msgctxt "tabbar|unlocktaskpanel"
+msgid "Undock"
+msgstr ""
+
+#. jXux4
+#: sfx2/uiconfig/ui/tabbarcontents.ui:42
+msgctxt "tabbar|hidesidebar"
+msgid "Close Sidebar"
+msgstr ""
+
+#. hEmHk
+#: sfx2/uiconfig/ui/tabbarcontents.ui:50
+msgctxt "tabbar|customization"
+msgid "Customization"
+msgstr ""
+
+#. 9Hfx6
+#: sfx2/uiconfig/ui/tabbarcontents.ui:66
+msgctxt "tabbar|restoredefault"
+msgid "Restore Default"
+msgstr ""
+
+#. DBWZf
+#: sfx2/uiconfig/ui/tabbarcontents.ui:93
+msgctxt "tabbar|menubutton|tool_tip"
+msgid "Sidebar Settings"
+msgstr ""
+
#. XBaqU
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
diff --git a/source/hsb/starmath/messages.po b/source/hsb/starmath/messages.po
index 69b9dce8344..28578632f04 100644
--- a/source/hsb/starmath/messages.po
+++ b/source/hsb/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2020-09-24 16:35+0000\n"
+"POT-Creation-Date: 2020-11-22 12:51+0100\n"
+"PO-Revision-Date: 2020-11-17 20:36+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/hsb/>\n"
"Language: hsb\n"
@@ -425,2065 +425,2198 @@ msgid "or"
msgstr "abo"
#. hW5GK
-#: starmath/inc/strings.hrc:32
+#. clang-format off
+#: starmath/inc/strings.hrc:33
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Předznamješko (+)"
#. FMnYC
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:34
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Předznamješko (-)"
#. eaaXU
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:35
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Předznamješko (+-)"
#. WVfQk
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:36
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Předznamješko (-+)"
#. EFpbW
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:37
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Logiski NIC"
#. RG9ck
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Adicija (+)"
#. AJuhx
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Subtrakcija (-)"
#. Pn7Ti
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Multiplikacija (dypk)"
#. AvCEW
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Multiplikacija (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Multiplikacija (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Diwizija (nakósna smužka)"
#. jrFDi
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Diwizija (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:45
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Diwizija (łamk)"
#. 4UiR5
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:46
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
-msgstr ""
+msgstr "Łamk"
#. 37Fw8
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Nakósna smužka w kruhu"
#. PVroC
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Dypk w kruhu"
#. 77wcq
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Minus w kruhu"
#. 9yGK7
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Plus w kruhu"
#. zjt8o
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Tensorowy produkt"
#. S6QRE
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Logiske A"
#. 2CAKD
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Logiske ABO"
#. DcpN2
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "je runja"
#. 67oaU
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "je njerunja"
#. evxCD
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "je mjeńši hač"
#. 2zLD5
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "je wjetši hač"
#. FToXS
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Je mjeńši abo runja"
#. EhSMB
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Je wjetši abo runja"
#. cAE9M
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Je mjeńši abo runja"
#. hE4hg
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Je wjetši abo runja"
#. KAk9w
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Je wjele mjeńši"
#. m6Hfp
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Je wjele wjetši"
#. SyusD
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Je definowany jako"
#. sXM7x
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "je kongruentny"
#. PiF9E
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "je přibližnje runja"
#. qxXzh
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "je podobny"
#. Yu5EU
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "je podobny abo runja"
#. 4DWLB
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "je proporcionalny"
#. 8RDRN
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "je ortogonalny"
#. eeLJw
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "je paralelny"
#. kKBBK
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "měri so k"
#. Ju2yd
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Koresponduje z (nalěwo)"
#. JuZfc
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Koresponduje z (naprawo)"
#. FA6hg
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "je element"
#. oCdme
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "njeje element"
#. d6H3K
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "wobsahuje"
#. w3EsE
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Zjednoćenje"
#. CEmDg
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Přerězk"
#. HiSD3
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Diferenca"
#. BBD4r
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
-msgstr ""
+msgstr "Kwocientowa sadźba"
#. ToVZV
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Dźělne mnóstwo"
#. ERo34
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Dźělne mnóstwo abo runja"
#. Ut5XD
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Nadmnóstwo"
#. BCHWL
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Nadmnóstwo abo runja"
#. K67nF
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "nic dźělne mnóstwo"
#. FsuYX
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "nic dźělne mnóstwo abo runja"
#. 7LJYb
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "nic nadmnóstwo"
#. 2Z4St
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "nic nadmnóstwo abo runja"
#. GF9zf
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr "Powšitkowna funkcija"
#. AcgYW
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Absolutna hódnota"
#. rFEx7
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Fakulta"
#. Cj4hL
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Kwadratny korjeń"
#. QtrqZ
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "n-ty korjeń"
#. JLBAS
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Eksponencialna funkcija"
#. AEQ38
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Eksponencialna funkcija"
#. GjNwW
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "přirodny logaritmus"
#. FkUgL
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logaritmus"
#. EChK8
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sinus"
#. MQGzb
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Kosinus"
#. 8zgCh
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangens"
#. BBRxx
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Kotangens"
#. DsTBd
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arkussinus"
#. FPzbg
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arkuskosinus"
#. EFP3E
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arkustangens"
#. mpBY2
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:106
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arkuskotangens"
#. gpCNS
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:107
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Hyperboliski sinus"
#. QXCBa
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:108
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Hyberboliski kosinus"
#. F4ad5
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:109
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Hyperboliski tangens"
#. vtxUA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:110
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Hyperboliski kotangens"
#. afq2C
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Hyperboliski areasinus"
#. bYkRi
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Hyperboliski areakosinus"
#. acsCE
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Hyperboliski areatangens"
#. v9ccB
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:114
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Hyperboliski areakotangens"
#. G2RAG
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr "Powšitkowny operator"
#. EZ2X2
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr "Powšitkowny operator indeks deleka"
#. HaUqv
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr "Powšitkowny operator indeks horjeka"
#. Pch4L
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:118
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr "Powšitkowny operator indeks horjeka/deleka"
#. 4eGMf
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Suma"
#. gV6ns
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Suma z delnjej hranicu"
#. C3yFy
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Suma z hornjej hranicu"
#. oTcL9
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:122
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Suma z delnjej a hornjej hranicu"
#. zAAwA
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Produkt"
#. 8GA67
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Produkt z delnjej hranicu"
#. EYVB4
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Produkt z hornjej hranicu"
#. 73BFU
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:126
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Produkt z delnjej a hornjej hranicu"
#. wAwFG
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Koprodukt"
#. MLtkV
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Koprodukt z delnjej hranicu"
#. kCvEu
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Koprodukt z hornjej hranicu"
#. PGH59
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:130
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Koprodukt z delnjej a hornjej hranicu"
#. eyBRm
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Limes"
#. 7zDvY
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Limes z delnjej hranicu"
#. CbG7y
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Limes z hornjej hranicu"
#. EWw4P
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Limes z delnjej a hornjej hranicu"
#. wL7Ae
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Limit Inferior"
#. YMCGq
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Limes inferior z delnjej mjezu"
#. GtSiM
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Limes inferior z hornjej mjezu"
#. xGGCw
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Limes inferior z delnjej a hornjej mjezu"
#. pZzYb
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Limes superior"
#. Wi8KX
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Limes superior z delnjej mjezu"
#. KVDSH
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Limes superior z hornjej mjezu"
#. fpZ2c
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:142
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Limes superior z delnjej a hornjej mjezu"
#. F7Cc3
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:143
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Eksistuje"
#. Nhgso
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:144
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Njeeksistuje"
#. yrnBf
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:145
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "za wšě"
#. NkTAp
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integral"
#. vQmDp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Integral z delnjej hranicu"
#. y7z9u
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Integral z hornjej hranicu"
#. 6k5sb
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:149
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integral z delnjej a hornjej hranicu"
#. p3RZE
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Dwójny integral"
#. BGTdj
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Dwójny integral z delnjej hranicu"
#. sm97q
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Dwójny integral z hornjej hranicu"
#. pfQHq
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Dwójny integral z delnjej a hornjej hranicu"
#. rSSzV
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Trójny integral"
#. 8kQA9
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Trójny integral z delnjej hranicu"
#. B9bYA
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Trójny integral z hornjej hranicu"
#. tBhDK
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:157
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Trójny integral z delnjej a hornjej hranicu"
#. FAhtN
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Křiwkowy integral"
#. QX8QP
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Křiwkowy integral z delnjej hranicu"
#. x9KBD
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Křiwkowy integral z hornjej hranicu"
#. FRxLN
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Křiwkowy integral z delnjej a hornjej hranicu"
#. u6fSm
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Dwójny křiwkowy integral"
#. tGPd3
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Dwójny křiwkowy integral z delnjej hranicu"
#. WbgY4
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Dwójny křiwkowy integral z hornjej hranicu"
#. Fb8Ag
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Dwójny křiwkowy integral z delnjej a hornjej hranicu"
#. SGAUu
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Trójny křiwkowy integral"
#. 8RRj4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Trójny křiwkowy integral z delnjej hranicu"
#. hDzUB
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Trójny křiwkowy integral z hornjej hranicu"
#. 53vdH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:169
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Trójny křiwkowy integral z delnjej a hornjej hranicu"
#. L2GPS
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:170
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Akut"
#. iNBv6
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Linija horjeka"
#. 4bj8T
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:172
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Brevis"
#. KCnAL
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Nawopačny cirkumfleks"
#. JGDsk
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:174
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Kruh"
#. NFE9t
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Dypk"
#. 3nLRD
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Dwójny dypk"
#. vyBoF
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:177
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Trójny dypk"
#. B6Bdu
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:178
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Gravis"
#. NsttC
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:179
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Cirkumfleks"
#. uwDf4
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:180
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tilda"
#. nJFs5
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:181
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Wektorowy šipk"
#. ttFJH
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:182
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Harpuna"
#. BLziR
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:183
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Linija deleka"
#. Ao3kR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Linija wyše"
#. CGexE
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:185
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Linija přez"
#. ocuzq
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:186
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Transparentny"
#. CkgdF
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:187
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Tučne pismo"
#. 9HXmb
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:188
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Kursiwne pismo"
#. wHZAL
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:189
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Wulkosć změnić"
#. dFJdi
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:190
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Pismo změnić"
#. EGfMH
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Barba čorny"
#. GrXZS
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Barba módry"
#. DRFYB
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Barba zeleny"
#. MJhTE
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Barba čerwjeny"
#. dDDvs
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
-msgstr ""
+msgstr "Barba Aqua"
#. 6zGQ2
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
-msgstr ""
+msgstr "Barba Fuksija"
#. em3aA
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Barba šěry"
#. 8Pn5t
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Barba swětłozeleny"
#. xGjXA
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Barba kastanijowy"
#. Cmhuj
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Barba ćmowomódry"
#. XL3XB
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Barba oliwowy"
#. yZ9RF
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Barba purpur"
#. 2zE5Z
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Barba slěborny"
#. vMBoD
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Barba tirkisowy"
#. U7bEA
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Barba žołty"
#. 6mDX7
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "RGB-barba"
#. FHLCx
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
-msgstr ""
+msgstr "RGBA-barba"
#. UxFDW
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
+msgstr "Barba, heksadecimalna"
+
+#. MGdCv
+#: starmath/inc/strings.hrc:209
+msgctxt "RID_COLORX_CORAL_HELP"
+msgid "Color Coral"
+msgstr ""
+
+#. gPCCe
+#: starmath/inc/strings.hrc:210
+msgctxt "RID_COLORX_CRIMSON_HELP"
+msgid "Color Crimson"
+msgstr ""
+
+#. oDRbR
+#: starmath/inc/strings.hrc:211
+msgctxt "RID_COLORX_MIDNIGHT_HELP"
+msgid "Color Midnight blue"
+msgstr ""
+
+#. 4aCMu
+#: starmath/inc/strings.hrc:212
+msgctxt "RID_COLORX_VIOLET_HELP"
+msgid "Color Violet"
+msgstr ""
+
+#. Qivdb
+#: starmath/inc/strings.hrc:213
+msgctxt "RID_COLORX_ORANGE_HELP"
+msgid "Color Orange"
+msgstr ""
+
+#. CVygm
+#: starmath/inc/strings.hrc:214
+msgctxt "RID_COLORX_ORANGERED_HELP"
+msgid "Color Orangered"
+msgstr ""
+
+#. LbfRK
+#: starmath/inc/strings.hrc:215
+msgctxt "RID_COLORX_SEAGREEN_HELP"
+msgid "Color Seagreen"
+msgstr ""
+
+#. DKivY
+#: starmath/inc/strings.hrc:216
+msgctxt "RID_COLORX_INDIGO_HELP"
+msgid "Color Indigo"
+msgstr ""
+
+#. TZQzN
+#: starmath/inc/strings.hrc:217
+msgctxt "RID_COLORX_HOTPINK_HELP"
+msgid "Color Hot pink"
+msgstr ""
+
+#. GHgTB
+#: starmath/inc/strings.hrc:218
+msgctxt "RID_COLORX_LAVENDER_HELP"
+msgid "Color Lavender"
+msgstr ""
+
+#. HQmw7
+#: starmath/inc/strings.hrc:219
+msgctxt "RID_COLORX_SNOW_HELP"
+msgid "Color Snow"
msgstr ""
#. A2GQ4
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Skupinske spinki"
#. X7CEt
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Kulojte spinki"
#. AYBJ3
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Róžkate spinki"
#. 72tg7
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Dwójne róžkate spinki"
#. 8q7SE
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Zhibowane spinki"
#. bR8zw
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Kutowe spinki"
#. BeDY5
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Nakruženske spinki"
#. EgGfR
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Skruženske spinki"
#. L4q5e
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "jednore linije"
#. pxcsk
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "dwójne linije"
#. QpgTC
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:230
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "operatorowe spinki"
#. 26fDL
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "kulojte spinki (skalujomne)"
#. hYSwY
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "róžkate spinki (skalujomne)"
#. GYgVC
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "dwójne róžkate spinki (skalujomne)"
#. yAB5Z
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "zhibowane spinki (skalujomne)"
#. gVyvk
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "kutowe spinki (skalujomne)"
#. TQgEE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Nakruženske spinki (skalujomne)"
#. JD7hz
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Skruženske spinki (skalujomne)"
#. zefYy
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Jednore linije (skalujomne)"
#. xRAGP
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Dwójne linije (skalujomne)"
#. EzvMA
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:240
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Operatorowe spinki (skalujomne)"
#. ZurRw
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Wuhódnoćeny"
#. aHELy
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Zhibowane spinki horjeka (skalujomne)"
#. LUhCa
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:243
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Zhibowane spinki deleka (skalujomne)"
#. Ecw64
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
-msgstr ""
+msgstr "Wuhódnoćić"
#. vfpuY
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
-msgstr ""
+msgstr "Indeks deleka wuhódnoćić"
#. Q6G2q
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
-msgstr ""
+msgstr "Indeks horjeka wuhódnoćić"
#. 6NGAj
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:247
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
-msgstr ""
+msgstr "Indeks wuhódnoćić"
#. wePDA
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "hłuboko stajić naprawo"
#. tAk6B
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:249
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "wysoko stajić naprawo"
#. fkDc3
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "hłuboko stajić nalěwo"
#. diRUE
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:251
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "wysoko stajić nalěwo"
#. cA8up
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "hłuboko stajić deleka"
#. BmFm5
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:253
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "wysoko stajić horjeka"
#. WTF6i
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:254
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Mała mjezera"
#. 3GBzt
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:255
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "prózdny"
#. Tv29B
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:256
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Nowa linka"
#. tnBvX
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:257
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Wertikalny porjad (2 elementaj)"
#. uAfzF
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:258
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Wertikalny porjad"
#. GZoUk
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:259
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Matriks"
#. qGAFn
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "nalěwo wusměrić"
#. BpAbA
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Centrować"
#. RTRN9
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "naprawo wusměrić"
#. rBXQx
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:263
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Alef"
#. ixk6B
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:264
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "prózdne mnóstwo"
#. fbVuw
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:265
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Realny dźěl"
#. DjahE
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:266
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Imaginarny dźěl"
#. LwDCX
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:267
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Njekónčny"
#. 5TTyg
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:268
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Parcial"
#. gkq7i
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:269
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr "Transformacija Laplace"
#. ajf9X
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:271
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr "Transformacija Fourier"
#. aQpTD
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass p"
#. f9sfv
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Dypki srjedźa"
#. C3nbh
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Dypki horje"
#. tzBF5
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Dypki dele"
#. XDsJg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Dypki deleka"
#. TtFD4
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Dypki wertikalnje"
#. YsuWX
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Zwjazać"
#. JAGx5
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Diwizija (šěroka nakósna smužka)"
#. YeJSK
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Diwizija (šěroka wróćosmužka)"
#. wfbfE
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "diwiduje"
#. 3BFDd
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "njediwiduje"
#. CCvBP
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Dwójny šipk dolěwa"
#. UJYMA
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Dwójny šipk dolěwa a doprawa"
#. xEGRt
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Dwójny šipk doprawa"
#. 9fdkb
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Mnohosć přirodnych ličbow"
#. rCVLA
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Mnohosć cyłych ličbow"
#. bPiC2
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Mnohosć racionalnych ličbow"
#. ftype
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Mnohosć reelnych ličbow"
#. i4knq
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Mnohosć kompleksnych ličbow"
#. EsxDq
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "šěroki cirkumfleks"
#. Ho4gN
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "šěroka tilda"
#. DJGj6
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "šěroki wektorowy šipk"
#. Ew4TJ
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Wulka harpuna"
#. 5Ce5n
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h prěki"
#. PAJLg
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda prěki"
#. obBGe
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Šipk dolěwa"
#. krnEB
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Šipk doprawa"
#. gADL7
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Šipk horje"
#. oTVat
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Šipk dele"
#. xVkoU
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Žana mjezera"
#. gSrMz
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "nišeho rjadu"
#. yiATA
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "nišeho abo jenakeho rjadu"
#. ZY4XE
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "nišeho abo ekwiwalentneho rjadu"
#. Br8e9
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "wyšeho rjadu"
#. VraAq
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "wyšeho abo jenakeho rjadu"
#. bRiLq
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "wyšeho abo ekwiwalentneho rjadu"
#. Cy5fB
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Nic nišeho rjadu"
#. ihTrN
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Nic wyšeho rjadu"
#. eu7va
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Unarne/Binarne operatory"
#. qChkW
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Relacije"
#. UCQER
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Mnóstwowe operacije"
#. H7MZE
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funkcije"
#. zAeXx
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operatory"
#. GGitA
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Atributy"
#. B29Ad
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Spinki"
#. UAdpn
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formaty"
#. Yif8p
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Dalše"
#. 3fzNy
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Přikłady"
#. qPycE
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Wobjim"
#. FhGWC
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Masoenergijowa ekwiwalenca"
#. nwdFs
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Pythagorasowa sada"
#. b5eq8
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
-msgstr ""
+msgstr "Taylorowa serija"
#. MuqjR
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Gaussowe rozdźělenje"
#. sWaki
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
-msgstr ""
+msgstr "Runica Euler-Lagrange"
#. LnNNA
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
-msgstr ""
+msgstr "Fundamentalna sada analysisa"
#. gkAEg
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CAOS_HELP"
msgid "Chaos equation"
-msgstr ""
+msgstr "Chaosowa runica"
#. afEQ8
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
-msgstr ""
+msgstr "Eulerowa identita"
#. m3ukF
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
-msgstr ""
+msgstr "Newtonowy druhi zakoń"
#. ZmaUU
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
-msgstr ""
+msgstr "Powšitkowna relatiwnosć"
#. ADBy9
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
-msgstr ""
+msgstr "Specielna relatiwnosć"
#. u47dF
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standard"
#. aZbaD
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kursiwny"
#. 7t5Hn
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Tučny"
#. urCxA
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "čorny"
#. n4qFR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "módry"
#. ZS9Ma
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "zeleny"
#. SAB9J
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "čerwjeny"
#. b5qhM
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
-msgstr ""
+msgstr "aqua"
#. GLy7q
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
-msgstr ""
+msgstr "fuksija"
#. fZKES
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "šěry"
#. BaoAG
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "swětłozeleny"
#. MERnK
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "kastanijowy"
#. CEYFL
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "ćmowomódry"
#. DDWH3
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliwowy"
#. dZoUG
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "purpurny"
#. 7JFDe
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "slěbro"
#. enQJY
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "módrozeleny"
#. QkBT2
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "žołty"
+#. AZyLo
+#: starmath/inc/strings.hrc:352
+msgctxt "STR_CORAL"
+msgid "coral"
+msgstr ""
+
+#. RZSh6
+#: starmath/inc/strings.hrc:353
+msgctxt "STR_CRIMSON"
+msgid "crimson"
+msgstr ""
+
+#. QGibF
+#: starmath/inc/strings.hrc:354
+msgctxt "STR_MIDNIGHT"
+msgid "midnight"
+msgstr ""
+
+#. NKAkW
+#: starmath/inc/strings.hrc:355
+msgctxt "STR_VIOLET"
+msgid "violet"
+msgstr ""
+
+#. sF9zc
+#: starmath/inc/strings.hrc:356
+msgctxt "STR_ORANGE"
+msgid "orange"
+msgstr ""
+
+#. CXMyK
+#: starmath/inc/strings.hrc:357
+msgctxt "STR_ORANGERED"
+msgid "orangered"
+msgstr ""
+
+#. Ak3yd
+#: starmath/inc/strings.hrc:358
+msgctxt "STR_LAVENDER"
+msgid "lavender"
+msgstr ""
+
+#. DLUaV
+#: starmath/inc/strings.hrc:359
+msgctxt "STR_SNOW"
+msgid "snow"
+msgstr ""
+
+#. QDTEU
+#: starmath/inc/strings.hrc:360
+msgctxt "STR_SEAGREEN"
+msgid "seagreen"
+msgstr ""
+
+#. PNveS
+#: starmath/inc/strings.hrc:361
+msgctxt "STR_INDIGO"
+msgid "indigo"
+msgstr ""
+
+#. r5S8P
+#: starmath/inc/strings.hrc:362
+msgctxt "STR_HOTPINK"
+msgid "hotpink"
+msgstr ""
+
#. NNmRT
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
-msgstr ""
+msgstr "rgba"
#. BRYCu
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
-msgstr ""
+msgstr "heks"
#. CCpNs
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "schować"
#. FtCHm
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "wulkosć"
#. qFRcG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "pismo"
#. TEnpE
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "nalěwo"
#. dBczP
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centrowany"
#. U9mzR
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "naprawo"
#. C3cxx
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Přikazy"
#. Sgayv
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formla"
#. veG66
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Dokument so składuje..."
#. M6rLx
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Formla"
#. AFFdK
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ZMYLK : "
#. p2FHe
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Njewočakowane znamješko"
#. CgyFQ
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Njewočakowane znamješko"
#. RGAFy
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' wočakowana"
#. Wyx9q
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' wočakowana"
#. B7B7y
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' wočakowana"
#. kKoFQ
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' wočakowana"
#. aDG4Y
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Lěwy a prawy symbol jenakej njejstej"
#. FYFE5
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans' abo 'serif' wočakowany"
#. jGZdh
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' slědowany wot njewočakowaneho znamješka"
#. 6DqgC
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Dwójne wusměrjenje dowolene njeje"
#. aoufx
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Dwójne powyšenje/zniženje dowolene njeje"
#. U6U5Z
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
-msgstr ""
+msgstr "Wočakowana ličba"
#. ZWBDD
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' wočakowany"
#. HLZNK
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Barba trěbna"
#. GboH7
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' wočakowany"
#. A8QNw
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:392
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Wobsah"
#. Dwn4W
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titul"
#. LSV24
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formlowy tekst"
#. XnVAD
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "~Ramiki"
#. TfBWF
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Wulkosć"
#. egvJg
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "O~riginalna wulkosć"
#. ZSF52
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Wulkosći ~strony přiměrić"
#. ZVcSf
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skalowanje"
diff --git a/source/hsb/svtools/messages.po b/source/hsb/svtools/messages.po
index b316225ba8c..e0af9f2cf19 100644
--- a/source/hsb/svtools/messages.po
+++ b/source/hsb/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-04 20:47+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/hsb/>\n"
@@ -18,482 +18,482 @@ msgstr ""
#. fLdeV
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:26
+#: include/svtools/strings.hrc:25
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Cofnyć: "
#. A66hr
#. To translators: tdf#125447 use no mnemonic in this string
-#: include/svtools/strings.hrc:28
+#: include/svtools/strings.hrc:27
msgctxt "STR_REDO"
msgid "Redo: "
msgstr "Wospjetować: "
#. 2utVD
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:28
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Wospjetować: "
#. 3DCSV
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Njeformatowany tekst"
#. FaGBp
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Njeformatowany tekst (TSV-Calc)"
#. U29gL
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Wobraz bitmap (BMP)"
#. vnBpN
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface metafile (GDI)"
#. xt4VZ
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich text formatting (RTF)"
#. wwEZs
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich text formatting (Richtext)"
#. oZgfj
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Format rysowankow %PRODUCTNAME"
#. 84ABF
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Bitmap/animacija StarView (SVXB)"
#. CCGwi
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Statusowe informacije wot Svx Internal Link"
#. 9zJeE
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Wotkaz %PRODUCTNAME (SOLK)"
#. CdJBD
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Zapołožka Netscape"
#. 472xQ
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Serwerowy format Star"
#. afRsn
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Objektowy format Star"
#. VFT89
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Objekt Applet"
#. Q4uNb
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Objekt Tykač"
#. CnQhX
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objekt StarWriter 3.0"
#. NWNxG
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objekt StarWriter 4.0"
#. XvDZr
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objekt StarWriter 5.0"
#. hFHVx
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objekt StarWriter/Web 4.0"
#. DpFQA
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objekt StarWriter/Web 5.0"
#. Ctecy
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Objekt StarWriter/Master 4.0"
#. WoEVQ
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Objekt StarWriter/Master 5.0"
#. oGSK9
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objekt StarDraw"
#. 9xsgg
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objekt StarDraw 4.0"
#. r5rso
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objekt StarImpress 5.0"
#. GTKnp
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objekt StarDraw 5.0"
#. kKApU
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objekt StarCalc"
#. jSTor
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objekt StarCalc 4.0"
#. zzGDB
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objekt StarCalc 5.0"
#. YVTqL
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objekt StarChart"
#. C9uqt
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objekt StarChart 4.0"
#. TG4Mg
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objekt StarChart 5.0"
#. ULov2
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objekt StarImage"
#. Wzc3p
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objekt StarImage 4.0"
#. F8CgU
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objekt StarImage 5.0"
#. 3iFHh
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objekt StarMath"
#. AAzLM
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objekt StarMath 4.0"
#. FGSz4
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objekt StarMath 5.0"
#. eyCtG
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objekt StarObject Paint"
#. JUZwD
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
#. DoLZM
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
#. kFsit
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
#. KozpE
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
#. ujbwC
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
#. L6Nn5
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE link)"
#. E6Ays
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
#. XTiAV
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objekt Microsoft Word"
#. KCUj8
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objekt StarFrameSet"
#. iUmYW
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Objekt Dokument Office"
#. 8NToB
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Informacije dokumenta Notes"
#. ErG5N
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx-dokument"
#. ZpZMn
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objekt StarChart 5.0"
#. Pm6K6
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Wobrazowy objekt"
#. MFnoA
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Objekt OpenOffice.org 1.0 Writer"
#. WuSEB
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Objekt OpenOffice.org 1.0 Writer/Web"
#. GZwRa
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Objekt OpenOffice.org 1.0 Writer/Master"
#. iEkCL
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Objekt OpenOffice.org 1.0 Draw"
#. nitPp
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Objekt OpenOffice.org 1.0 Impress"
#. B37DU
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Objekt OpenOffice.org 1.0 Calc"
#. CHCYo
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Objekt OpenOffice.org 1.0 Chart"
#. 67SN7
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Objekt OpenOffice.org 1.0 Math"
#. CDeqm
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows MetaFile"
#. AeDJM
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Objekt datowych žórłow"
#. AuVFy
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabela datowych žórłow"
#. SGKi5
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL-wotprašowanje"
#. QbFAy
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Dialog OpenOffice.org 1.0"
#. YGTkw
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Wotkaz"
#. zHkC5
-#: include/svtools/strings.hrc:98
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-format bjez komentarow"
#. HD9uA
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
#. wDxCa
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:100
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objekt % njeda so zasadźić."
#. zz7WG
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:101
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objekt z dataje % njeda so zasadźić."
#. KXJx2
-#: include/svtools/strings.hrc:103
+#: include/svtools/strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Dalše objekty"
#. Aoy8t
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Njeznate žórło"
#. rKnxB
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:105
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bajty"
#. 3xx7Y
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
#. WpMzR
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
#. Gp5qG
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
@@ -501,1234 +501,1234 @@ msgstr "GB"
#. YMfcy
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:114
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeriski"
#. nAUWx
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normalny"
#. 67hD2
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:119
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Znamješkowa sadźba"
#. PFVoE
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:121
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Słownik"
#. 2Qpew
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:123
+#: include/svtools/strings.hrc:122
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinjin"
#. v6EtG
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:125
+#: include/svtools/strings.hrc:124
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Smužka"
#. jUDEo
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:127
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. BYGau
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:129
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. GAPyc
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:131
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Dźujin"
#. onJwb
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:133
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonowa kniha"
#. FMEE2
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:133
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetisce (alfanumeriske jako prěnje)"
#. HjF8p
-#: include/svtools/strings.hrc:135
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetisce (alfanumeriske jako poslednje)"
#. hDETe
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:137
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeriski"
#. TBxyw
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:139
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Słownik"
#. QYpFD
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:141
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinjin"
#. NuguW
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. VwE4Z
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:145
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Smužka"
#. AaP7M
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:147
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Dźujin"
#. 5qyCq
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetisce (alfanumeriske jako prěnje, zeskupjene po złóžkach)"
#. XZdA3
-#: include/svtools/strings.hrc:149
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetisce (alfanumeriske jako prěnje, zeskupjene po konsonantach)"
#. cYBZQ
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetisce (alfanumeriske jako poslednje, zeskupjene po złóžkach)"
#. kt3PC
-#: include/svtools/strings.hrc:151
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetisce (alfanumerisce jako poslednje, zeskupjene po konsonantach)"
#. KBGLa
-#: include/svtools/strings.hrc:153
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Lochki"
#. mZkDz
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Lochko kursiwny"
#. QBxYq
-#: include/svtools/strings.hrc:155
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normalny"
#. u5Gop
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kursiwny"
#. tHu3B
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Tučny"
#. cbXrP
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Tučny kursiwny"
#. yHZD2
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Čorny"
#. 4eGUH
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Čorny kursiwny"
#. zhoAB
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Kniha"
#. sqXRb
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Tučny nakósny"
#. QUBiF
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Wuski"
#. LTVdC
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Wuski tučny"
#. Guayv
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Wuski tučny kursiwny"
#. AoubP
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Wuski tučny nakósny"
#. bpDXQ
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Wuski kursiwny"
#. YDMtz
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Wuski nakósny"
#. MouF8
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Jara lochki"
#. zurf4
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Jara lochki kursiwny"
#. apfoW
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Nakósny"
#. TJsAw
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Połtučny"
#. LRtri
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Połtučny kursiwny"
#. bBXFx
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Samsne pismo budźe so na wašim ćišćaku a wašej wobrazowce wužiwać."
#. HFBCn
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "To je pismo ćišćaka. Napohlad na wobrazowce móže so wotchilić."
#. iceoL
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Tutón pismowy stil so similuje abo najbliša přihódna stil budźe so wužiwać."
#. hBbuZ
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Tute pismo njeje nainstalowane. Najbliše k dispoziciji stejace pismo budźe so wužiwać."
#. KCmDe
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:178
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "K spočatkej"
#. f6NAc
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:179
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Dolěwa"
#. nrvoV
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Doprawa"
#. ZQgUu
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Ke kóncej"
#. mZ4Ln
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Přidać"
#. 4K4AF
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Horicontalny lineal"
#. PG9qt
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Wertikalny lineal"
#. WKngA
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1-bitowy próh"
#. dByxQ
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bit simulowany"
#. kciH5
-#: include/svtools/strings.hrc:190
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4-bitowe stopnje šěrje"
#. TrBvg
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4-bitowa barba"
#. q6mH9
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8-bitowe stopnje šěrje"
#. 8u2Zf
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8-bitowa barba"
#. DZVK4
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24-bitowa wěrna barba"
#. Grnub
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Wobraz něhdźe %1 KB składa trjeba."
#. FCnVT
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Wobraz něhdźe %1 KB składa trjeba, datajowa wulkosć je %2 KB."
#. CdHU8
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Datajowa wulkosć je %1 KB."
#. TaCaF
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Host"
#. ERaxD
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Port"
#. W88Be
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Druhe CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Hotowo"
#. 6zER8
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Zastajene"
#. nqqYs
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Zhašenje čaka"
#. CGn9R
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Wućeženy"
#. nyGEq
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Inicializacija"
#. hduW4
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Čaka so"
#. FYGFz
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Wohrěwanje"
#. qntFR
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Předźěłowanje"
#. tUmmx
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Ćišćenje"
#. BMWJx
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Offline"
#. drDMK
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Zmylk"
#. FnMTQ
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Njeznaty serwer"
#. vuLYa
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Zatykanje papjera"
#. qG4ZG
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Nic dosć papjery"
#. bB9PC
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Manuelne dodawanje"
#. eMZJo
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problem z papjeru"
#. RU3Li
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "Z/W aktiwne"
#. VEuAd
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Wudawanski fach połny"
#. MinDm
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Mało tonera"
#. AjnQj
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Žadyn toner"
#. CtvCS
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Stronu zhašeć"
#. iGWiT
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Přistup wužiwarja trěbny"
#. 7xg4W
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Přemało składa"
#. DcNFt
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Pokryw wočinjeny"
#. CHiEH
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Energiju lutowacy modus"
#. bYbeA
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Standardny ćišćak"
#. 9QCL5
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumentow"
#. yobGc
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:228
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<žadyn>"
#. Fa4nQ
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:229
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Předewzaće"
#. DdDzQ
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Wotrjad"
#. LXmyi
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Předmjeno"
#. 2MkxF
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Swójbne mjeno"
#. VyyM6
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Hasa/Dróha"
#. wUdSC
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Kraj"
#. tAg9k
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "PWČ"
#. UYGgj
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Město"
#. vTYyD
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titul"
#. E7qqB
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Pozicija"
#. NiFzB
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Narěčenje"
#. CFDX6
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Iniciale"
#. 2DADo
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Postrowna formula"
#. 8MWGd
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Telefon: Priwatny"
#. fX9J4
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Telefon: Słužbny"
#. Ss9vd
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Faks"
#. MgbsU
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-mejlowa adresa"
#. aHNGY
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
#. CGutA
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Notica"
#. btBDG
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Wužiwar 1"
#. A4nkT
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Wužiwar 2"
#. J48Kt
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Wužiwar 3"
#. 3BxjF
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Wužiwar 4"
#. tBBKp
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
#. H3ygA
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Zwjazkowy kraj"
#. xP2AC
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Telefon: běrow"
#. P6Vm5
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Škričkowanski přijimak (Pager)"
#. ayErk
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobilny telefon"
#. 26wjz
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Telefon: druhe"
#. runZ4
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Protyka"
#. 7niGM
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Přeprosyć"
#. Fqcgq
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:261
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ $user$"
#. CgGG3
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:263
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME trjeba wokolinu běžneho časa Java (JRE), zo by tutón nadawk wuwjedł. Prošu instalujće JRE a startujće %PRODUCTNAME znowa. %FAQLINK"
#. SBgjA
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME trjeba %BITNESS-bitowu wokolinu běžneho časa Java (JRE), zo by tutón nadawk wuwjedł. Prošu instalujće JRE a startujće %PRODUCTNAME znowa. %FAQLINK"
#. FY49S
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK"
msgstr "%PRODUCTNAME sej na Mac OS 10.10 abo nowšim Java Development Kit (JDK) Oracle wužaduje, zo by tutón nadawk wuwjedł. Prošu instalujće jón a startujće %PRODUCTNAME znowa. %FAQLINK"
#. 76BEm
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Konfiguracija %PRODUCTNAME je so změniła. Wubjerće pod %PRODUCTNAME - Nastajenja - %PRODUCTNAME - Rozšěrjene wokolinu běžneho časa Java, kotruž %PRODUCTNAME ma wužiwać."
#. BZvFF
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Konfiguracija %PRODUCTNAME je so změniła. Wubjerće Nastroje - Nastajenja - %PRODUCTNAME - Rozšěrjene wokolinu běžneho časa, kotruž %PRODUCTNAME ma wužiwać."
#. Tunzz
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:268
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME sej wokolinu běžneho časa Java (JRE) wužaduje, zo by tutón nadawk wuwjedł. Wubrana wokolina běžneho časa je wobškodźena. Prošu wubjerće druhu wersiju abo instalujće nowu wokolinu běžneho časa a wubjerće ju pod %PRODUCTNAME - Nastajenja - %PRODUCTNAME - Rozšěrjene."
#. rKxCS
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME sej wokolinu běžneho časa Java (JRE) wužaduje, zo by tutón nadawk wuwjedł. Wubrana wokolina běžneho časa je wobškodźena. Prošu wubjerće druhu wersiju abo instalujće nowu wokolinu běžneho časa a wubjerće ju pod Nastroje - Nastajenja - %PRODUCTNAME - Rozšěrjene."
#. QPEUX
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:270
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE trěbny"
#. XD3FG
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE wubrać"
#. WETqJ
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:272
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE je defektny"
#. q7s6f
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:274
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Žórłowy kod"
#. PZmAB
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Dataja zapołožkow"
#. eNRzD
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Wobrazy"
#. Enc4X
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfiguraciska dataja"
#. sP5AK
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Nałoženje"
#. jAA7S
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tabela datoweje banki"
#. CEhUy
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Systemowa dataja"
#. E2Kzj
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Dokument MS Word"
#. BU7Pw
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Dataja pomocy"
#. kBbwy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-dokument"
#. 6W6tY
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Archiwna dataja"
#. c9WiE
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Protokolowa dataja"
#. gBQzN
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Datowa banka StarOffice"
#. J4Pki
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Globalny dokument StarWriter 4.0 / 5.0"
#. 33Dez
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Wobraz StarOffice"
#. pcLE6
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekstowa dataja"
#. 7bMJT
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Wotkaz"
#. hDFtd
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Předłoha StarOffice 3.0 - 5.0"
#. Xcec2
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Dokument MS Excel"
#. FWiWT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Předłoha MS Excel"
#. WBsxH
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Staplowa dataja"
#. SPQtV
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Dataja"
#. Vh78a
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Rjadowak"
#. ZK69j
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tekstowy dokument"
#. p2aL6
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Tabelowy dokument"
#. SCtHH
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Prezentacija"
#. 5gtdF
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Rysowanka"
#. suagX
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-dokument"
#. iLqe2
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Globalny dokument"
#. FF4fa
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formla"
#. t58zy
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Datowa banka"
#. DiNGB
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Předłoha tabeloweho dokumenta OpenOffice.org 1.0"
#. FYKGV
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Předłoha rysowanki OpenOffice.org 1.0"
#. CTUQg
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Předłoha prezentacije OpenOffice.org 1.0"
#. Cbvtx
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Předłoha tekstoweho dokumenta OpenOffice.org 1.0"
#. FBCWx
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Lokalne běhadło"
#. MEF3h
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Disketnik"
#. 55Dof
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM-běhadło"
#. 82Acc
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Syćowy zwisk"
#. 3CBfJ
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Dokument MS PowerPoint"
#. DS7CP
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Předłoha MS PowerPoint"
#. syag8
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Prezentacija MS PowerPoint"
#. fHGcD
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Formla OpenOffice.org 1.0"
#. CFw78
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Diagram OpenOffice.org 1.0"
#. tJhDC
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Rysowanka OpenOffice.org 1.0"
#. f9ZNL
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Tabelowy dokument OpenOffice.org 1.0"
#. PCBqi
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Prezentacija OpenOffice.org 1.0"
#. Npija
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Tekstowy dokument OpenOffice.org 1.0"
#. tVnQQ
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Globalny dokument OpenOffice.org 1.0"
#. t6krU
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML-dokument"
#. ims8J
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Datowa banka OpenDocument"
#. oEsdN
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Rysowanka OpenDocument"
#. Bt5dS
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Formla OpenDocument"
#. sMAZA
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Globalny dokument OpenDocument"
#. ufLx7
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Prezentacija OpenDocument"
#. TjbnG
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Tabelowy dokument OpenDocument"
#. FbCGb
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Tekst OpenDocument"
#. JRP2W
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Předłoha tabeloweho dokumenta OpenDocument"
#. 3QUto
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Předłoha rysowanki OpenDocument"
#. 5CfAm
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Předłoha prezentacije OpenDocument"
#. PBGYD
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Předłoha tekstoweho dokumenta Opendocument"
#. RgRyf
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Rozšěrjenje %PRODUCTNAME"
#. b8JK6
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Prawopisna kontrola Hunspell"
#. do26f
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Dźělenje złóžkow Libhyphen"
#. aGFNy
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Tezawrus Mythes"
#. RwS4n
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Lisćina ignorowanych słowow"
diff --git a/source/hsb/svx/messages.po b/source/hsb/svx/messages.po
index ff835cdcb53..85bf1ac8faf 100644
--- a/source/hsb/svx/messages.po
+++ b/source/hsb/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-08-09 12:35+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/hsb/>\n"
@@ -16332,11 +16332,11 @@ msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Za_stupne symbole"
-#. Eyo7o
+#. vFwmA
#: svx/uiconfig/ui/findreplacedialog.ui:1023
msgctxt "findreplacedialog|notes"
-msgid "_Comments"
-msgstr "_Komentary"
+msgid "Comme_nts"
+msgstr ""
#. z68pk
#: svx/uiconfig/ui/findreplacedialog.ui:1032
diff --git a/source/hsb/sw/messages.po b/source/hsb/sw/messages.po
index f106f55c13b..69e00ba4291 100644
--- a/source/hsb/sw/messages.po
+++ b/source/hsb/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-11-16 13:43+0100\n"
+"POT-Creation-Date: 2020-11-20 15:34+0100\n"
"PO-Revision-Date: 2020-11-01 16:35+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/hsb/>\n"
@@ -17452,86 +17452,92 @@ msgctxt "inserttable|extended_tip|rowspin"
msgid "Enter the number of rows that you want in the table."
msgstr ""
+#. odHbY
+#: sw/uiconfig/swriter/ui/inserttable.ui:245
+msgctxt "inserttable|lbwarning"
+msgid "Warning : Large tables may adversely affect performance and compatibility"
+msgstr ""
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:250
+#: sw/uiconfig/swriter/ui/inserttable.ui:261
msgctxt "inserttable|label1"
msgid "General"
msgstr "Powšitkowne"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:289
+#: sw/uiconfig/swriter/ui/inserttable.ui:300
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "_Nadpismo"
#. EZBnS
-#: sw/uiconfig/swriter/ui/inserttable.ui:298
+#: sw/uiconfig/swriter/ui/inserttable.ui:309
msgctxt "inserttable|extended_tip|headercb"
msgid "Includes a heading row in the table."
msgstr ""
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:309
+#: sw/uiconfig/swriter/ui/inserttable.ui:320
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Hłowowe linki na nowych _stronach wospjetować"
#. LdEem
-#: sw/uiconfig/swriter/ui/inserttable.ui:321
+#: sw/uiconfig/swriter/ui/inserttable.ui:332
msgctxt "inserttable|extended_tip|repeatcb"
msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
msgstr ""
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:343
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Tabelu na stronach njeła_mać"
#. rGaCK
-#: sw/uiconfig/swriter/ui/inserttable.ui:341
+#: sw/uiconfig/swriter/ui/inserttable.ui:352
msgctxt "inserttable|extended_tip|dontsplitcb"
msgid "Prevents the table from spanning more than one page."
msgstr ""
#. NveMH
-#: sw/uiconfig/swriter/ui/inserttable.ui:367
+#: sw/uiconfig/swriter/ui/inserttable.ui:378
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
msgstr ""
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:380
+#: sw/uiconfig/swriter/ui/inserttable.ui:391
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Hłowowe _linki:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:403
+#: sw/uiconfig/swriter/ui/inserttable.ui:414
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Nastajenja"
#. GRq9m
-#: sw/uiconfig/swriter/ui/inserttable.ui:447
+#: sw/uiconfig/swriter/ui/inserttable.ui:458
msgctxt "inserttable|extended_tip|previewinstable"
msgid "Displays a preview of the current selection."
msgstr ""
#. QDdwV
-#: sw/uiconfig/swriter/ui/inserttable.ui:489
+#: sw/uiconfig/swriter/ui/inserttable.ui:500
msgctxt "inserttable|extended_tip|formatlbinstable"
msgid "Select a predefined style for the new table."
msgstr ""
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:508
+#: sw/uiconfig/swriter/ui/inserttable.ui:519
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Stile"
#. qHExF
-#: sw/uiconfig/swriter/ui/inserttable.ui:540
+#: sw/uiconfig/swriter/ui/inserttable.ui:551
msgctxt "inserttable|extended_tip|InsertTableDialog"
msgid "Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr ""
@@ -20045,289 +20051,289 @@ msgid "Text"
msgstr "Tekst"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:262
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Hłowny napohlad přepinać"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:266
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:342
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:369
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Wobsah nawigaciskeho napohlada"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:373
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:396
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:440
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Hłowowa linka"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:400
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:457
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Nohowa linka"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:417
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:461
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:430
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Kótwička<->Tekst"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:434
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:491
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Dopomnjenku stajić"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:495
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:518
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Zwobraznjene nadpismowe runiny"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:522
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:503
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Lisćinowe polo zapinać/wupinać"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:507
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:530
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Wo jednu runinu wyše"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:534
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:547
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:591
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Wo jednu runinu dele"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:551
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:595
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:564
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Kapitl wo runinu wyše přesunyć"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:568
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:625
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Kapitl wo runinu niše přesunyć"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:629
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:608
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:652
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Ćehnjenski modus"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:612
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:656
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:688
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Dokument"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:647
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:691
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Aktiwne wokno"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:732
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Hłowny napohlad přepinać"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:736
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:759
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:803
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Wobdźěłać"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:763
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:807
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:776
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Aktualizować"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:780
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:793
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:837
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Zasadźić"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:797
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:841
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:820
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Wobsah sobu składować"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:824
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
msgctxt "navigatorpanel|extended_tip|save"
msgid "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."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:847
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:891
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Horje přesunyć"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:851
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:895
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:864
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:908
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Dele přesunyć"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:868
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:912
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:967
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1004
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Wuběr"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:975
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1012
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Indeksy"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:983
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1020
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Wotkazy"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:991
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1028
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Wšě"
diff --git a/source/hu/cui/messages.po b/source/hu/cui/messages.po
index 904e32388e5..b12f1d75ae3 100644
--- a/source/hu/cui/messages.po
+++ b/source/hu/cui/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-16 13:42+0100\n"
-"PO-Revision-Date: 2020-11-12 15:34+0000\n"
-"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
+"PO-Revision-Date: 2020-11-20 07:13+0000\n"
+"Last-Translator: Szép Annabella <szep.annabella@gmail.com>\n"
"Language-Team: Hungarian <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/hu/>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.1.1\n"
"X-POOTLE-MTIME: 1566407111.000000\n"
#. GyY9M
@@ -2885,7 +2885,7 @@ msgstr "### formában jelennek meg a számok a munkafüzetben? Túl keskeny az o
#: cui/inc/tipoftheday.hrc:176
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL."
-msgstr "Engedélyezze a képletek tömeges, párhuzamos számítását az Eszközök ▸ Beállítások ▸ OpenCL bekapcsolásával. "
+msgstr "Engedélyezze a képletek tömeges, párhuzamos számítását az Eszközök ▸ Beállítások ▸ OpenCL bekapcsolásával."
#. zAqfX
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html
@@ -3232,19 +3232,19 @@ msgstr "Vissza szeretne térni a listastílus alkalmazása után az alapértelme
#: cui/inc/tipoftheday.hrc:232
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear."
-msgstr ""
+msgstr "Törölje az összes nyomtatási területet egy lépésben: jelölje ki az összes lapot, majd válassza a Formázás ▸ Nyomtatási tartományok ▸ Törlés lehetőséget."
#. Cqtjg
#: cui/inc/tipoftheday.hrc:233
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Add background images to spreadsheets via Insert ▸ Image or drag a background from the Gallery, then Format ▸ Arrange ▸ To Background."
-msgstr ""
+msgstr "Adjon háttérképet a táblázathoz a Beszúrás ▸ Kép segítségével, vagy húzzon egy hátteret a Galériából, majd válassza a Formátum ▸ Elrendezés ▸ Háttérbe menüpontot."
#. khFDu
#: cui/inc/tipoftheday.hrc:234
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Having trouble pasting text from PDF files or webpages into documents? Try to paste as unformatted text (%MOD1+%MOD2+Shift+V)."
-msgstr ""
+msgstr "Problémája van a szöveg beillesztésével PDF fájlokból vagy weboldalakról? Próbálja formázatlan szövegként beilleszteni a %MOD1 +%MOD2 + Shift+V billentyűkombinációval."
#. BtaBD
#: cui/inc/tipoftheday.hrc:235
@@ -3263,19 +3263,19 @@ msgstr "Az FKERES 4., nem kötelező paramétere azt jelzi, hogy az első adatos
#: cui/inc/tipoftheday.hrc:237
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Toolbars are contextual—they open depending on the context. If you do not want that, uncheck them from View ▸ Toolbars."
-msgstr ""
+msgstr "Az eszköztárak kontextusfüggők, azaz a kontextustól függően jelennek meg vagy tűnnek el. Ha nem akarja látni az ilyen eszköztárakat, akkor törölje a jelölést a Nézet ▸ Eszköztárak menüből."
#. XzmhB
#: cui/inc/tipoftheday.hrc:238
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create a master document from the current Writer document? File ▸ Send ▸ Create Master Document (sub-documents are created depending of outline)."
-msgstr ""
+msgstr "Hozzon létre fődokumentumot az aktuális Writer dokumentumból a Fájl ▸ Küldés ▸ Fődokumentum létrehozása menüponttal (az aldokumentumok a vázlatszintek alapján jönnek létre)."
#. cPNVv
#: cui/inc/tipoftheday.hrc:239
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment."
-msgstr ""
+msgstr "Középre szeretné rendezni a cellákat egy nyomtatott oldalon a Calcban? Válassza a Formátum ▸ Oldal ▸ Elrendezés beállításai ▸ Táblázat igazítása menüpontot."
#. dpyeU
#: cui/inc/tipoftheday.hrc:240
@@ -3288,19 +3288,19 @@ msgstr "A keretek összekapcsolhatóak, így a szöveg átfolyhat az egyikből a
#: cui/inc/tipoftheday.hrc:241
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart."
-msgstr ""
+msgstr "Készítsen Writer táblázatból diagramot a táblázatra kattintva, majd a Beszúrás menü Diagram pontját választva."
#. j4m6F
#: cui/inc/tipoftheday.hrc:242
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed."
-msgstr ""
+msgstr "Használja az Eszközök ▸ Beállítások ▸% PRODUCTNAME Writer ▸ Formázási segédletek ▸ Megjelenítés szakasz beállításait a nem nyomtatható karakterek megjelenítéséhez a dokumentumban."
#. 9cyVB
#: cui/inc/tipoftheday.hrc:243
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to jump to a particular page by its number? Click the left-most statusbar entry or use Edit ▸ Go To Page… or press %MOD1+G."
-msgstr ""
+msgstr "Szeretne egy adott számú oldalra ugrani a dokumentumban? Kattintson az állapotsor bal szélső elemére, vagy használja a Szerkesztés ▸ Ugrás oldalra… lehetőséget, vagy nyomja meg a %MOD1+G kombinációt."
#. ULATG
#: cui/inc/tipoftheday.hrc:244
@@ -3312,33 +3312,33 @@ msgstr "A %PRODUCTNAME több mint 150 nyelvet támogat."
#: cui/inc/tipoftheday.hrc:245
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Slide Show ▸ Settings ▸ Presentation always on top if you need another program displays its window to the front of your presentation."
-msgstr ""
+msgstr "Törölje a Diavetítés ▸ Diavetítés beállításai ▸ Bemutató mindig felül négyzetet, ha egy másik program ablakát szeretné a bemutató előtt megjeleníteni."
#. sogyj
#: cui/inc/tipoftheday.hrc:246
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find the words in bold in a Writer document? Edit ▸ Find and Replace ▸ Other options ▸ Attributes ▸ Font weight."
-msgstr ""
+msgstr "Meg szeretné keresni a félkövérrel formázott szavakat egy Writer dokumentumban? Szerkesztés ▸ Keresés és csere ▸ Egyéb beállítások ▸ Attribútumok ▸ Betűvastagság."
#. ppAeT
#. local help missing
#: cui/inc/tipoftheday.hrc:247
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort."
-msgstr ""
+msgstr "A bekezdéseket vagy a táblázatsorokat betűrendben vagy numerikusan is rendezheti az Eszközök ▸ Rendezés menüpontban."
#. 26HAu
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html
#: cui/inc/tipoftheday.hrc:248
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section."
-msgstr ""
+msgstr "Ahhoz, hogy beillesszen egy bekezdést egy szakasz elé vagy mögé, nyomja meg a %MOD2+Enter kombinációt a szakasz elején vagy végén."
#. 7dGQR
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents—check it out."
-msgstr ""
+msgstr "A %PRODUCTNAME rendelkezik előre elkészített sablonokkal, hogy esztétikus dokumentumokat lehessen készíteni. Nézze meg őket!"
#. tvpFN
#: cui/inc/tipoftheday.hrc:250
@@ -3351,20 +3351,20 @@ msgstr "Számítsa ki a hiteltörlesztést a Calc-kal: például RÉSZLET(2%/12;
#: cui/inc/tipoftheday.hrc:251
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Cannot find what you want with the VLOOKUP function in Calc? With INDEX and MATCH you can do everything!"
-msgstr ""
+msgstr "Nem talál valamit Calcban az FKERES függvény használatával? Használja az INDEX és HOL.VAN függvényt!"
#. ARJgA
#. local help missing
#: cui/inc/tipoftheday.hrc:252
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show hidden column A? Click a cell in column B, press the left mouse button, move the mouse to the left, release. Then switch it on via Format ▸ Columns ▸ Show."
-msgstr ""
+msgstr "Szeretné megjeleníteni a rejtett A oszlopot? Kattintson egy cellába a B oszlopban, nyomja meg a bal egérgombot, mozgassa az egeret balra, engedje fel. Ezután kapcsolja be a megjelenítést a Formátum ▸ Oszlopok ▸ Megjelenítés menüponttal."
#. Wzpbw
#: cui/inc/tipoftheday.hrc:253
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To change the number of a page in Writer, go to the properties of the first paragraph and at the Text Flow tab check Break ▸ Insert and enter the number."
-msgstr ""
+msgstr "Oldalszám megváltoztatásához a Writerben: nyissa meg az első bekezdés tulajdonságait, a Szövegbeosztás fülön a Törés részben válassza az oldal beszúrását, majd írja be a számot."
#. AgQyA
#: cui/inc/tipoftheday.hrc:254
@@ -3383,7 +3383,7 @@ msgstr "Furcsa hiba a Calcban? Err: amelyet egy szám követ? Ez a lap magyaráz
#: cui/inc/tipoftheday.hrc:256
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Include a paragraph that is not a title in the table of contents by changing Outline & Numbering in the paragraph settings to an outline level."
-msgstr ""
+msgstr "Elhelyezhet egy nem címsor formátumú bekezdést a tartalomjegyzékbe a bekezdés beállításaiban a Vázlatszintek és számozás részben egy vázlatszint beállításával."
#. Jx7Fr
#: cui/inc/tipoftheday.hrc:257
@@ -3409,49 +3409,49 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:260
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know if a cell is referred in formulas of other cells? Tools ▸ Detective ▸ Trace Dependents (Shift+F5)."
-msgstr ""
+msgstr "Szeretné tudni, hogy egy cellára más cellák képleteiben hivatkoznak-e? Használja az Eszközök ▸ Detektív ▸ Függőségek felderítése (Shift+F5) menüpontot."
#. QeBjt
#: cui/inc/tipoftheday.hrc:261
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In the replace input field of auto correct options you can use the wildcards .*"
-msgstr ""
+msgstr "Az automatikus javítás beviteli mezőjében használhatja ezeket a helyettesítő karaktereket is: .*"
#. G7J8m
#: cui/inc/tipoftheday.hrc:262
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down."
-msgstr ""
+msgstr "Szeretné megismételni az előző sort? Nyomja meg a %MOD1+D kombinációt, vagy használja a Munkalap ▸ Cellák kitöltése ▸ Le menüpontot."
#. MG7Pu
#: cui/inc/tipoftheday.hrc:263
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To search in several spreadsheets, select them before you start the search."
-msgstr ""
+msgstr "Ha egyszerre több munkalapon is keresne, jelölje ki őket a keresés indítása előtt."
#. Jd6KJ
#: cui/inc/tipoftheday.hrc:264
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag & drop cells from Calc into the normal view of a slide creates a table; into the outline view, each cell creates a line in the outline."
-msgstr ""
+msgstr "Húzzon cellákat a Calcból a diák normál nézetébe egy táblázat létrehozásához; vagy a vázlat nézetbe, ahol minden cella létrehoz egy sort a vázlatban."
#. DgSwJ
#: cui/inc/tipoftheday.hrc:265
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME helps you not to enter two or more spaces in Writer. Check Tools ▸ AutoCorrect ▸ AutoCorrect Options ▸ Options ▸ Ignore double spaces."
-msgstr ""
+msgstr "A %PRODUCTNAME segít abban, hogy ne írjon be két vagy több szóközt a Writerbe. Jelölje be az Eszközök ▸ Automatikus javítás ▸ Automatikus javítás beállításai ▸ Beállítások ▸ Dupla szóközök figyelmen kívül hagyása négyzetet."
#. 3Fjtd
#: cui/inc/tipoftheday.hrc:266
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the cursor to go into the cell to the right, after entering a value in Calc? Use the Tab key instead of Enter."
-msgstr ""
+msgstr "Szeretné, ha a kurzor a jobb oldali cellába lépne, miután megadta az értéket a Calcban? Az Enter helyett használja a Tab billentyűt."
#. UggLQ
#: cui/inc/tipoftheday.hrc:267
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To display the scrollbar to the left, enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Complex text and check Sheet ▸ Right-To-Left."
-msgstr ""
+msgstr "A görgetősáv bal oldalon történő megjelenítéséhez engedélyezze az Eszközök ▸ Beállítások ▸ Nyelvi beállítások ▸ Nyelvek ▸ Összetett szöveg lehetőséget, és válassza a Munkalap ▸ Jobbról balra menüpontot."
#. gqs9W
#: cui/inc/tipoftheday.hrc:268
@@ -3463,13 +3463,13 @@ msgstr "Húzzon egy formázott objektumot a Stílusok és formázás ablakra. Eg
#: cui/inc/tipoftheday.hrc:269
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!"
-msgstr ""
+msgstr "A %PRODUCTNAME új verziói új funkciókat, hibajavításokat és biztonsági javításokat kínálnak. Tartsa naprakészen a szoftvert!"
#. cmz6r
#: cui/inc/tipoftheday.hrc:270
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and XML filters?"
-msgstr ""
+msgstr "Új XSLT és XML szűrőket fejleszt?"
#. C7Ya2
#: cui/inc/tipoftheday.hrc:271
@@ -3505,26 +3505,26 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:278
msgctxt "STR_CMD"
msgid "⌘ Cmd"
-msgstr ""
+msgstr "⌘ Cmd"
#. RpVWs
#. use narrow no-break space U+202F here
#: cui/inc/tipoftheday.hrc:279
msgctxt "STR_CTRL"
msgid "Ctrl"
-msgstr ""
+msgstr "Ctrl"
#. mZWSR
#: cui/inc/tipoftheday.hrc:280
msgctxt "STR_CMD"
msgid "Alt"
-msgstr ""
+msgstr "Alt"
#. QtEGa
#: cui/inc/tipoftheday.hrc:281
msgctxt "STR_CTRL"
msgid "⌥ Opt"
-msgstr ""
+msgstr "⌥ Opt"
#. DKCuY
#: cui/inc/toolbarmode.hrc:22
@@ -4226,19 +4226,19 @@ msgstr "A %PRODUCTNAME névjegye"
#: cui/uiconfig/ui/aboutdialog.ui:108
msgctxt "aboutdialog|lbVersion"
msgid "Version:"
-msgstr ""
+msgstr "Verzió:"
#. W6gkc
#: cui/uiconfig/ui/aboutdialog.ui:125
msgctxt "aboutdialog|lbBuild"
msgid "Build:"
-msgstr ""
+msgstr "Build:"
#. J78bj
#: cui/uiconfig/ui/aboutdialog.ui:141
msgctxt "aboutdialog|lbEnvironment"
msgid "Environment:"
-msgstr ""
+msgstr "Környezet:"
#. c2sEB
#: cui/uiconfig/ui/aboutdialog.ui:206
@@ -4250,13 +4250,13 @@ msgstr ""
#: cui/uiconfig/ui/aboutdialog.ui:241
msgctxt "aboutdialog|lbLocale"
msgid "Locale:"
-msgstr ""
+msgstr "Nyelvi konfiguráció:"
#. SFbP2
#: cui/uiconfig/ui/aboutdialog.ui:272
msgctxt "aboutdialog|lbUI"
msgid "User Interface:"
-msgstr ""
+msgstr "Felhasználói felület:"
#. KFo3i
#: cui/uiconfig/ui/aboutdialog.ui:312
@@ -4274,7 +4274,7 @@ msgstr ""
#: cui/uiconfig/ui/aboutdialog.ui:367
msgctxt "aboutdialog|website"
msgid "Website"
-msgstr ""
+msgstr "Weboldal"
#. i4Jo2
#: cui/uiconfig/ui/aboutdialog.ui:383
@@ -4286,13 +4286,13 @@ msgstr ""
#: cui/uiconfig/ui/aboutdialog.ui:411
msgctxt "aboutdialog|lbVersionInfo"
msgid "Version Information"
-msgstr ""
+msgstr "Verzióinformáció:"
#. jZvGC
#: cui/uiconfig/ui/aboutdialog.ui:430
msgctxt "aboutdialog|btnCopyVersionTooltip"
msgid "Copy all version information in English"
-msgstr ""
+msgstr "Összes verzióinformáció másolása angolul"
#. UCjik
#: cui/uiconfig/ui/accelconfigpage.ui:126
@@ -4440,10 +4440,9 @@ msgstr "A_utomatikus beillesztés"
#. 5B9tX
#: cui/uiconfig/ui/acorexceptpage.ui:81
-#, fuzzy
msgctxt "acorexceptpage|extended_tip|autoabbrev"
msgid "Automatically adds abbreviations or words that start with two capital letters to the corresponding list of exceptions. This feature only works if the Correct TWo INitial CApitals option or the Capitalize first letter of every sentence option are selected in the [T] column onOptions tab of this dialog."
-msgstr "Automatikusan hozzáadja a két nagybetűvel kezdődő rövidítéseket vagy szavakat a megfelelő kivétellistához. A funkció csak akkor működik, ha a KÉt NAgy KEzdőbetű javítása vagy a Mondat első betűje nagybetű beállítás ki van választva a [T] oszlopban, jelen párbeszédablak Beállítások lapján. "
+msgstr "Automatikusan hozzáadja a két nagybetűvel kezdődő rövidítéseket vagy szavakat a megfelelő kivétellistához. A funkció csak akkor működik, ha a KÉt NAgy KEzdőbetű javítása vagy a Mondat első betűje nagybetű beállítás ki van választva a [T] oszlopban, jelen párbeszédablak Beállítások lapján."
#. tpV8t
#: cui/uiconfig/ui/acorexceptpage.ui:108
@@ -4489,10 +4488,9 @@ msgstr "Automatikus _beillesztés"
#. 6fGTF
#: cui/uiconfig/ui/acorexceptpage.ui:280
-#, fuzzy
msgctxt "acorexceptpage|extended_tip|autodouble"
msgid "Automatically adds abbreviations or words that start with two capital letters to the corresponding list of exceptions. This feature only works if the Correct TWo INitial CApitals option or the Capitalize first letter of every sentence option are selected in the [T] column onOptions tab of this dialog."
-msgstr "Automatikusan hozzáadja a két nagybetűvel kezdődő rövidítéseket vagy szavakat a megfelelő kivétellistához. A funkció csak akkor működik, ha a KÉt NAgy KEzdőbetű javítása vagy a Mondat első betűje nagybetű beállítás ki van választva a [T] oszlopban, jelen párbeszédablak Beállítások lapján. "
+msgstr "Automatikusan hozzáadja a két nagybetűvel kezdődő rövidítéseket vagy szavakat a megfelelő kivétellistához. A funkció csak akkor működik, ha a KÉt NAgy KEzdőbetű javítása vagy a Mondat első betűje nagybetű beállítás ki van választva a [T] oszlopban, jelen párbeszédablak Beállítások lapján."
#. AcEEf
#: cui/uiconfig/ui/acorexceptpage.ui:307
@@ -5405,7 +5403,7 @@ msgstr "Hozzáadás / importálás"
#: cui/uiconfig/ui/bitmaptabpage.ui:72
msgctxt "bitmaptabpage|extended_tip|BTN_IMPORT"
msgid "Locate the bitmap that you want to import, and then click Open. The bitmap is added to the end of the list of available bitmaps."
-msgstr "Keresse meg az importálni kívánt bitképet, és kattintson a Megnyitásra. A bitkép a rendelkezésre álló bitképek listájának végéhez adódik hozzá. "
+msgstr "Keresse meg az importálni kívánt bitképet, és kattintson a Megnyitásra. A bitkép a rendelkezésre álló bitképek listájának végéhez adódik hozzá."
#. UYRCn
#: cui/uiconfig/ui/bitmaptabpage.ui:90
@@ -6245,7 +6243,7 @@ msgstr "Ázsiai tördelés _mód"
#: cui/uiconfig/ui/cellalignment.ui:158
msgctxt "cellalignment|extended_tip|checkAsianMode"
msgid "Aligns Asian characters one below the other in the selected cell(s). If the cell contains more than one line of text, the lines are converted to text columns that are arranged from right to left. Western characters in the converted text are rotated 90 degrees to the right. Asian characters are not rotated."
-msgstr "A kijelölt cellákban egymás alá rendezi az ázsiai karaktereket. Ha egy cella egynél több sornyi szöveget tartalmaz, a sorok szövegoszlopokká lesznek átalakítva, és az oszlopok jobbról balra kerülnek elrendezésre. Az átalakított szövegben a nyugati karakterek 90 fokkal elfordulnak jobbra. Az ázsiai karakterek nem fordulnak el. "
+msgstr "A kijelölt cellákban egymás alá rendezi az ázsiai karaktereket. Ha egy cella egynél több sornyi szöveget tartalmaz, a sorok szövegoszlopokká lesznek átalakítva, és az oszlopok jobbról balra kerülnek elrendezésre. Az átalakított szövegben a nyugati karakterek 90 fokkal elfordulnak jobbra. Az ázsiai karakterek nem fordulnak el."
#. rTfQa
#: cui/uiconfig/ui/cellalignment.ui:182
@@ -8351,19 +8349,19 @@ msgstr "(nincs)"
#: cui/uiconfig/ui/effectspage.ui:115
msgctxt "effectspage|liststore1"
msgid "UPPERCASE"
-msgstr ""
+msgstr "NAGYBETŰS"
#. kimAz
#: cui/uiconfig/ui/effectspage.ui:116
msgctxt "effectspage|liststore1"
msgid "lowercase"
-msgstr ""
+msgstr "kisbetűs"
#. CqAwB
#: cui/uiconfig/ui/effectspage.ui:117
msgctxt "effectspage|liststore1"
msgid "Capitalize Every Word"
-msgstr ""
+msgstr "Minden Szót Nagybetűvel Kezdjen"
#. uuZUC
#: cui/uiconfig/ui/effectspage.ui:118
@@ -8735,7 +8733,7 @@ msgstr "„A képernyőn használt betűszín automatikus kiválasztása” beá
#: cui/uiconfig/ui/effectspage.ui:660
msgctxt "effectspage|fonttransparencyft"
msgid "_Transparency:"
-msgstr ""
+msgstr "_Átlátszóság:"
#. vELSr
#: cui/uiconfig/ui/effectspage.ui:693
@@ -8777,31 +8775,31 @@ msgstr ""
#: cui/uiconfig/ui/entrycontextmenu.ui:12
msgctxt "entrycontextmenu|remove"
msgid "_Remove"
-msgstr ""
+msgstr "_Eltávolítás"
#. ndcCo
#: cui/uiconfig/ui/entrycontextmenu.ui:20
msgctxt "entrycontextmenu|rename"
msgid "R_ename..."
-msgstr ""
+msgstr "Át_nevezés..."
#. xuHT8
#: cui/uiconfig/ui/entrycontextmenu.ui:28
msgctxt "entrycontextmenu|add"
msgid "_Add"
-msgstr ""
+msgstr "_Hozzáadás"
#. vs8sL
#: cui/uiconfig/ui/entrycontextmenu.ui:36
msgctxt "entrycontextmenu|changeIcon"
msgid "_Change Icon..."
-msgstr ""
+msgstr "_Ikon megváltoztatása"
#. zAiXG
#: cui/uiconfig/ui/entrycontextmenu.ui:44
msgctxt "entrycontextmenu|resetIcon"
msgid "Re_set Icon"
-msgstr ""
+msgstr "Ikon viss_zaállítása"
#. azkax
#: cui/uiconfig/ui/entrycontextmenu.ui:52
@@ -9113,7 +9111,7 @@ msgstr "_Hasonlóan hangzik (japán)"
#: cui/uiconfig/ui/fmsearchdialog.ui:589
msgctxt "fmsearchdialog|extended_tip|SoundsLikeCJK"
msgid "Lets you specify the search options for similar notation used in Japanese text. Select this checkbox, and then click the Sounds button to specify the search options."
-msgstr "Lehetővé teszi keresési beállítások megadását japán szövegekben használt hasonló jelölésekhez. Jelölje be ezt a jelölőnégyzetet, és kattintson a Hangok gombra a keresési beállítások megadásához. "
+msgstr "Lehetővé teszi keresési beállítások megadását japán szövegekben használt hasonló jelölésekhez. Jelölje be ezt a jelölőnégyzetet, és kattintson a Hangok gombra a keresési beállítások megadásához."
#. 2Gsbd
#: cui/uiconfig/ui/fmsearchdialog.ui:600
@@ -10578,7 +10576,7 @@ msgstr ""
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:247
msgctxt "hyperlinkinternetpage|protocol_label"
msgid "Proto_col:"
-msgstr ""
+msgstr "Proto_koll:"
#. MoZP7
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:268
@@ -12066,7 +12064,7 @@ msgstr "Kere_sés"
#: cui/uiconfig/ui/menuassignpage.ui:281
msgctxt "menuassignpage|desc"
msgid "Description of the currently selected function."
-msgstr ""
+msgstr "A kijelölt funkció leírása."
#. 8WPmN
#: cui/uiconfig/ui/menuassignpage.ui:291
@@ -12918,7 +12916,7 @@ msgstr "Elválasztó"
#: cui/uiconfig/ui/numberingoptionspage.ui:532
msgctxt "numberingoptionspage|extended_tip|suffix"
msgid "Enter a character or the text to display behind the number in the list. If you want to create a numbered list that uses the style \"1.)\", enter \".)\" in this box."
-msgstr "Adja meg, milyen karaktert vagy szöveget szeretne megjeleníteni a lista számai után. Ha olyan számozott listát szeretne készíteni, amely az \"1.)\" stílust használja, írja be a mezőbe, hogy \".)\". "
+msgstr "Adja meg, milyen karaktert vagy szöveget szeretne megjeleníteni a lista számai után. Ha olyan számozott listát szeretne készíteni, amely az \"1.)\" stílust használja, írja be a mezőbe, hogy \".)\"."
#. wVrAN
#: cui/uiconfig/ui/numberingoptionspage.ui:548
@@ -12990,7 +12988,7 @@ msgstr "Minden szint"
#: cui/uiconfig/ui/numberingoptionspage.ui:778
msgctxt "numberingoptionspage|previewlabel"
msgid "Preview"
-msgstr ""
+msgstr "Előnézet"
#. Azcrg
#: cui/uiconfig/ui/numberingpositionpage.ui:89
@@ -13174,7 +13172,7 @@ msgstr "Visszaállítja a behúzásra és térközre vonatkozó beállításokat
#: cui/uiconfig/ui/numberingpositionpage.ui:496
msgctxt "numberingpositionpage|previewframe"
msgid "Preview"
-msgstr ""
+msgstr "Előnézet"
#. oBArM
#: cui/uiconfig/ui/numberingpositionpage.ui:557
@@ -14474,13 +14472,13 @@ msgstr "%PRODUCTNAME gyorsindító"
#: cui/uiconfig/ui/optgeneralpage.ui:498
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
-msgstr ""
+msgstr "Alapértelmezett Windows alkalmazások"
#. fXjVB
#: cui/uiconfig/ui/optgeneralpage.ui:518
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
-msgstr ""
+msgstr "%PRODUCTNAME fájltársítások"
#. coFbL
#: cui/uiconfig/ui/optgeneralpage.ui:532
@@ -15116,7 +15114,7 @@ msgstr "Megadja, hogy a numerikus billentyűzeten elhelyezkedő tizedesjel-bille
#: cui/uiconfig/ui/optlanguagespage.ui:546
msgctxt "optlanguagespage|label7"
msgid "Formats"
-msgstr ""
+msgstr "Formázások"
#. HASiD
#: cui/uiconfig/ui/optlanguagespage.ui:560
@@ -15813,7 +15811,7 @@ msgstr ""
#: cui/uiconfig/ui/optsavepage.ui:347
msgctxt "optsavepage|odfwarning_label"
msgid "Not using ODF 1.3 Extended may cause information to be lost."
-msgstr ""
+msgstr "Ha nem az ODF 1.3 Extended formátumot használja, akkor előfordulhatnak adatvesztések."
#. 6Tfns
#: cui/uiconfig/ui/optsavepage.ui:377
@@ -15837,19 +15835,19 @@ msgstr "1.2 Extended (kompatibilitási mód)"
#: cui/uiconfig/ui/optsavepage.ui:380
msgctxt "optsavepage|odfversion"
msgid "1.2 Extended"
-msgstr ""
+msgstr "1.2 Extended"
#. vLmeZ
#: cui/uiconfig/ui/optsavepage.ui:381
msgctxt "optsavepage|odfversion"
msgid "1.3"
-msgstr ""
+msgstr "1.3"
#. e6EP2
#: cui/uiconfig/ui/optsavepage.ui:382
msgctxt "optsavepage|odfversion"
msgid "1.3 Extended (recommended)"
-msgstr ""
+msgstr "1.3 Extended (ajánlott)"
#. w2urA
#: cui/uiconfig/ui/optsavepage.ui:386
@@ -16083,7 +16081,7 @@ msgstr "Jelszó a webes kapcsolatokhoz"
#: cui/uiconfig/ui/optsecuritypage.ui:481
msgctxt "optsecuritypage|label4"
msgid "Adjust security related options and define warnings for hidden information in documents. "
-msgstr "Biztonsággal kapcsolatos beállítások megadása és figyelmeztetések beállítása a dokumentumok rejtett információi számára. "
+msgstr "Biztonsággal kapcsolatos beállítások megadása és figyelmeztetések beállítása a dokumentumok rejtett információi számára. "
#. CBnzU
#: cui/uiconfig/ui/optsecuritypage.ui:494
@@ -16623,7 +16621,7 @@ msgstr "Egér"
#: cui/uiconfig/ui/optviewpage.ui:168
msgctxt "optviewpage|label13"
msgid "Menu icons:"
-msgstr ""
+msgstr "Menüikonok:"
#. XKRM7
#: cui/uiconfig/ui/optviewpage.ui:184
@@ -16893,19 +16891,19 @@ msgstr ""
#: cui/uiconfig/ui/optviewpage.ui:603
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
-msgstr ""
+msgstr "Újraindítást igényel. Ennek engedélyezése megakadályozza a grafikus illesztőprogramok használatát."
#. 5pA7K
#: cui/uiconfig/ui/optviewpage.ui:618
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
-msgstr ""
+msgstr "A Skia jelenleg be van kapcsolva."
#. yDGEV
#: cui/uiconfig/ui/optviewpage.ui:630
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
-msgstr ""
+msgstr "A Skia jelenleg ki van kapcsolva."
#. sy9iz
#: cui/uiconfig/ui/optviewpage.ui:688
diff --git a/source/hu/helpcontent2/source/text/scalc/01.po b/source/hu/helpcontent2/source/text/scalc/01.po
index 059d80c244f..bda61683074 100644
--- a/source/hu/helpcontent2/source/text/scalc/01.po
+++ b/source/hu/helpcontent2/source/text/scalc/01.po